-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
93 lines (91 loc) · 1.27 KB
/
style.css
File metadata and controls
93 lines (91 loc) · 1.27 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
body {
width: 100%;
height: 100vh;
display: grid;
grid-template-columns: 80px 1fr;
grid-template-rows: 80px 1fr;
grid-template-areas:
"menu menu"
"toolbar main";
}
.msg {
padding-top: 25vh;
text-align: center;
}
.msg {
display: none;
}
body.loading .msg {
display: block;
}
form {
display: inline-block;
padding: 1vw 5vw;
border: solid 1px #eee;
border-radius: 1vw;
}
form div {
margin-bottom: 3vw;
}
canvas {
display: block;
}
#status1 {
font-size: 150%;
font-weight: bold;
}
#branding {
position: absolute;
top: 16px;
right: 16px;
text-align: right;
}
input[type='button'] {
padding: 8px 64px;
margin-top: 3vw;
}
ul {
background: #fafafa;
}
ul, ul li {
padding: 0;
margin: 0;
}
ul li {
display: inline-block;
border: solid 1px #ccc;
cursor: pointer;
width: 64px;
height: 64px;
padding: 16px;
border-radius: 8px;
background: #eee;
font-size: 32px !important;
margin: 8px;
}
.tools li {
display: block;
float: left;
}
ul li:hover {
border-color: #aaa;
background: #ddd;
}
.menu {
grid-area: menu;
}
.toolbar {
grid-area: toolbar;
}
.toolbar li.active {
border-color: #888;
background: #ccc;
}
.main {
grid-area: main;
}