-
Notifications
You must be signed in to change notification settings - Fork 0
/
snake.css
51 lines (49 loc) · 826 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
body {
overflow: hidden;
}
#board {
/*display: block;*/
border: 5px solid DimGray;
background-color: White;
margin-left: auto;
margin-right: auto;
border-top-right-radius: 5px;
border-top-left-radius: 5px;
}
#panel p {
margin: 0;
}
#panel {
border-style: solid;
border-color: DimGray;
border-top: 0px;
border-bottom: 0px;
border-left: 5px;
border-right: 5px;
border-bottom-right-radius: 5px;
border-bottom-left-radius: 5px;
background-color: DimGray;
color: White;
font-weight: bold;
padding: 0px 5px 5px 5px;
margin-top: 0;
margin-bottom: 0;
}
@media (min-width: 768px) {
.panel-text-size {
font-size: 44px;
}
}
@media (min-width: 992px) {
.panel-text-size {
font-size: 24px;
}
}
@media (min-width: 1200px) {
.panel-text-size {
font-size: 48px;
}
}
.text-center{
text-align: center;
}