-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
72 lines (67 loc) · 1.17 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
body {
text-align: center;
background-color: rgb(20, 20, 20);
}
#idPlayArea {
background-color: rgb(120, 120, 120);
border: 4px solid rgb(100, 100, 255);
position: absolute;
left: 346px;
top: 16px;
height: 600px;
width: 800px;
}
span {
height: 20px;
width: 20px;
display: inline-block;
border-radius: 10px;
position: absolute;
background-color: rgb(244, 39, 49);
z-index: 1;
}
#idSnake {
left: 350px;
top: 20px;
background-color: rgb(247, 230, 2);
z-index: 3;
/*left:350-1130 top:20-600*/
}
table {
top: 80px;
right: 2px;
position: absolute;
border-collapse: collapse;
}
td {
background-color: rgb(52, 52, 52);
width: 80px;
height: 40px;
}
input {
color: rgb(250, 250, 250);
background-color: rgb(12, 12, 12);
min-width: 100%;
min-height: 100%;
font-size: medium;
}
input:hover,
input:disabled {
background-color: rgb(58, 58, 58);
}
#idStart {
background-color: rgb(20, 110, 60);
}
#idStart:hover,
#idStart:disabled {
background-color: rgb(3, 168, 98);
}
#idReset {
background-color: rgb(100, 10, 10);
}
#idReset:hover {
background-color: rgb(160, 20, 20);
}
#idOuroboros {
background-color: rgb(20, 110, 60);
}