-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
106 lines (87 loc) · 1.4 KB
/
main.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
body {
background-color: rgb(202, 223, 160);
}
.wall {
border: 1px solid lightgray;
padding: 0;
text-align: center;
margin: 0;
height: 1.5em;
}
.full {
width: 30px;
}
.half {
width: 15px;
}
.number {
background-color: rgb(228, 43, 43);
color: black;
/*width: 2.2em;*/
height: 1.5em;
text-align: center;
padding: 0px;
margin: 0px;
}
.empty {
background-color: rgb(241, 118, 118);
color: #fff;
padding: 0px;
margin: 0px;
}
h1 {
margin-top: 5px;
margin-bottom: 5px;
}
table {
margin-bottom: 5px;
}
.input {
text-align: center;
/*width: 2em;*/
width: 100%;
font-size: 1em;
height: 1.5em;
padding: 0px;
margin: 0px;
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}
/* Firefox */
input[type=number] {
-moz-appearance: textfield;
}
.correct {
border: 3px solid green;
}
.wrong {
border: 3px solid red;
}
.solved {
background-color: green;
}
::-webkit-input-placeholder {
color: #fff;
}
:-moz-placeholder {
/* Firefox 18- */
color: #fff;
}
::-moz-placeholder {
/* Firefox 19+ */
color: #fff;
}
:-ms-input-placeholder {
color: #fff;
}
input {
height: 1em;
border: none;
background: transparent;
border-bottom: 1px solid #fff;
outline: none;
}