-
Notifications
You must be signed in to change notification settings - Fork 2.3k
/
styles.css
65 lines (60 loc) · 964 Bytes
/
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
#table {
width: 660px;
display: none;
}
#table-rows {
border-right: 2px solid #bbb;
}
#table .row {
display: flex;
align-items: center;
margin: 25px 0;
}
#legend {
position: absolute;
}
.legend-item {
display: flex;
align-items: center;
margin-bottom: 20px;
}
.legend-item .score {
width: 30px;
margin-right: 10px;
}
.label {
text-align: center;
font-family: "Google Sans", sans-serif;
font-size: 24px;
color: #5f6368;
line-height: 24px;
font-weight: 500;
}
#table .label {
margin-right: 20px;
width: 360px;
text-align: right;
}
#table .score {
background-color: #0277bd;
height: 30px;
text-align: right;
line-height: 30px;
color: white;
padding-right: 10px;
box-sizing: border-box;
}
#table .score.validation {
background-color: #ef6c00;
}
html,
body {
font-family: Roboto, sans-serif;
color: #5f6368;
}
body {
background-color: rgb(248, 249, 250);
}
#accuracyCanvas > div {
display: none;
}