-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
56 lines (56 loc) · 1.29 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
/* ========================================================================== */
body {
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
font-family: 'Courier New', Courier, monospace;
background: linear-gradient(175deg, #0ff0b3 0%, #036ed9 100%);
}
/* ========================================================================== */
table {
width: 70vw;
height: 100vh;
border-collapse: collapse;
}
td {
border: 0;
padding: 15px;
text-align: center;
}
/* ========================================================================== */
#logo {
width: 100%;
height: 160px;
overflow: hidden;
}
#logo .img {
width: 100%;
height: 158px;
background: url('logo.png') no-repeat center;
}
/* ========================================================================== */
#title {
height: fit-content;
}
#title .title {
color: #fff;
line-height: 1.1;
font-weight: 100;
font-size: calc(12px + 1.5vw);
}
/* ========================================================================== */
#chart {
width: 100%;
position: relative;
}
#chart canvas {
width: 100%;
height: 100%;
border-radius: 10px;
border: 2px solid white;
background-color: #ffffffb0;
}
/* ========================================================================== */