-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
75 lines (62 loc) · 915 Bytes
/
style.css
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
:root {
--bg-color: rgb(30,30,50);
--accent-color: white;
}
[data-theme="light"] {
--bg-color: white;
--accent-color: unset;
}
h1 {
font-family: "Josefin Slab";
font-weight:300;
font-size: 50px;
}
h2 {
font-family: "Josefin Slab";
font-weight:300;
font-size: 30px;
}
body {
font-family: "Roboto";
font-weight: 300;
text-align: center;
background-color: var(--bg-color);
color: var(--accent-color);
}
a {
color: var(--accent-color);
text-decoration: none;
opacity: 0.7;
}
a:hover {
opacity:1.0;
}
ul {
list-style-type: circle;
}
#title {
text-decoration: underline;
opacity: 0.7;
}
#lightswitch {
padding-right:1em;
padding-top:1em;
font-size:12px;
}
.project {
color: var(--accent-color);
text-decoration: none;
opacity: 0.4;
}
.project:hover {
opacity:1.0;
}
.icon {
font-size: 30px;
margin-left: 7px;
margin-right: 7px;
opacity: 0.4;
}
.fab {
vertical-align: top;
}