-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
72 lines (63 loc) · 1.23 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
/* to add:
@media all and (max-width: 1000px) {
add some css here
}
can also use min-width, max-height, min-height
-experiment with this and find values that work for various size ranges
*/
h1 {
text-align: center;
font-family: sans-serif;
}
.row {
font-size: 0px;
width: 568px;
margin: auto;
}
.box {
border-width: 1px;
border-style: solid;
border-color: #000000;
display: inline-block;
width: 60px;
height: 60px;
margin-bottom: 0px;
}
input[type="number"] {
width: 60px;
height: 58px;
margin: auto;
text-align: center;
border: none;
font-family: sans-serif;
font-size: 16px;
}
input[type="number"]:invalid {
background-color: #ff2200;
}
input[type="button"] {
margin-top: 50px;
/* border: 2px solid #c2d1a5; */
border: none;
color: #ffffff;
background-color: #2f908c;
font-size: 26px;
font-family: sans-serif;
display: inline-block;
border-radius: 5px;
}
input[type="button"]:hover {
color: #2f908c;
/*color: #1b8860;*/
background-color: #12e5dc;
}
.answer {
text-align: center;
margin-top: 22px;
margin-bottom: 22px;
font-size: 16px;
font-family: sans-serif;
}
#buttons {
text-align: center;
}