File tree 9 files changed +67
-59
lines changed
9 files changed +67
-59
lines changed Original file line number Diff line number Diff line change
1
+ .home {
2
+ display : grid;
3
+ column-gap : 4rem ;
4
+ grid-template-columns : auto auto;
5
+ justify-content : center;
6
+ justify-items : center;
7
+ align-content : center;
8
+ }
9
+
10
+ .home .links {
11
+ grid-row : 2 ;
12
+ display : flex;
13
+ flex-direction : column;
14
+ gap : 1rem ;
15
+
16
+ font-size : 18px ;
17
+ }
18
+
19
+ .home .category {
20
+ grid-row : 1 / span 2 ;
21
+ font-size : 22px ;
22
+
23
+ display : flex;
24
+ flex-direction : column;
25
+
26
+
27
+ a {
28
+ padding : .5rem ;
29
+ border : 3px solid transparent;
30
+ transition :
31
+ color .2s ease-in-out,
32
+ background-color .2s ease-in-out;
33
+
34
+ & : hover {
35
+ text-decoration : none;
36
+ color : light-dark (var (--light-major ), var (--dark-major ));
37
+ background-color : light-dark (var (--light-minor ), var (--dark-minor ));
38
+ border : 3px solid light-dark (var (--light-major ), var (--dark-major ));
39
+ }
40
+ }
41
+ }
Original file line number Diff line number Diff line change
1
+ .section {
2
+ grid-template-rows : auto 1fr auto;
3
+ align-content : start;
4
+ justify-items : center;
5
+ }
Original file line number Diff line number Diff line change
1
+ .single {
2
+ grid-template-rows : min-content auto;
3
+
4
+ .breadcrumb {
5
+ place-self : center;
6
+ margin : 1rem 0 ;
7
+ }
8
+ }
Original file line number Diff line number Diff line change @@ -26,6 +26,7 @@ section.article {
26
26
.article .content {
27
27
margin-top : 1rem ;
28
28
flex-wrap : wrap;
29
+ font-size : 1.4rem ;
29
30
30
31
span {
31
32
white-space : pre-wrap;
Original file line number Diff line number Diff line change 1
- .signage {
1
+ .breadcrump {
2
2
display : flex;
3
3
flex-direction : row;
4
+ align-self : center;
5
+
4
6
white-space : nowrap;
5
7
6
8
background-color : # 111111 ;
12
14
font-size : 32px ;
13
15
}
14
16
15
- .breadcrump {
17
+ .location {
16
18
display : inline-flex;
17
19
font-weight : bold;
18
20
35
37
}
36
38
37
39
38
- h1 {
40
+ . signage {
39
41
color : # fff ;
40
42
& ::after {
41
43
content : "_" ;
44
46
}
45
47
46
48
}
47
-
48
-
49
- .home {
50
- display : grid;
51
- justify-content : center;
52
- justify-items : center;
53
- align-content : center;
54
-
55
- > h2 {
56
- align-self : center;
57
- }
58
- }
59
- .home .links {
60
- display : flex;
61
- flex-direction : column;
62
- gap : 1rem ;
63
-
64
- font-size : 18px ;
65
- }
66
- .home .category {
67
- font-size : 22px ;
68
- margin-top : 4rem ;
69
-
70
- display : flex;
71
- flex-direction : column;
72
- gap : 1rem ;
73
- }
74
-
75
-
76
- .section {
77
- grid-template-rows : auto auto 1fr auto;
78
- align-content : start;
79
- justify-items : center;
80
-
81
- > h2 {
82
- margin : 4rem ;
83
- }
84
- }
85
-
86
-
87
- .single {
88
- grid-template-rows : min-content auto;
89
-
90
- .breadcrumb {
91
- place-self : center;
92
- margin : 1rem 0 ;
93
- }
94
- }
Original file line number Diff line number Diff line change 1
1
{{ define "main" }}
2
2
3
3
< main class ="home ">
4
- {{ partial "signage " . }}
4
+ {{ partial "breadcrump " . }}
5
5
6
6
< div class ="home links ">
7
7
< nav >
Original file line number Diff line number Diff line change 1
1
{{ define "main" }}
2
- {{ partial "signage" . }}
3
2
< main class ="section ">
4
- < h2 > {{ .Page.Title }}</ h2 >
3
+ {{ partial "breadcrump" . }}
5
4
{{ .Content }}
6
5
{{ partial "list" . }}
7
6
</ main >
Original file line number Diff line number Diff line change 1
1
{{ define "main" }}
2
2
< main class ="single ">
3
- {{ partial "signage " . }}
3
+ {{ partial "breadcrump " . }}
4
4
5
5
{{ partial "article" . }}
6
6
</ main >
Original file line number Diff line number Diff line change 1
- < nav class ="signage ">
2
- < nav class ="breadcrump ">
1
+ < div class ="breadcrump ">
2
+ < nav class ="location ">
3
3
<!-- Ancestors -->
4
4
{{ range after 0 .Ancestors.Reverse }}
5
5
< a href ="{{ .RelPermalink }} "> {{ .File.ContentBaseName }}</ a >
8
8
< a href ="{{ .RelPermalink }} "> {{.File.ContentBaseName }}</ a >
9
9
</ nav >
10
10
11
- < h1 > $ proxyerium</ h1 >
12
- </ nav >
11
+ < h1 class =" signage " > $ proxyerium</ h1 >
12
+ </ div >
You can’t perform that action at this time.
0 commit comments