-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.css
73 lines (64 loc) · 1.35 KB
/
app.css
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
73
body {
margin: 0;
padding: 0;
background-color: white;
display: flex;
justify-content: center;
padding: 2rem 0 0 0;
background-color: black;
}
.container {
width: 900px;
}
@font-face {
font-family: 'silkscreenNormal';
src: url('fonts/slkscr-webfont.woff2') format('woff2'),
url('fonts/slkscr-webfont.woff') format('woff');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'silkscreenBold';
src: url('fonts/slkscrb-webfont.woff2') format('woff2'),
url('fonts/slkscrb-webfont.woff') format('woff');
font-weight: normal;
font-style: normal;
}
header {
height: 10vh;
width: 100%;
display: flex;
justify-content: center;
align-items: center;
background-color: black;
color: white;
font-size: 4rem;
font-family: silkscreenBold;
}
nav {
background-color: #000000;
padding: 0 0 0 2.8rem;
}
nav button {
padding: 0.8rem 1rem 0.8rem 1rem;
margin: 0 1rem 0 0;
border: solid;
background-color: #000000;
color: white;
font-size: 1.5rem;
font-family: silkscreenNormal;
}
nav button:hover {
background-color: #222222;
}
.mainArea {
width: 100%;
display: flex;
justify-content: center;
background-color: black;
padding: 1rem 0 1rem 0;
}
.canvas {
border: white solid 5px;
display: flex;
}