-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmath.css
66 lines (57 loc) · 981 Bytes
/
math.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
#question {
font-size: 250%;
color: #04ff00;
display: inline;
}
#timer{
margin-left: 20px;
}
.footer {
padding-right: 2%;
font-size: smaller;
background-color: #f4c33098;
}
#footer {
margin-top: 9px;
}
.heading {
font-size: 200%;
font-family: 'Courier New', Courier, monospace;
color: rgb(250, 104, 7);
}
#correct {
color: green;
}
#incorrect {
color: red;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}
input[type=number] {
-moz-appearance: textfield;
}
/* above block hides arrows of input field & was copied as is from net */
#level {
background-color: #a39e8edc;
border: none;
color: yellow;
letter-spacing: 1.5px;
padding: 9px 32px;
text-align: left;
text-decoration: none;
display: inline;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
}
.hidden {
display: none;
}
@media screen and (min-width: 530px) {
.hidden {
display: inline;
}
}