-
Notifications
You must be signed in to change notification settings - Fork 0
/
snake.css
68 lines (59 loc) · 906 Bytes
/
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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
outline: 0;
}
html,
body,
#root {
height: 100vh;
width: 100vw;
}
body {
background-color: #ecf0f1;
}
h1 {
color: #2c3e50;
text-transform: uppercase;
padding-top: 30px;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
#root{
text-align: center;
}
.buttons {
display: none;
}
@media only screen and (max-width: 1023px) {
canvas {
height: 350px;
width: 350px;
margin-top: 5px;
}
h1{
display: none;
}
.buttons{
display: block;
margin-top: 20px;
width: 100vw;
}
button{
width: 80px;
height: 50px;
border-radius: 5px;
border: none;
color: #ecf0f1;
background-color: #16a085;
}
.div-side {
margin: 2px auto;
width: 250px;
display: flex;
justify-content: space-between;
}
#restart {
display: none;
}
}