-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
77 lines (70 loc) · 1.26 KB
/
Copy pathstyle.css
File metadata and controls
77 lines (70 loc) · 1.26 KB
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
body {
background-color: rgb(212, 211, 211);
}
.grid {
width: 200px;
height: 200px;
border: 1px solid red;
margin: 0 auto;
display: flex;
flex-wrap: wrap;
}
.grid div {
width: 20px;
height: 20px;
/*border: 1px black solid;
box-sizing:border-box;*/
}
.snake {
background: blue;
}
.popup {
background-color: rgb(32, 31, 31);
width: 100px;
height: 100px;
position: fixed;
top: 110px;
left: 436px;
display: flex;
justify-content: center;
align-items: center;
}
.text {
background-color: black;
border: 1px;
border-radius: 30px;
justify-content: center;
align-items: center;
width: 600px;
height: 40px;
align-self: center;
margin: auto;
}
.text h1 {
text-align: center;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
color: gray;
}
.button {
margin: auto;
display: flex;
justify-content: center;
align-items: center;
width: 300px;
}
/*.top {
background-color: blueviolet;
border: 1px;
border-color: blue;
text-align: center;
display: inline-block;
border-radius: 15px;
}
.bottom{
background-color: cyan;
border: 1px;
border-color: blue;
text-align: center;
display: inline-block;
border-radius: 15px;
}*/