-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathstyle.css
58 lines (52 loc) · 947 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
51
52
53
54
55
56
57
58
section {
height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
background-color: chocolate;
}
.main {
margin: auto;
max-height: 800px;
max-width: 800px;
border: 2px solid white;
background-color: chartreuse;
padding: 30px;
display: flex;
flex-wrap: wrap;
justify-content: space-evenly;
align-items: center;
}
.squares {
height: 200px;
width: 200px;
border: 2px solid black
}
.square1{
background-color: orangered;
}
.square2 {
background-color: green;
}
.square3 {
background-color: blueviolet;
}
.square4 {
background-color: yellow;
}
.square5 {
background-color: rgb(255, 0, 221);
}
.square6 {
background-color: rgb(64, 180, 11);
}
.square7 {
background-color: rgb(255, 187, 0);
}
.square8 {
background-color: rgb(47, 0, 255);
}
.square9 {
background-color: rgb(0, 255, 242);
}