-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmondrianProject.html
More file actions
68 lines (64 loc) · 1.63 KB
/
mondrianProject.html
File metadata and controls
68 lines (64 loc) · 1.63 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
.container{
width: 748px;
height: 746px;
display: grid;
gap: 9px;
padding-right: 0px;
grid-template-columns: 320px 198px 153px 50px;
grid-template-rows: 414px 130px 155px 20px;
background-color: #000;
}
.red{
background-color: #E72F24;
}
.grey1{
background-color: #F0F1EC;
grid-area: 1/2/1/5;
}
.grey2{
background-color: #F0F1EC;
grid-area: 2/1/4/2;
}
.grey3{
background-color: #F0F1EC;
grid-area: 2/2/4/4;
}
.grey4{
background-color: #F0F1EC;
grid-area: 3/4/5/5;
}
.grey5{
background-color: #F0F1EC;
grid-area: 4/1/5/2;
}
.blue{
background-color: #004592;
grid-area: 2/4/3/5;
border-bottom: 10px solid #232629;
}
.yellow{
background-color: #F9D01E;
grid-area: 4/2/5/3;
}
</style>
</head>
<body>
<div class="container">
<div class="red"></div>
<div class="grey1"></div>
<div class="grey2"></div>
<div class="grey3"></div>
<div class="grey4"></div>
<div class="grey5"></div>
<div class="blue"></div>
<div class="yellow"></div>
</div>
</body>
</html>