-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstylesheet.css
69 lines (59 loc) · 1.17 KB
/
stylesheet.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
h1 {
text-align:center;
}
.container {
text-align:center;
margin-left: auto;
margin-right: auto;
padding:0.01em 16px;
}
.content-top {
max-width:980px;
margin:auto;
}
.text-content {
margin: 5px 10px;
padding: 10px 20px;
}
.quiz-button {
margin: 15px;
padding:6px 16px;
overflow:hidden;
color:#000000;
background-color:#f1f1f1;
text-align:center;
cursor:pointer;
white-space:nowrap;
border-radius:8px!important;
border:1px solid #cccccc;
}
.quiz-button:hover {
color:#000000;
background-color:#aef6ff;
}
.quiz-button:active{
padding-top:6px;
padding-bottom:4px;
border:1px solid #334c66;
background-color:#69c;
color:#e0ebf5;
box-shadow:inset 0px 0px 2px #3a6da0;
}
.radio-inline__input {
display: none;
}
.radio-inline__label {
display: inline-block;
padding: 0.5rem 1rem;
margin-right: 18px;
border-radius: 3px;
transition: all .2s;
outline-color: #000000;
outline-offset: -2px;
outline-style: auto;
}
.radio-inline__input:checked + .radio-inline__label {
background: #B54A4A;
color: #fff;
text-shadow: 0 0 1px rgba(0,0,0,.7);
}