-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHolyGrail.html
More file actions
67 lines (63 loc) · 1.57 KB
/
HolyGrail.html
File metadata and controls
67 lines (63 loc) · 1.57 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
<!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>
body{
height: 100vh;
margin: 0;
}
.page{
height: 100%;
display: flex;
flex-direction: column;
}
header, footer{
background-color: rgb(20, 6, 6);
padding: 20px;
text-align: center;
color: white;
}
.content{
display: flex;
flex-direction: row;
flex: 1;
justify-content: space-between;
align-items: center;
}
.content aside{
background-color: rgb(91, 100, 104);
padding: 20px;
width: 100px;
height:100vh;
display: flex;
flex-direction: column;
text-align: center;
justify-content: center;
}
.content main{
background-color: rgb(207, 228, 207);
padding: 20px;
width: 100%;
height:100vh;
text-align: center;
display: flex;
justify-content: center;
align-items: center;
}
</style>
</head>
<body>
<div class="page">
<header>Header</header>
<div class="content">
<aside>Left</aside>
<main>Main</main>
<aside>Right</aside>
</div>
<footer>Footer</footer>
</div>
</body>
</html>