-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
56 lines (56 loc) · 958 Bytes
/
index.css
File metadata and controls
56 lines (56 loc) · 958 Bytes
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
*{
background-color: white;
padding: 0;
margin: 0;
}
.container{
font-size: 40px;
color: white;
width: 1000px;
height: 800px;
display: grid;
margin: 100px auto;
background-color: white;
grid-gap: 15px;
grid-template-columns: repeat(3,1fr) 200px;
grid-template-rows: 100px 200px repeat(1,2fr) 100px;
}
.item1{
background-color: orangered;
grid-column: 1/-1;
padding-left: 30px;
font-size: 30px;
}
.item2{
background-color: orangered;
padding-left: 30px;
font-size: 30px;
}
.item3{
background-color: orangered;
padding-left: 30px;
font-size: 30px;
}
.item4{
background-color: orangered;
padding-left: 30px;
font-size: 30px;
}
.item5{
background-color: orangered;
grid-row: span 2;
padding-left: 30px;
font-size: 30px;
}
.item6{
background-color: orangered;
grid-column: 1/4;
padding-left: 30px;
font-size: 30px;
}
.item7{
background-color: orangered;
grid-column: 1/-1;
padding-left: 30px;
font-size: 30px;
}