forked from edge-mining/edgemining.energy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
43 lines (37 loc) · 653 Bytes
/
style.css
File metadata and controls
43 lines (37 loc) · 653 Bytes
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
body {
margin: 0;
padding: 0;
background-color: #1f1f1f;
color: white;
font-family: system-ui, sans-serif;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
min-height: 100vh;
text-align: center;
}
.logo {
margin-bottom: 2rem;
}
.description {
max-width: 600px;
line-height: 1.6;
margin-bottom: 2rem;
}
.links {
font-style: italic;
font-size: 0.95rem;
}
.links a {
color: #00bfff;
text-decoration: none;
}
.links a:hover {
text-decoration: underline;
}
@media (max-width: 600px) {
.description {
padding: 0 1rem;
}
}