-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
executable file
·127 lines (109 loc) · 1.9 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
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
119
120
121
122
123
124
125
126
127
:root {
--rosewater: #f2d5cf;
--flamingo: #eebebe;
--pink: #f4b8e4;
--mauve: #ca9ee6;
--red: #e78284;
--maroon: #ea999c;
--peach: #ef9f76;
--yellow: #e5c890;
--green: #a6d189;
--teal: #81c8be;
--sky: #99d1db;
--sapphire: #85c1dc;
--blue: #8caaee;
--lavender: #babbf1;
--text: #c6d0f5;
--subtext1: #b5bfe2;
--subtext0: #a5adce;
--overlay2: #949cbb;
--overlay1: #838ba7;
--overlay0: #737994;
--surface2: #626880;
--surface1: #51576d;
--surface0: #414559;
--base: #303446;
--mantle: #292c3c;
--crust: #232634;
}
html,
body {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
body {
display: grid;
grid-template-rows: min-content 1fr min-content;
grid-template-columns: 1fr;
font-family: sans-serif;
font-size: 1rem;
background-color: var(--base);
color: var(--text);
}
#header {
display: flex;
flex-direction: row;
align-items: center;
justify-content: left;
background-color: var(--mantle);
}
#main {
display: flex;
flex-direction: column;
align-items: center;
overflow: scroll;
--padding: 20px;
padding-top: var(--padding);
padding-bottom: var(--padding);
}
#footer {
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
background-color: var(--mantle);
}
#header,
#footer {
padding: 10px;
}
.aberrantian {
text-decoration: underline wavy var(--red);
font-weight: bold;
font-family: monospace;
color: var(--text);
}
#logo {
width: 300px;
max-width: 90%;
}
#bio {
font-size: 1.5rem;
width: 500px;
max-width: 90%;
text-align: center;
}
a {
text-decoration: none;
color: var(--blue);
}
a:hover {
text-decoration: underline;
}
.project-card {
display: flex;
flex-direction: column;
align-items: center;
width: min-content;
min-width: 200px;
text-align: center;
}
.project-card>* {
margin: 0px;
}
.project-title {
font-size: 1.2rem;
font-weight: bold;
}