-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpatriot-portal.html
72 lines (62 loc) · 1.25 KB
/
patriot-portal.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#FFFFFF" />
<meta
name="description"
content="Rona Merch Co. is now OPEN FOR BUSINESS"
/>
<title>Rona Merch Co.</title>
</head>
<style>
* {
margin:0;
padding:0;
}
.grid {
min-height: 100vh;
display: grid;
grid-template-columns: 50% 50%;
grid-template-rows: 100%
}
.thing {
height: 100px;
background-color: blue;
border: 1px solid;
}
.t1 {
background-color: red;
opacity: 0.5;
}
.t2 {
background-color: green;
}
.t3 {
background-color: blue;
}
.t4 {
background-color: teal;
}
.t5 {
background-color: orange;
}
.t6 {
background-color: yellow;
}
</style>
<body>
<div class="grid">
<div class="thing t1"></div>
<div class="thing t2"></div>
<div class="thing t3"></div>
<div class="thing t4"></div>
<div class="thing t5"></div>
<div class="thing t6"></div>
</div>
<div class="grid">
<div class="thing t2"></div>
</div>
</body>
</html>