-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
97 lines (79 loc) · 1.27 KB
/
styles.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
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
body {
margin: 0;
}
/*section 1*/
#s1 {
width: 100%;
height: 100vh;
background: #FFF6E3;
position: relative;
}
.carre {
width: 200px;
height: 200px;
background: #CDC1FF;
position: absolute;
left: 20%;
top: 30%;
}
.carre2 {
width: 200px;
height: 200px;
background: #FFCCEA;
position: absolute;
left: 50%;
top: 60%;
}
.carre3 {
width: 200px;
height: 200px;
background: #6fb4a1;
position: absolute;
left: 70%;
top: 30%;
}
/*section 2*/
#s2 {
width: 100%;
height: 100vh;
background: #BFECFF;
display: grid;
grid-template-columns: repeat(3, 200px);
grid-template-rows: repeat(3, 200px);
grid-column-gap: 0px;
grid-row-gap: 0px;
}
/* .parent {
display: grid;
grid-template-columns: repeat(3, 200px);
grid-template-rows: repeat(3, 200px);
grid-column-gap: 0px;
grid-row-gap: 0px;
} */
.div1 {
grid-area: 1 / 1 / 2 / 2;
}
.div2 {
grid-area: 1 / 2 / 2 / 3;
}
.div3 {
grid-area: 1 / 3 / 2 / 4;
}
.div4 {
grid-area: 2 / 1 / 3 / 2;
}
.div5 {
grid-area: 2 / 2 / 3 / 3;
}
.div6 {
grid-area: 2 / 3 / 3 / 4;
}
.div7 {
grid-area: 3 / 1 / 4 / 2;
}
.div8 {
grid-area: 3 / 2 / 4 / 3;
}
.div9 {
grid-area: 3 / 3 / 4 / 4;
}