Skip to content

Commit 867dfb8

Browse files
authored
Redesign (#949)
* Tags pages * Tags * Categories and tags pages have been added * Blog: List view * Blog: List view * Blog: Redesign: Posts * Redesign: Authors, Tags, Posts
1 parent e020c91 commit 867dfb8

File tree

182 files changed

+1115
-334
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

182 files changed

+1115
-334
lines changed

Diff for: assets/icons/rss-icon.svg

+1
Loading

Diff for: assets/scss/common/_elements.scss

+4-13
Original file line numberDiff line numberDiff line change
@@ -18,19 +18,10 @@ button {
1818

1919
/* blockquote */
2020
blockquote {
21-
padding: 0 2rem;
22-
margin: 0 2rem 0 2rem;
23-
}
24-
25-
blockquote:before {
26-
display: block;
27-
content: "\1f5e8";
28-
font-size: 2rem;
29-
padding: 1rem 0 0 0;
30-
margin: 0 0 -1.8rem -2rem;
31-
height: max-content;
32-
color: $palette1;
33-
font-weight: bold;
21+
margin: 1rem 0rem;
22+
padding: .25rem 0.5rem 0.5rem 0.5rem;
23+
color: #59636e;
24+
border-left: .25em solid #d1d9e0;
3425
}
3526

3627
/* links */

Diff for: assets/scss/common/_hero.scss

+10-3
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
.hero {
44
.contentblock {
55
padding-top: 2rem;
6-
padding-bottom: 2rem;
6+
padding-bottom: 1rem;
77
}
88
}
99

@@ -34,10 +34,17 @@
3434

3535
@media screen and (max-width: 760px) {
3636
text-align: left;
37+
padding: 0;
38+
39+
p {
40+
font-size: 0.75rem;
41+
margin-top: 1rem;
42+
line-height: 1.5;
43+
}
3744

3845
h1 {
39-
font-size: 2rem;
40-
line-height: 1em;
46+
font-size: 1.5rem;
47+
line-height: 1.2;
4148
}
4249
}
4350
}

Diff for: assets/scss/common/_pagination.scss

+16-24
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
@import "variables";
22

33
.paginator {
4-
margin-top:1.5rem;
5-
margin-bottom:1rem;
6-
text-align:center;
4+
margin-top: 1.5rem;
5+
margin-bottom: 1rem;
6+
text-align: center;
7+
78
a {
8-
display:inline-block;
9+
display: inline-block;
910
text-decoration: none;
1011
border-radius: 3px;
1112
color: $dark;
@@ -14,29 +15,20 @@
1415
0.2s background-color ease-in-out,
1516
0.2s color ease-in-out,
1617
0.2s border-color ease-in-out;
17-
&:hover,&.active {
18+
19+
&:hover,
20+
&.active {
1821
background: $palette2;
1922
color: $palette3;
2023
border: 1px solid $palette2;
2124
}
2225

23-
height:1.5rem;
24-
width:1.5rem;
25-
line-height:1.5rem;
26-
font-size:1rem;
27-
margin-left:0.2rem;
28-
margin-right:0.2rem;
29-
@media screen and (min-width: 768px) {
30-
height:1.5rem;
31-
width:1.5rem;
32-
line-height:1.5rem;
33-
font-size:1rem;
34-
}
35-
@media screen and (min-width: 900px) {
36-
height:3rem;
37-
width:3rem;
38-
line-height:3rem;
39-
font-size:1.2rem;
40-
}
26+
height: 1.5rem;
27+
width: 1.5rem;
28+
line-height: 1.5rem;
29+
font-size: 1rem;
30+
margin-left: 0.2rem;
31+
margin-right: 0.2rem;
32+
margin-bottom: 0.2rem;
4133
}
42-
}
34+
}

0 commit comments

Comments
 (0)