-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStyleSheet.css
More file actions
123 lines (105 loc) · 1.91 KB
/
StyleSheet.css
File metadata and controls
123 lines (105 loc) · 1.91 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
body {
font-family: "Times New Roman";
color: black;
background-color: #E6F3ED;
margin: 0;
padding: 0;
background: rgb(212, 211, 211);
}
#header {
background-color: #8FFFC7;
height: 50px;
display: flex;
justify-content: center;
align-items: center;
border: 1px solid black;
box-sizing: border-box;
}
#footer {
background-color: #8FFFC7;
height: 50px;
display: flex;
justify-content: center;
align-items: center;
clear: both;
border: 1px solid black;
box-sizing: border-box;
}
#sideMenu {
background-color: #F0F0F0;
width: 200px;
float: left;
height: calc(100vh - 100px);
border: 1px solid black;
box-sizing: border-box;
padding : 20px;
}
#content {
background-color: #E6F3ED;
width: calc(100% - 200px);
float: left;
height: calc(100vh - 100px);
border: 1px solid black;
box-sizing: border-box;
padding : 10px;
}
button {
border: soft;
border-color: #DFF8ED;
border-radius: 5px;
padding-top: 5px;
padding-bottom: 5px;
padding-right: 40%;
background-color: #B9F4D6;
}
button:hover {
background-color: #87ECBA;
}
li {
padding-bottom: 2%;
}
#sideMenu ul {
list-style: none;
padding-left: 0;
margin-top: 0;
}
#sideMenu li {
margin: 10px 0;
}
#sideMenu button {
display: block;
width: 100%;
text-align: left;
}
.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;
}
.apple {
background: yellow;
border-radius: 20px;
}
.popup {
background: rgb(32, 31, 31);
width: 100px;
height: 100px;
position: fixed;
top: 100px;
left: 100px;
display: flex;
justify-content: center;
align-items: center;
}