-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy paththeme.css
More file actions
118 lines (111 loc) · 2.62 KB
/
theme.css
File metadata and controls
118 lines (111 loc) · 2.62 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
@import url('https://fonts.googleapis.com/css2?family=Audiowide&family=Carter+One&family=DM+Sans:ital,wght@0,400;1,700&family=Poppins:ital,wght@1,900&family=Staatliches&display=swap');
:root {
--theme-light: #C5C5C5; /* 197, 197, 197 */
--theme-dark: #3F3F3F; /* 63, 63, 63 */
--theme-dark2: #292929;
--theme-light-text: #E0E0E0;
--theme-lightest: white;
--theme-darkest: black;
--font-fallback: sans-serif;
--font-styled: var(--font-fallback);
--font-styled: 'Audiowide';
--font-basic: var(--font-fallback);
--font-basic: 'DM Sans';
--font-expression: var(--font-fallback);
--font-expression: 'Poppins';
/* Unused:
- 'Carter One'
- 'Staatliches'
*/
}
::-webkit-scrollbar {
width: 12px;
height: 12px;
}
:hover::-webkit-scrollbar {
width: 4px;
height: 4px;
}
::-webkit-scrollbar-thumb {
background: rgba(255, 255, 255, 0.6);
}
::-webkit-scrollbar-track {
background: rgba(0, 0, 0, 0.4);
}
::-webkit-scrollbar-thumb:hover {
background: rgba(255, 255, 255, 0.8);
}
::-webkit-scrollbar-track:hover {
background: rgba(0, 0, 0, 0.6);
}
html {
font-family: var(--font-basic);
color: var(--theme-light-text);
}
body {
margin: 0;
overflow: overlay;
}
a {
color: var(--theme-light-text);
}
a:hover {
color: var(--theme-lightest);
}
ul {
list-style-type: circle;
}
#nav {
position: sticky;
top: 0;
width: 100%;
height: fit-content;
}
#nav img {
float: right;
margin: clamp(10px, 2vw, 25px);
height: clamp(30px, 4vw, 50px); /*try making a var for this*/
}
#nav a img:hover {
height: clamp(33px, 4.4vw, 55px); /*110% for all*/
}
#content {
background: var(--theme-dark);
display: flex;
flex-direction: column;
min-height: 100vh;
}
#footer {
background-color: var(--theme-dark2);
color: var(--theme-light);
height: fit-content;
margin: 0;
padding:
clamp(9px, 2.4vw, 36px) 0
clamp(12px, 3.2vw, 48px) 0;
}
#footer div, #footer span {
display: block;
margin: 0 auto;
width: fit-content;
text-align: center;
}
#footer div a {
color: var(--theme-light);
text-decoration: none;
font-size: clamp(16px, 1.5vw, 20px);
font-family: var(--font-styled);
margin: 5vw;
}
#footer div a:hover {
color: var(--theme-lightest);
}
.link-svg {
filter: invert(86%) sepia(0%) saturate(0%) hue-rotate(234deg) brightness(90%) contrast(101%);
}
.link-svg:hover {
filter: invert(100%) sepia(0%) saturate(7491%) hue-rotate(274deg) brightness(109%) contrast(102%);
}
.styled_font { font-family: var(--font-styled); }
.basic_font { font-family: var(--font-basic); }
.expression_font { font-family: var(--font-expression); }