-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
83 lines (68 loc) · 1.21 KB
/
styles.css
File metadata and controls
83 lines (68 loc) · 1.21 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
body {
transition: background-color 0.5s;
background-color: rgba(0, 0, 0, 0.9);
margin-left: 25px;
}
:root[light] body {
background-color: whitesmoke;
}
* {
font-family: Arial;
color: white;
}
:root[light] * {
color: black;
}
a {
color: #ffaf00;
transition: color 0.3s;
font-size: 1.25em;
display: block;
margin: 0.85em;
}
a:hover {
color: #ff2300;
}
:root[light] a {
color: blue;
}
:root[light] a:hover {
color: rgba(0, 0, 255, 0.33);
}
#toggle-theme {
position: fixed;
top: 10px;
right: 10px;
font-size: 1.5em;
line-height: 1.5em;
width: 1.5em;
text-align: center;
cursor: pointer;
border-radius: 50%;
box-shadow: 0px 0px 6px white;
transition: background-color 0.3s;
}
#toggle-theme:hover {
background-color: rgba(255, 255, 255, 0.8);
}
:root[light] #toggle-theme {
background-color: white;
box-shadow: 0px 0px 6px black;
}
:root[light] #toggle-theme:hover {
background-color: rgba(0, 0, 0, 0.8);
}
::-webkit-scrollbar {
width: 0.5em;
}
::-webkit-scrollbar-thumb {
background-color: grey;
}
footer {
margin-top: 6em;
}
embed {
width: 100%;
height: 100%;
position: absolute;
}