-
Notifications
You must be signed in to change notification settings - Fork 0
/
mastermind.css
92 lines (76 loc) · 1.08 KB
/
mastermind.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
#app {
height: 100%;
}
.mdl-card {
margin: 3em auto;
width: 75%;
max-width: 500px;
}
.guess {
color: rgba(0, 0, 0, .87);
text-transform: uppercase;
text-align: center;
margin: 1em;
}
form > div {
text-align: center;
margin: 2em auto;
}
.row {
max-width: 600px;
}
.row:after {
content: "";
display: table;
clear: both;
}
.column-title {
margin-bottom: 1em;
}
.column {
width: 50%;
float: left;
}
@media screen and (max-width: 500px) {
.column {
margin: 2em auto;
width: 100%;
float: none;
}
}
label.mdl-radio {
width: 0;
margin: 0.5ex;
margin-top: 2em;
}
.mdl-radio__label {
position: relative;
bottom: 1.5em;
right: 1.25em;
}
#log {
margin: 3em auto;
border-collapse: collapse;
}
#log td:first-child {
text-transform: uppercase;
}
#log td:first-child .material-icons {
float: right;
vertical-align: text-bottom;
font-size: 18px;
color: maroon;
}
#log td, #log th {
border: 1px solid rgba(0, 0, 0, .3);
padding: 0.2ex 1ex;
width: 12ex;
}
#log .exact {
color: olivedrab;
text-align: right;
}
#log .misplaced {
color: maroon;
text-align: right;
}