This repository was archived by the owner on May 12, 2019. It is now read-only.
File tree 6 files changed +54
-39
lines changed
6 files changed +54
-39
lines changed Original file line number Diff line number Diff line change 20
20
@include font-shadow ;
21
21
}
22
22
}
23
+
24
+ #profile-resume {
25
+ display : none ;
26
+ }
27
+
23
28
.profile {
24
29
max-width : 38.75rem ;
25
30
margin : 0 auto ;
37
42
color : $gray-lightest ;
38
43
font-size : 1.6rem ;
39
44
}
45
+
46
+ > h3 {
47
+ margin : 0 ;
48
+ color : $gray-lightest ;
49
+
50
+ }
40
51
> img {
41
52
width : 7rem ;
42
53
border : 2px solid $primary-color ;
Original file line number Diff line number Diff line change 22
22
#back-button {
23
23
display : none ;
24
24
}
25
+ #search-container {
26
+ display : none !important ;
27
+ }
28
+
29
+ /* Enable element special for little devices */
30
+ #profile-resume {
31
+ display : inherit ;
32
+ }
25
33
26
34
/* off canvas */
27
35
#cover-button {
56
64
}
57
65
}
58
66
.profile {
67
+ width : 100% ;
68
+ max-width : 100% ;
59
69
height : 100% ;
60
70
overflow : scroll ;
61
71
81
91
display : none ;
82
92
}
83
93
}
94
+ .link-item {
95
+ margin : 0 ;
96
+ border-radius : 0 ;
97
+
98
+ & .collapsed {
99
+ padding : .625rem 1.25rem ;
100
+ }
101
+ & :hover {
102
+ background-color : darken ($aside-color-mobile , 5% );
103
+ }
104
+ }
84
105
#avatar-link {
85
106
display : inline-block ;
86
107
margin-top : 1rem ;
87
108
}
88
109
.navigation {
89
110
width : 100% ;
90
- }
91
- .links ,
92
- .social {
93
- width : 100% ;
94
111
95
- & .item {
96
- height : 100% ;
97
- padding : 0 ;
112
+ & .right {
98
113
margin : 0 ;
99
-
100
- > a {
101
- border-right : 0 ;
102
- border-bottom : 0 ;
103
- border-left : 0 ;
104
- border-radius : 0 ;
105
-
106
- > .icon {
107
- display : inline-block ;
108
- vertical-align : middle ;
109
- }
110
- > .label {
111
- display : inline-block ;
112
- padding-left : 3px ;
113
- }
114
+ }
115
+ & .left {
116
+ .links.item {
117
+ width : 100% ;
114
118
}
115
119
}
116
120
}
117
- .social.item :last-child {
118
- border-bottom : 1px solid ;
119
- }
120
- #search-container {
121
- display : none !important ;
122
- }
123
121
.main {
124
122
left : 0 ;
125
123
transition : all $aside-animation-time ;
135
133
// ------------------------------
136
134
137
135
@media all and (max-width :480px ) {
136
+
137
+ .profile {
138
+ > a {
139
+ > h1 {
140
+ font-size : 1.25rem ;
141
+ }
142
+
143
+ > h3 {
144
+ font-size : 1rem ;
145
+ }
146
+ }
147
+ }
138
148
.btn {
139
149
display : block ;
140
150
margin-bottom : .4em ;
141
151
}
142
-
143
152
.main {
144
153
padding : 1rem 0 ;
145
154
}
146
-
147
155
.mayday {
148
156
width : auto ;
149
157
152
160
line-height : 25px ;
153
161
}
154
162
}
155
-
156
163
#cover-button {
157
164
left : 13.5rem ;
158
165
159
166
& .collapsed {
160
167
left : 1rem ;
161
168
}
162
169
}
163
-
164
170
#panic-button {
165
171
margin-bottom : 1rem ;
166
172
}
167
173
#post-title {
168
174
margin : 2.5rem 0 ;
169
175
}
170
-
171
176
body [data-page = ' post' ] {
172
177
.post.tags {
173
178
> a {
176
181
}
177
182
}
178
183
}
179
-
180
184
.post {
181
185
& .newer ,
182
186
& .older {
194
198
display : none ;
195
199
}
196
200
}
197
-
198
201
blockquote {
199
202
> p {
200
203
margin : 2rem -1rem ;
Original file line number Diff line number Diff line change 8
8
> a {
9
9
> h2 {
10
10
margin-bottom : 1rem ;
11
+ line-height : 3rem ;
11
12
transition : all $aside-animation-time ;
12
13
13
14
& :hover {
Original file line number Diff line number Diff line change 6
6
<a id =" avatar-link" title =" link to homepage for {{ @blog.title }} " href =" {{ @blog.url }} /#open" >
7
7
<img src =" {{ @blog.logo }} " alt =" {{ @blog.title }} avatar" class =" profile avatar hvr-buzz-out" />
8
8
<h1 >Kiko Beats</h1 >
9
+ <h3 id =" profile-resume" >Software Engineer</h3 >
9
10
</a >
10
11
{{ /if }}
11
12
Original file line number Diff line number Diff line change 2
2
<ul class =" links" >
3
3
<li class =" links item" >
4
4
<a href =" /#open" class =" link-item" title =" link to {{ @blog.title }} blog" id =" blog-button" >Blog</a >
5
- <a href =" /#open" class =" link-item" title =" " id =" about-button" >Articles</a >
6
- <a href =" /#open" class =" link-item" title =" " id =" tags-button" >About</a >
7
- <a href =" /#open" class =" link-item" title =" " id =" contact-button" >Contact</a >
5
+ <a href =" /about" class =" link-item" title =" " id =" tags-button" >About</a >
6
+ <a href =" mailto:josefrancisco.verdu@gmail.com?subject=Hello, I saw your web!" class =" link-item" title =" " id =" contact-button" >Contact</a >
8
7
</li >
9
8
</ul >
10
9
</nav >
You can’t perform that action at this time.
0 commit comments