blob: 04750d3611d16b7db686bd2ee9a0a730eb203426 (
plain) (
blame)
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
|
<!DOCTYPE html>
<style>
body { margin: 0; }
div {
box-shadow:
-1vmin 0 0 0 #2f528f inset,
1vmin 0 0 0 #2f528f inset,
0 1vmin 0 0 #2f528f inset,
0 -1vmin 0 0 #2f528f inset;
}
.container { background: #c5e0b8 }
.header {
height: 20vh;
background-color: #4472c4;
}
.wrapper:after {
content: '';
display: block;
height: 0;
clear: both;
visibility: hidden;
}
.nav {
width: 25%;
height: 70vh;
background: #dbdbdb;
}
.footer {
height: 10vh;
background-color: #4472c4;
}
</style>
<body>
<div class=container>
<div class=header></div>
<div class=wrapper>
<div class=nav></div>
<div class=section></div>
</div>
<div class=footer></div>
</div>
</body>
</html>
|