Skip to content
This repository was archived by the owner on May 12, 2019. It is now read-only.

Commit 5da32fb

Browse files
committed
improve aside
1 parent 16c807e commit 5da32fb

File tree

6 files changed

+54
-39
lines changed

6 files changed

+54
-39
lines changed

assets/css/uno.css

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/scss/components/_aside.scss

+11
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,11 @@
2020
@include font-shadow;
2121
}
2222
}
23+
24+
#profile-resume {
25+
display: none;
26+
}
27+
2328
.profile {
2429
max-width: 38.75rem;
2530
margin: 0 auto;
@@ -37,6 +42,12 @@
3742
color: $gray-lightest;
3843
font-size: 1.6rem;
3944
}
45+
46+
> h3 {
47+
margin: 0;
48+
color: $gray-lightest;
49+
50+
}
4051
> img {
4152
width: 7rem;
4253
border: 2px solid $primary-color;

assets/scss/components/_media-queries.scss

+38-35
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,14 @@
2222
#back-button {
2323
display: none;
2424
}
25+
#search-container {
26+
display: none !important;
27+
}
28+
29+
/* Enable element special for little devices */
30+
#profile-resume {
31+
display: inherit;
32+
}
2533

2634
/* off canvas */
2735
#cover-button {
@@ -56,6 +64,8 @@
5664
}
5765
}
5866
.profile {
67+
width: 100%;
68+
max-width: 100%;
5969
height: 100%;
6070
overflow: scroll;
6171

@@ -81,45 +91,33 @@
8191
display: none;
8292
}
8393
}
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+
}
84105
#avatar-link {
85106
display: inline-block;
86107
margin-top: 1rem;
87108
}
88109
.navigation {
89110
width: 100%;
90-
}
91-
.links,
92-
.social {
93-
width: 100%;
94111

95-
&.item {
96-
height: 100%;
97-
padding: 0;
112+
&.right {
98113
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%;
114118
}
115119
}
116120
}
117-
.social.item:last-child {
118-
border-bottom: 1px solid;
119-
}
120-
#search-container {
121-
display: none !important;
122-
}
123121
.main {
124122
left: 0;
125123
transition: all $aside-animation-time;
@@ -135,15 +133,25 @@
135133
// ------------------------------
136134

137135
@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+
}
138148
.btn {
139149
display: block;
140150
margin-bottom: .4em;
141151
}
142-
143152
.main {
144153
padding: 1rem 0;
145154
}
146-
147155
.mayday {
148156
width: auto;
149157

@@ -152,22 +160,19 @@
152160
line-height: 25px;
153161
}
154162
}
155-
156163
#cover-button {
157164
left: 13.5rem;
158165

159166
&.collapsed {
160167
left: 1rem;
161168
}
162169
}
163-
164170
#panic-button {
165171
margin-bottom: 1rem;
166172
}
167173
#post-title {
168174
margin: 2.5rem 0;
169175
}
170-
171176
body[data-page='post'] {
172177
.post.tags {
173178
> a {
@@ -176,7 +181,6 @@
176181
}
177182
}
178183
}
179-
180184
.post {
181185
&.newer,
182186
&.older {
@@ -194,7 +198,6 @@
194198
display: none;
195199
}
196200
}
197-
198201
blockquote {
199202
> p {
200203
margin: 2rem -1rem;

assets/scss/components/_post.scss

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
> a {
99
> h2 {
1010
margin-bottom: 1rem;
11+
line-height: 3rem;
1112
transition: all $aside-animation-time;
1213

1314
&:hover {

partials/aside.hbs

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
<a id="avatar-link" title="link to homepage for {{@blog.title}}" href="{{@blog.url}}/#open">
77
<img src="{{@blog.logo}}" alt="{{@blog.title}} avatar" class="profile avatar hvr-buzz-out" />
88
<h1>Kiko Beats</h1>
9+
<h3 id="profile-resume">Software Engineer</h3>
910
</a>
1011
{{/if}}
1112

partials/links.hbs

+2-3
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,8 @@
22
<ul class="links">
33
<li class="links item">
44
<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>
87
</li>
98
</ul>
109
</nav>

0 commit comments

Comments
 (0)