-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
67 lines (58 loc) · 1.09 KB
/
style.css
File metadata and controls
67 lines (58 loc) · 1.09 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
.container {
position: absolute;
width: 100%;
height: 100%;
display: grid;
grid-gap: 15px;
grid-template-rows: 1fr 8fr 1fr;
grid-template-columns: auto;
grid-template-areas: "navbar"
"content"
"footer";
background: black;
}
#navbar {
grid-area: navbar;
background: #ee4c7c;
font-weight: bolder;
text-align: center;
}
#navbar h1 {
/* text-align: center; */
font-weight: bolder;
vertical-align: middle;
}
.content {
height: 100%;
grid-area: content;
display: grid;
grid-template-columns: 3fr 2fr;
grid-template-rows: auto;
grid-template-areas: "canvas controls";
}
#footer {
grid-area: footer;
background: #5d001e;
color: #e3afbc;
}
.content #canvas {
grid-area: canvas;
background: white;
}
.content #controls {
grid-area: controls;
background: #e3afbc;
text-align: center;
}
input {
border: 1px solid darkgray;
border-radius: 5px;
height: 30px;
margin: 10px;
}
label {
text-align: left;
}
h4 {
text-align: center;
}