-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
62 lines (52 loc) · 1.04 KB
/
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
body {
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
display: flex;
flex-direction: column;
margin: 0;
padding: 0;
}
@media (prefers-color-scheme: light) {
body {
color: #10213d;
}
}
/* thats a happy accident */
@media (prefers-color-scheme: dark) {
body {
background-color: #10213d;
color: #c6c2a7;
}
.about{
color: white;
}
}
.container {
display: flex;
flex-direction: column;
justify-content: space-around;
margin: 0 auto;
width: 100%;
max-width: 800px;
padding: 0 1rem;
}
a:link,
a:visited {
color: #81854a;
text-decoration: none;
}
.hstack {
display: flex;
flex-direction: row;
justify-content: space-between;
flex-wrap: wrap; /* Ensure items wrap */
}
.svgs {
filter: invert(33%) sepia(24%) saturate(500%) hue-rotate(45deg)
brightness(90%) contrast(85%);
}
@media (max-width: 600px) {
.container {
padding: 0 0.5rem; /* Reduce padding on smaller screens */
}
}