generated from jm1021/leuck_reunion
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsnake.css
92 lines (91 loc) · 1.36 KB
/
snake.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
html, body {
height: 100%;
}
body {
background: linear-gradient(white,#b8b8d1);
align-items: center;
justify-content: center;
height: 100%;
background-repeat: no-repeat;
background-attachment: fixed;
}
canvas {
background: tan;
text-align:center;
padding-left: 0;
padding-right: 0;
top: 150px;
left: 35%;
margin-left: auto;
margin-right: auto;
display: block;
position: absolute;
}
:root {
--apple: blue;
--snake: purple;
}
#p1 {
color:purple;
position:relative;
padding-left: 50px;
padding-top: 25px;
}
#p2 {
color:purple;
position:relative;
padding-left: 50px;
padding-top: 25px;
}
#score {
color:purple;
position:relative;
padding-left: 50px;
padding-top: 25px;
}
#high {
color:purple;
position:relative;
padding-left: 50px;
padding-top: 25px;
}
#btn_stop {
color:purple;
position:absolute;
bottom: 50px;
right: 43%;
}
#end_msg {
color:purple;
position:relative;
padding-left: 50px;
padding-top: 20px;
}
button {
border-radius: 20px;
background-color: white;
color: purple;
font-size: 12px;
font-weight: bold;
padding: 12px 45px;
letter-spacing: 1px;
text-transform: uppercase;
transition: transform 80ms ease-in;
}
h1 {
font-size: 40px;
padding:15px;
}
img {
padding: 15px;
}
h2 {
padding: 15px;
text-align: center;
}
h3, h4 {
padding: 15px;
}
table ul {
padding: 30px;
}