-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
70 lines (65 loc) · 1.16 KB
/
styles.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
html, body, fieldset, legend {
padding: 0;
margin: 0;
border: 0;
}
html, body, #app {
font-family: "Roboto", "Helvetica", Helvetica, Arial, sans-serif;
font-weight: 400;
font-size: 20px;
height: 100%;
overflow: hidden;
}
a {
text-decoration: none;
color: #9ba3bb;
font-weight: 400;
}
#app {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
background: linear-gradient(0deg, #160424 0%, #1e366e 100%) no-repeat;
}
#speed-dial {
margin: 0 auto;
}
fieldset {
margin: 1em 0;
padding: 0.1em 0.3em 0.6em;
border: 1px #303f7b solid;
border-radius: 8px;
}
legend {
margin-left: 0.6em;
padding: 0.2em 0.8em;
font-weight: 300;
color: #8a8dc1;
}
.links > a, .links-group {
display: inline-block;
margin: 0 0.8em;
}
.links {
display: flex;
align-items: center;
color: #9ba3bb;
}
.links-group {
text-align: center;
}
#time {
position: absolute;
top: 40px;
width: 100%;
text-align: center;
font-size: 1.8em;
color: #ccd6dd;
}
/* Utils */
.mx-1 { margin: 0 0.2em; }
.mx-2 { margin: 0 0.6em; }
.mt-3 { margin-top: 0.9em; }
.font-sm { font-size: 0.75em; }
.line-sm { line-height: 0.75em; }