-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
50 lines (43 loc) · 801 Bytes
/
style.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
body {
display: flex;
flex-direction: column;
margin: 0px;
background-color: lightgrey;
}
p {
text-align: center;
font-weight: bold;
}
#title {
padding: 10px;
font-size: 40px;
}
#container {
display: flex;
justify-content: center;
padding: 0px 50px 0px 50px;
column-gap: 100px;
}
#controls {
display: flex;
flex-direction: column;
background-color: white;
border-radius: 10px;
box-shadow: black 0px 4px 8px;
padding: 0px 20px 20px 20px;
row-gap: 10px;
}
#grid {
width: 400px;
height: 400px;
box-shadow: black 0px 4px 8px;
display: flex;
justify-content: stretch;
flex-flow: row wrap;
position: relative;
}
.square {
background-color: white;
display: flex;
flex-flow: row wrap;
}