-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
108 lines (92 loc) · 1.72 KB
/
index.css
File metadata and controls
108 lines (92 loc) · 1.72 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
* {
background-color: #222222;
color: #eeeeee;
font-family: open sans,sans-serif;
text-align: center;
}
.index__main-container {
display: flex;
flex-wrap: wrap;
}
.index__main-container .col {
margin: auto;
justify-content: center;
max-width: 500px;
}
.index__main-logo {
margin-inline: auto;
margin-bottom: 20px;
height: 128px;
}
.index h1 {
margin: auto;
font-family: Orbitron, serif;
font-size: 5.125rem;
font-weight: 400;
}
.index h2 {
font-weight: 400;
font-family: Orbitron, serif;
font-size: 1.875rem;
}
.index h3 {
font-weight: 400;
font-family: Orbitron, serif;
font-size: 1.375rem;
}
.index a {
text-decoration: none;
}
.index .button-blue {
width: 100%;
display: block;
font-weight: 700;
margin: 20px auto 0 0;
background-color: #1e90ff;
padding: 10px;
border-radius: 10px;
color: black;
}
.index .button-blue:hover {
background-color: #00d8ff;
}
.index .button-green {
width: 100%;
display: block;
font-weight: 700;
margin: 20px auto 0 0;
background-color: #1eff90;
padding: 10px;
border-radius: 10px;
color: black;
}
.index .button-green:hover {
background-color: #00ffd8;
}
.index .button-yellow {
width: 100%;
display: block;
font-weight: 700;
margin: 20px auto 0 0;
background-color: #f1c50e;
padding: 10px;
border-radius: 10px;
color: black;
}
.index .button-yellow:hover {
background-color: #f19e0e;
}
.doppler {
color: #478ac9;
}
.sblink {
color: #ffa800;
}
.vertical-center {
margin: 0;
width: 99%;
position: absolute;
top: 50%;
-ms-transform: translateY(-50%);
transform: translateY(-50%);
}