-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
162 lines (134 loc) · 2.14 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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
:root {
--spacing: 82vh;
overflow-x: hidden;
margin: 0px;
font-family: "Rubik", sans-serif;
font-optical-sizing: auto;
font-weight: 50;
font-style: normal;
}
.bar {
width: 70%;
background-color: lightgrey;
}
.bar-inside {
width: 1%;
height: 30px;
background-color: black;
}
.loading {
opacity: 1;
background-color: #efefef;
position: fixed;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
width: 100%;
height: 100%;
top: 0px;
left: 0px;
z-index: 1000;
}
.loading h2 {
padding-top: 20px;
}
.hidden {
width: 0%;
height: 0%;
}
canvas {
position: fixed;
top: 0;
margin: 0px;
left: 0;
}
main {
position: absolute;
width: 100vw;
z-index: 99;
width: 100%;
margin: 0px auto;
padding: 120px 0px 0px 0px;
display: grid;
grid-template-columns: repeat(12, 1fr);
}
header {
grid-column: 2 / span 5;
margin-bottom: var(--spacing);
min-height: 700px;
}
a {
color: black;
transition: 200ms;
}
a:hover {
color: darkgray;
transition: 200ms;
}
h1 {
font-size: 4em;
}
header p {
font-size: 1.5em;
}
.card {
min-height: 500px;
margin-bottom: var(--spacing);
}
.card div {
background: white;
border: solid 8px black;
padding: 1rem;
}
.left {
grid-column: 2 / span 7;
}
.right {
grid-column: 5 / span 7;
}
@media screen and (max-width: 700px) {
.right {
grid-column: 1 / span 12;
}
.left {
grid-column: 1 / span 12;
}
}
.note {
font-style: italic;
}
footer {
grid-column: 1 / span 12;
background: white;
padding: 20px;
margin-bottom: 0px;
margin: 0px;
height: 70vh;
border-top: solid 8px black;
position: relative;
}
@media screen and (min-width: 500px) {
footer {
padding: 50px;
}
}
footer span {
position: absolute;
bottom: 20px;
right: 60px;
}
footer h2 {
font-size: 3em;
}
body {
/* color: white; */
margin: 0px;
padding: 0px;
}
.bold {
font-weight: bold;
}
.hidden-link {
text-decoration: none !important;
}