-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathmain.css
64 lines (60 loc) · 946 Bytes
/
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
body {
margin: 0;
}
canvas {
width: 90%;
height: 90%;
}
.infobox {
z-index: 10;
width: 400px;
position: absolute;
right: 20px;
top: 20px;
border-radius: 5px 5px;
padding: 5px;
}
.infobox .panels {
border: 1px solid #ccc;
border-radius: 5px;
padding: 10px;
margin: 10px;
background-color: #ddd;
opacity: 0.8;
box-shadow: 1px 1px 5px #ccc;
}
.infobox .panels .hd {
font-weight: bold;
margin-bottom: 5px;
}
.infobox code {
color: #ff0000;
}
.infobox .panels .score {
font-size: 50px;
}
.infobox label {
width: 1500px;
}
.infobox select {
width: 170px;
}
.paused {
width: 80px;
border-radius: 5px;
border: 1px solid #ccc;
height: 20px;
position: absolute;
z-index: 20;
background-color: #ddd;
opacity: 0.8;
box-shadow: 1px 1px 3px #ccc;
margin: 450px 700px;
padding: 10px 60px;
text-transform: uppercase;
font-weight: bold;
font-size: 18px;
}
.hidden {
display: none;
}