-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
125 lines (107 loc) · 1.71 KB
/
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
body {
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}
.controls {
display: flex;
justify-content: center;
font-size: 20px;
margin-top: 15px;
}
.rgb {
margin-top: 1%;
margin-bottom: 1%;
display: flex;
justify-content: center;
font-size: 20px;
}
.font {
font-size: 1vh;
margin-right: 1%;
}
.red {
margin-right: 2%;
color: red;
font-size: 30px;
}
.blue {
margin-right: 2%;
color: blue;
font-size: 30px;
}
.green {
margin-right: 2%;
color: green;
font-size: 30px;
}
.chk {
margin-left: 1%;
margin-right: 1%;
cursor: pointer;
transform: scale(1.5);
}
.header {
width: 100%;
text-align: center;
position: relative;
}
.gradient-text {
overflow: hidden;
background-image: linear-gradient(to right, red, green, blue);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
font-size: 52px;
}
.row {
display: flex;
width: 100%;
}
.col {
flex: 1;
background-color: #efe7da;
border-radius: 35px;
margin: 1%;
text-align: center;
}
#quiz {
width: 400px;
padding: 20px;
}
.question {
font-size: 28px;
margin-bottom: 20px;
}
.task {
padding: 1%;
}
#answerInput {
width: 60%;
padding: 12px 20px;
margin: 8px 0;
box-sizing: border-box;
}
#optionForm label {
display: block;
font-size: 22px;
margin-bottom: 2px;
}
#optionForm input[type="radio"] {
margin-right: 10px;
}
#result {
font-size: 28px;
}
.btn {
margin-top: 1px;
padding: 8px 20px;
background-color: #007bff;
color: #fff;
border: none;
border-radius: 5px;
cursor: pointer;
margin-left: 15px;
}
.btn:hover {
background-color: #0056b3;
}