-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
63 lines (49 loc) · 991 Bytes
/
style.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
html, body {
width: 100%;
margin:0;
padding:0;
overflow-x: hidden;
}
.subject { text-transform: uppercase; }
.result { height: 60px; }
.option-container { height: 80; }
.text-uppercase { text-transform: uppercase; }
.text-center { text-align: center; }
.title-text {
font-family: 'Oswald', sans-serif;
font-weight: 700;
font-size: 22px;
}
.selected {
background: rgb(38, 2, 95);
color: white;
font-size: 14px;
text-transform: uppercase;
}
.options {
padding: 5px;
cursor: pointer;
}
.description-text {
font-family: 'Ubuntu Condensed', sans-serif;
font-size: 16px;
}
.badge {
width: 40px;
height: 40px;
background-color: red;
border-radius: 100%;
display: flex;
align-items: center;
justify-content: center;
}
.underscored {
border-bottom: 4px solid;
padding-bottom: 4px;
}
#score { font-size: 30px; }
#option-value {
color: white;
font-weight: 800;
font-size: 22px;
}