-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathgol.css
65 lines (55 loc) · 881 Bytes
/
gol.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
body {
margin: 10px auto;
width: 1024px;
background: black;
font-family: sans-serif;
user-select: none;
-moz-user-select: none;
-webkit-user-select: none;
-webkit-touch-callout: none;
}
h1, h2 {
color: salmon;
text-align: center;
margin: 0;
}
h2 {
font-size: 20px;
}
canvas {
border: 1px solid #333;
}
div.description {
color: salmon;
width: 600px;
margin: 0px auto;
text-indent: 1em;
}
.description p {
margin: 5px 0;
text-align: justify;
}
.fps {
position: absolute;
top: 0;
right: 0;
color: #444;
font-size: 12px;
}
ul li span {
display: inline-block;
}
ul {
list-style-type: none;
color: pink;
}
ul li .input {
text-align: right;
width: 250px;
font-weight: bold;
}
ul li .result {
text-align: left;
width: 250px;
font-style: italic;
}