File tree 6 files changed +82
-10
lines changed
6 files changed +82
-10
lines changed Original file line number Diff line number Diff line change
1
+
2
+ # Created by https://www.gitignore.io/api/hugo,linux,macos
3
+ # Edit at https://www.gitignore.io/?templates=hugo,linux,macos
4
+
5
+ # ## Hugo ###
6
+ # Generated files by hugo
7
+ /public /
8
+ /resources /_gen /
9
+
10
+ # Executable may be added to repository
11
+ hugo.exe
12
+ hugo.darwin
13
+ hugo.linux
14
+
15
+ # ## Linux ###
16
+ * ~
17
+
18
+ # temporary files which can be created if a process still has a handle open of a deleted file
19
+ .fuse_hidden *
20
+
21
+ # KDE directory preferences
22
+ .directory
23
+
24
+ # Linux trash folder which might appear on any partition or disk
25
+ .Trash- *
26
+
27
+ # .nfs files are created when an open file is removed but is still being accessed
28
+ .nfs *
29
+
30
+ # ## macOS ###
31
+ # General
32
+ .DS_Store
33
+ .AppleDouble
34
+ .LSOverride
35
+
36
+ # Icon must end with two \r
37
+ Icon
38
+
39
+ # Thumbnails
40
+ ._ *
41
+
42
+ # Files that might appear in the root of a volume
43
+ .DocumentRevisions-V100
44
+ .fseventsd
45
+ .Spotlight-V100
46
+ .TemporaryItems
47
+ .Trashes
48
+ .VolumeIcon.icns
49
+ .com.apple.timemachine.donotpresent
50
+
51
+ # Directories potentially created on remote AFP share
52
+ .AppleDB
53
+ .AppleDesktop
54
+ Network Trash Folder
55
+ Temporary Items
56
+ .apdisk
57
+
58
+ # End of https://www.gitignore.io/api/hugo,linux,macos
Original file line number Diff line number Diff line change 1
1
< div class ="header ">
2
- < h1 class ="site-title "> {{ .Site.Title }}</ h1 >
2
+ < h1 class ="site-title "> < a href =" / " > {{ .Site.Title }}</ a > </ h1 >
3
3
< div class ="site-description ">
4
4
{{- if isset .Site.Params "subtitle" -}}
5
5
< h2 > {{ .Site.Params.Subtitle | markdownify }}</ h2 >
Original file line number Diff line number Diff line change 1
1
body {
2
- color : # fff ;
2
+ color : # ddd ;
3
3
background-color : # 000 ;
4
4
}
5
5
18
18
}
19
19
20
20
blockquote {
21
- border-color : # fff ;
21
+ border-color : # ddd ;
22
22
}
23
23
24
24
h1 , h2 , h3 , h4 , h5 , h6 {
25
- color : # fff ;
25
+ color : # ddd ;
26
26
}
27
27
28
28
a , a : hover {
29
- color : # fff ;
29
+ color : # ff7979 ;
30
+ text-decoration : none;
31
+ }
32
+
33
+ .site-description a ,
34
+ .site-description a : hover {
35
+ color : # ddd ;
30
36
text-decoration : underline;
31
37
}
32
38
@@ -35,8 +41,13 @@ a:hover {
35
41
}
36
42
37
43
.post-tags .tags a {
38
- border : 1px solid # fff ;
39
- color : # fff ;
44
+ border : 1px solid # ddd ;
45
+ color : # ddd ;
46
+ }
47
+
48
+ .site-title a {
49
+ color : # ddd ;
50
+ text-decoration : none !important ;
40
51
}
41
52
42
53
.header nav ,
Original file line number Diff line number Diff line change 1
1
body {
2
2
font-family : "ubuntu" , sans-serif;
3
- font-weight : 300 ;
3
+ font-weight : 400 ;
4
4
color : # 333 ;
5
5
line-height : 1.6 ;
6
6
font-size : 16px ;
@@ -112,12 +112,10 @@ h4 {
112
112
}
113
113
114
114
h5 {
115
- font-weight : 300 ;
116
115
font-size : 1rem ;
117
116
}
118
117
119
118
h6 {
120
- font-weight : 300 ;
121
119
font-size : .9rem ;
122
120
}
123
121
@@ -168,6 +166,11 @@ ul {
168
166
list-style : disc inside;
169
167
}
170
168
169
+ .site-title a {
170
+ color : # 333 ;
171
+ text-decoration : none !important ;
172
+ }
173
+
171
174
.post ul li {
172
175
margin-bottom : 10px ;
173
176
}
You can’t perform that action at this time.
0 commit comments