-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtemplate.css
More file actions
92 lines (74 loc) · 1.44 KB
/
template.css
File metadata and controls
92 lines (74 loc) · 1.44 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;0,700;1,400;1,700&display=swap');
:root {
--link-blue: #6767e3;
}
html {
background-color: rgb(30, 30, 30);
color: rgb(200, 200, 200);
font-family: Roboto;
}
body {
margin: 0rem;
}
.main-content {
max-width: 50rem;
margin: auto;
padding: 0 1rem;
min-height: 100vh;
}
/* To make sure header weight does not change on hover */
.sitename a:hover {
font-weight: 700;
}
.pagetitle {
font-size: 3rem;
}
footer {
background-color: black;
padding: 0 0 0 2rem;
height: 3rem;
line-height: 3rem;
}
blockquote {
border-left: solid 0.3rem white;
padding-left: 1rem;
margin-left: 1rem;
}
h1,h2,h3,h4,h5,h6 {
color: white;
}
.taglist {
display: flex;
flex-wrap: wrap;
}
.tag {
background-color: rgb(241, 241, 241);
color: black;
padding: 0.5rem;
border-radius: 1rem;
text-align: center;
margin: 0.1rem 1rem 0.1rem 0
}
a {
display: inline-block;
text-decoration: none;
color: var(--link-blue);
background-image: linear-gradient(var(--link-blue), var(--link-blue));
background-size: 0%;
background-repeat: no-repeat;
transition: background-size 0.2s;
}
a:hover {
background-size: 100%;
color: white;
cursor: none;
}
strong {
color: white;
}
code {
color: white;
padding: 0.2rem;
background-color: rgb(73, 73, 73);
border-radius: 0.3rem;
}