-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathstyle.css
72 lines (63 loc) · 1.08 KB
/
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
69
70
71
72
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
width: 100%;
height: 100vh;
background-color: #000;
overflow: hidden;
font-family: sans-serif;
}
#vis-container {
width: calc(100% - 32px);
height: calc(100% - 90px);
margin: 16px;
background-color: #08090a;
overflow: auto;
}
#input-container {
height: 50px;
margin-top: 16px;
display: flex;
align-items: center;
justify-content: center;
color: #fff;
}
#shape {
width: 120px;
padding: 2px 5px;
margin: 0 5px;
}
#draw-btn,
#download-btn {
height: 24px;
padding: 2px 5px;
border-radius: 3px;
font-size: 13px;
display: inline-flex;
align-items: center;
cursor: pointer;
}
#draw-btn {
border-style: solid;
border-color: #63c8e4;
background-color: #63c8e4;
}
#download-btn {
margin-left: 5px;
background-color: #63e463;
text-decoration: none;
color: #000;
}
footer {
width: 100%;
color: #fff;
position: fixed;
text-align: center;
bottom: 16px;
}
footer a {
color: #5050ff;
}