blob: 338b19f4945c43cc6902a1d5ccb31c9c3f84b485 (
plain)
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
|
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');
html, body {
display: block;
padding: 0;
margin: 0;
min-width:100vw;
min-height:100vh;
}
* {
font-family: "Nunito", sans-serif;
font-optical-sizing: auto;
font-weight: 400;
font-style: normal;
box-sizing: border-box;
}
nav {
display: flex;
background-color: #9f3050;
height: 64px;
}
#logo {
height: 100%;
}
content {
display:flex;
width: 100vw;
min-height: calc(100vh - 128px);
padding: 10px 10px 10px 10px;
background-color: #ffecdc;
}
footer {
display: flex;
width:100vw;
height:64px;
bottom:0;
padding: 10px;
background-color: #777;
color: #eee;
}
|