-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
116 lines (91 loc) · 1.7 KB
/
style.css
File metadata and controls
116 lines (91 loc) · 1.7 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
:root {
--bg-color: #828282;
--secondary-bg-color: #656765;
--fg-color: #CCCCCC;
--nav-bg-color: #566c73;
--a-color: #51A8DD;
--a-visited-color: #77969A;
--a-highlight-color: #7DB9DE;
}
body {
margin: 0;
color: var(--fg-color);
background-color: var(--bg-color);
font-family: Verdana, Geneva, Tahoma, sans-serif;
}
nav {
display: flex;
justify-content: space-between;
align-items: center;
padding: 2vh 4vw 2vh 4vw;
background-color: var(--nav-bg-color);
color: #566C73;
font-size: x-large;
}
nav>* {
display: flex;
gap: 2vw;
}
a {
text-decoration: none;
color: var(--a-color);
transition: scale 0.2s;
}
a:visited {
color: var(--a-visited-color)
}
a:hover,
a:active {
scale: 1.1;
color: var(--a-highlight-color);
transition: scale 0.2s, color 0.2s;
}
main {
display: flex;
flex-direction: column;
justify-content: space-around;
align-items: center;
padding: 2vw;
}
h2 {
margin: 0;
}
#about {
padding: 2vw;
border-radius: 2vw;
background-color: var(--secondary-bg-color);
}
li {
margin: 1vh 0;
}
.icon {
width: 3vw;
}
footer {
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-around;
gap: 2vh;
margin-top: 2vh;
}
footer>section:first-child {
display: flex;
justify-content: space-evenly;
align-items: center;
gap: 1vw;
}
footer>section:nth-child(2) {
display: flex;
flex-direction: column;
justify-content: space-evenly;
align-items: start;
gap: 1vh;
}
footer a {
color: var(--fg-color);
}
footer a:has(.icon) {
display: inline-block;
height: fit-content;
}