-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
96 lines (86 loc) · 1.51 KB
/
styles.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
:root {
--height: 97vh;
--width: calc(var(--height)*(7/12));
--border: 2px solid;
}
body {
font-family: Roboto, Arial, serif;
margin: 0;
overflow: hidden;
}
.game {
height: var(--height);
width: calc(var(--width) + 0.5vh);
margin: 0 auto;
}
.block {
border-right: var(--border);
border-bottom: var(--border);
height: calc(var(--width)/7 - 2px);
width: calc(var(--width)/7 - 2px);
float: left;
}
.wrong {
transition: 2s;
}
.marked {
background-color: white !important;
}
.block-group div:first-of-type {
border-left: var(--border);
}
#group11 .block {
border-top: var(--border);
}
#group0 .block {
margin-bottom: 10px;
}
#info {
width: calc(var(--width) - 4px);
background-color: #1555b6;
color: white;
font-size: 14px;
padding: 3px;
overflow: hidden;
height: 16px;
}
#message {
float: right;
font-weight: bold;
}
#configGear {
float: right;
cursor: pointer;
}
#configForm {
display: none;
padding: 11px;
height: var(--height);
}
#configForm label {
font-weight: bold;
}
#configForm input {
float: right;
}
#configForm .info {
border: 1px solid #1555b6;
border-radius: 4px;
padding: 5px;
display: none;
}
.configFormButton {
border: 1px solid #1555b6;
margin-left: 3px;
border-radius: 6px;
color: #1460b6;
padding: 4px;
cursor: pointer;
}
.configFormButton[type="submit"] {
color: white;
background-color: #1460b6;
}
.first-block {
clear: both;
}