-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmain.css
More file actions
executable file
·112 lines (96 loc) · 1.49 KB
/
main.css
File metadata and controls
executable file
·112 lines (96 loc) · 1.49 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
/*
Main.css
Color Profile:
dark: #222, #131314
grey: #a6a9ac, #dcdcde
light: #f8f8f6, #efeff2
*/
/* Base Layout */
body {
margin: 0;
background-color: #222;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
display: block;
}
.content-wrapper {
position: relative;
z-index: 3;
min-height: 100vh;
display: flex;
flex-direction: column;
}
section {
flex: 1;
position: relative;
display: flex;
flex-direction: column;
justify-content: space-between;
padding-top: 6vh;
padding-left: 6vw;
}
/* Hero Section */
.hero {
width: calc(100vw - 20em);
display: flex;
flex-direction: column;
gap: 2em;
}
.bio {
padding-bottom: 10vh;
max-width: 70vw;
}
/* Writing Pages */
.writing {
max-width: 70vw;
width: calc(100vw - 20em);
}
.list {
margin: 0;
}
.list__item {
margin: 0;
padding-bottom: 3em;
}
.list__item > p {
margin: 1em 0;
font-size: 1.25em;
}
/* Header */
.header {
display: flex;
align-items: center;
margin: 0;
}
/* Footer */
.footer {
position: fixed;
right: 5em;
bottom: 5em;
display: flex;
flex-direction: column;
justify-content: flex-end;
align-items: flex-end;
z-index: 4;
}
.footer > a {
padding-top: 0.7em;
}
.hero-footer {
position: fixed;
right: 5em;
bottom: 5em;
display: flex;
flex-direction: column;
justify-content: flex-end;
align-items: flex-end;
z-index: 4;
}
.hero-footer > a {
position: relative;
padding-top: 0.7em;
}
/* Links */
a {
position: relative;
}