-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
112 lines (109 loc) · 2 KB
/
style.css
File metadata and controls
112 lines (109 loc) · 2 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
*{
padding: 0;
margin: 0;
}
main{
display: flex;
justify-content: center;
align-items: center;
}
.tittle{
display: flex;
padding: 2rem;
background-color: aqua;
justify-content: center;
align-items: center;
color: black;
}
.game{
margin-top: 5rem;
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
width: 70vw;
gap: 3rem;
}
.left{
display: flex;
flex-direction: column;
}
.menu{
border-top-left-radius: 15px;
border-top-right-radius: 15px;
border-bottom-left-radius: 15px;
border-bottom-right-radius: 15px;
display: flex;
flex-direction: column;
background-color: #f0e760;
justify-content: center;
align-items: center;
width: 382.6px;
height: 407.6px;
gap: 13px;
font-family: sans-serif;
}
.contents{
padding-top: 11px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
gap: 15px;
font-size: 16px;
}
#ent{
width: 254px;
height: 45px;
font-size: 16px;
background-color: #64c964;
cursor: pointer;
}
#sz{
width: 75px;
height: 42px;
font-size: 16px;
text-align: center;
}
.drawMenu{
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
gap: 15px;
font-size: 16px;
}
.colour{
display: flex;
justify-content: center;
align-items: center;
font-size: 16px;
gap: 1rem;
}
.grid-container {
padding: 10px;
display: grid;
grid-template-columns: repeat(4, 1fr);
grid-template-rows: repeat(4, 1fr);
width: 400px;
height: 400px;
border: 1px solid #000000;
background-color: rgb(255, 255, 255);
}
.grid-item {
background-color: white;
border: 1px solid #000000;
}
span{
margin-top: 4.5rem;
padding: 1rem;
background-color: aqua;
display: flex;
justify-content: center;
align-items: center;
}
.note{
margin: 10px 0 0 55px;
padding: 0%;
color: red;
}