-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
50 lines (44 loc) · 889 Bytes
/
style.css
File metadata and controls
50 lines (44 loc) · 889 Bytes
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
body {
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
font-size: medium;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
#app-header {
font-size: large;
font-weight: bolder;
color: brown;
text-align: center;
}
#app-main {
background-color: beige;
margin-top: 30px;
margin-bottom: 30px;
padding: 10px;
display: flex;
flex-direction: column;
width: 50%;
align-items: center;
justify-content: center;
row-gap: 30px;
}
.hidden {
display: none;
}
.input-group {
display: flex;
flex-direction: column;
row-gap: 30px;
}
#app-canvas {
/* border: 3px solid brown; */
width: 50%;
height: 600px;
}
#drawing {
width: 100%;
height: 50vh;
border: solid 5px black;
}