-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
91 lines (78 loc) · 1.51 KB
/
index.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
* {
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
box-sizing: border-box;
}
:root {
--blue: #00b0df;
--blue-dark: #1e293b;
--spacing: 20px;
}
html, body{
background-color: var(--blue-dark);
color: white;
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif, 'Noto Color Emoji';
height: 100%;
width: 100%;
}
html {
display: table;
margin: auto;
}
body {
display: table-cell;
vertical-align: middle;
text-align: center;
padding: var(--spacing);
}
img {
height: 100px;
width: 100px;
object-fit: contain;
}
h1, h3, p, div {
margin: var(--spacing) 0;
}
h3 {
color: rgba(255,255,255,0.8);
}
p {
font-weight: normal;
color: rgba(255,255,255,0.6);
}
a {
display: inline-block;
background-color: #39414e;
text-decoration: none;
padding: 10px 20px;
border-radius: 10px;
font-weight: bold;
margin: 3px 0;
transition: 0.2s background-color;
color: white;
}
a:hover{
background-color: #536076;
}
svg {
height: 20px;
width: 20px;
}
p:last-child {
& > a {
text-decoration: none
}
}
div {
background-color: rgba(255,255,255,0.2);
border: 1px solid rgba(255,255,255,0.5);
padding: var(--spacing);
border-radius: 3px;
display: inline-block;
width: calc(100% - 20px);
overflow: auto;
}
section {
padding-top: 20px;
display: none;
}