-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
68 lines (58 loc) · 903 Bytes
/
style.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
html,
body {
height: 100%;
}
h1 {
margin-left: 20px;
}
h2 {
font-size: medium;
}
body {
margin: 0;
display: flex;
flex-direction: column;
font-family: "Titillium Web", sans-serif;
}
#header {
width: 100%;
display: flex;
/* This centers our sketch horizontally. */
justify-content: center;
user-select: none;
}
#canvas {
display: flex;
/* This centers our sketch horizontally. */
justify-content: center;
}
#list {
margin-bottom: 25px;
display: flex;
flex-direction: row-reverse;
}
button {
min-width: 20%;
height: 50px;
margin: 5px;
font-size: small;
}
@media (width <= 800px) {
button {
min-width: 40%;
height: 100px;
margin: 5px;
font-size: large;
}
}
input {
margin: 5px;
}
#content {
justify-content: center;
width: calc(100% - 100px);
display: flex;
margin-top: 5px;
padding-left: 50px;
padding-right: 50px;
}