File tree Expand file tree Collapse file tree 7 files changed +22
-18
lines changed Expand file tree Collapse file tree 7 files changed +22
-18
lines changed Original file line number Diff line number Diff line change 1
- .article {
2
- margin : 0 2 rem ;
1
+ section .article {
2
+ padding : 0 20 vw ;
3
3
4
4
display : flex;
5
5
flex-direction : column;
23
23
}
24
24
}
25
25
}
26
-
27
26
.article .content {
28
-
29
- > * {
30
- margin : 1rem 0 1rem 1rem ;
31
- }
27
+ flex-wrap : wrap;
32
28
33
29
span {
34
30
white-space : pre-wrap;
35
31
}
36
32
33
+ /* headings */
37
34
h2 , h3 , h4 , h5 , h6 {
38
35
color : light-dark (var (--light-minor ), var (--dark-minor ));
39
36
margin : 1rem 0 0 0 ;
48
45
}
49
46
}
50
47
48
+ /* normal text */
49
+ > p {
50
+ margin : 1rem 0 ;
51
+ }
52
+
53
+ /* divider */
51
54
hr {
52
55
margin : 2rem 8rem ;
53
56
}
54
57
55
58
blockquote {
56
- margin : 1rem 0 1 rem 1 rem ;
59
+ margin : 1rem 0 ;
57
60
background : linear-gradient (to right, var (--dark-minor ), var (--dark-bg ) 60% );
58
61
}
59
62
63
+ /* inline code */
60
64
code {
61
65
background-color : rgb (35 , 102 , 102 );
62
66
}
63
67
64
- /* override the default pre styles that generated probably by markup engine */
68
+ /* override the default style of per that might be generated by markup renderer */
65
69
pre {
70
+ overflow-x : auto;
66
71
background-color : rgb (51 , 60 , 60 ) !important ;
67
72
* {
68
73
font-family : var (--font-mono );
Original file line number Diff line number Diff line change @@ -7,4 +7,4 @@ thanks for visiting,
7
7
8
8
i am still working on the styles on my own,
9
9
10
- please forgive me these poor pages here :3
10
+ please forgive me these poor styles here :3
Original file line number Diff line number Diff line change 1
1
---
2
2
title : ' posts'
3
- weight : 2
4
3
---
Original file line number Diff line number Diff line change 5
5
< h1 > ~$ proxyerium</ h1 >
6
6
</ div >
7
7
8
- < div class ="home navbar ">
8
+ < div class ="home links ">
9
9
< nav >
10
10
{{ range .Page.Params.links }}
11
11
< a href ="{{ .url }} "> {{ .name }}</ a >
Original file line number Diff line number Diff line change 1
1
{{ define "main" }}
2
2
< main class ="single ">
3
- < nav class ="single nav ">
3
+ < nav class ="single breadcrumb ">
4
4
{{/* {{ particle "back" .}} */}}
5
5
< a href =".. "> ~{{ .RelPermalink }}</ a >
6
6
</ nav >
Original file line number Diff line number Diff line change 1
- < article class ="article ">
1
+ < section class ="article ">
2
2
< header class ="article header ">
3
3
< h1 > {{ .Title }}</ h1 >
4
4
{{ if eq .Kind "page" }}
@@ -8,7 +8,7 @@ <h1>{{ .Title }}</h1>
8
8
{{ end }}
9
9
</ header >
10
10
11
- < section class ="article content ">
11
+ < article class ="article content ">
12
12
{{ .Content }}
13
- </ section >
14
- </ article >
13
+ </ article >
14
+ </ section >
Original file line number Diff line number Diff line change 1
- < ul class ="list articles ">
1
+ < ul class ="list items ">
2
2
{{ range .Pages.ByDate.Reverse }}
3
3
< li >
4
4
< a href ="{{ .RelPermalink }} ">
You can’t perform that action at this time.
0 commit comments