-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
86 lines (75 loc) · 1.71 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
body {
margin: 0;
font-family: 'Lucida', sans-serif;
}
div#game_board {
display: -ms-grid;
display: grid;
max-width: 1800px;
-ms-grid-columns: (minmax(600px, 1fr))[auto-fit];
grid-template-columns: repeat(auto-fit, minmax(600px, 1fr));
justify-items: center;
grid-gap: 0;
}
@media (min-width: 1200px) {
div#game_board canvas#game {
-ms-grid-row: 1;
-ms-grid-row-span: 2;
grid-row: 1/3;
}
}
div.control_board {
padding: 0.5em;
-ms-grid-column: 1;
-ms-grid-column-span: 2;
grid-column: 1/3;
-ms-grid-column-align: stretch;
justify-self: stretch;
display: -ms-grid;
display: grid;
grid-column-gap: 1em;
grid-row-gap: 5px;
font-size: 0.8rem;
-ms-grid-columns: (150px)[7];
grid-template-columns: repeat(7, 150px);
-ms-grid-rows: 50px;
grid-template-rows: 50px;
}
@media (min-width: 1800px) {
div.control_board {
-ms-grid-column: 2;
grid-column: 2;
-ms-grid-row: 2;
grid-row: 2;
}
}
div.control_board div.input_legend {
display: inline-block;
text-align: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
background-image: radial-gradient(#c47777af, rgba(145, 152, 229, 0.589));
}
div.control_board div.input_legend input[type=range].custom-slider {
padding: 10%;
border: 1px solid lightgray;
width: 80%;
height: 20%;
}
div.control_board input#dialog_file {
display: none;
}
div.control_board input[type=number] {
width: 8ch;
}
div.control_board button {
background-color: lightgrey;
}
div.control_board button.btn_enabled {
background-color: #a3a3a3;
}
div.control_board button:hover {
background-color: rgba(44, 44, 136, 0.4);
}
/*# sourceMappingURL=style.css.map */