-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
82 lines (74 loc) · 1.19 KB
/
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
.box1{
background-color: aqua;
}
.box2{
background-color: rgb(206, 201, 219);
}
.box3{
background-color: rgb(68, 185, 32);
}
.box4{
background-color: rgb(238, 128, 152);
}
.box5{
background-color: rgb(161, 163, 23);
}
.box6{
background-color: rgb(217, 230, 206);
}
.container{
display: grid;
grid-template-rows: 150px 250px ;
grid-template-columns: 1fr 2fr 3fr;
/* if you put / in between, it is same;
grid-template:150px 250px / 100px 200px 300px
*/
/* grid-row-gap: 10px;
grid-column-gap: 10px; */
/* grid-gap:10px 10px
grid-template-ares
" A A C "
" D E F " */
}
/* .box1{
grid-area: A;
}
.box2{
grid-area: B;
}
.box3{
grid-area: C;
}
.box4{
grid-area: D;
}
.box5{
grid-area: E;
}
.box6{
grid-area: F;
} */
/* px yerine fr kullan. sayfayi oranlar */
/* .box2{
order:1 ;
} */
.box3{
/* box position changeing
grid-row-start: 2;
grid-row-end: 3;
grid-column-end: 3;
grid-column-start: 2; */
}
.box3
{
/* box position changeing
grid-row-start: 2;
/* grid-row:2/3 seklinde de yazilabilir */
grid-row-end: 3;
grid-column-end: 3;
grid-column-start: 2;
}
.box4{
grid-row: 1/2;
grid-column:2/4;
}