-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
120 lines (101 loc) · 1.82 KB
/
Copy pathmain.css
File metadata and controls
120 lines (101 loc) · 1.82 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
html {
overflow-x: hidden;
font-size: 22px;
font-family: Verdana, Geneva, Tahoma, sans-serif;
}
body {
background-color: #141414;
color: whitesmoke;
margin: 0px;
}
#main {
display: flex;
flex-direction: column;
width: fit-content;
}
button {
width: fit-content;
}
canvas {
left: 20px;
}
#canvas-box {
position: relative;
display: inline-block;
}
#canvas-controls {
position: absolute;
top: 10px;
right: 10px;
background-color: rgba(20, 20, 20, 0.75);
padding: 10px;
border-radius: 8px;
z-index: 10;
color: white;
font-size: 85%;
display: flex;
flex-direction: column;
transition: 350ms ease-in-out;
overflow: hidden;
}
.btn {
background-color: rgba(20, 20, 20, 1);
padding: 7.5px;
border-radius: 10px;
}
.text-input {
background-color: #1e1e1e;
color: #ffffff;
border: none;
border-radius: 10px;
padding: 0.6em 1em;
font-size: 1rem;
outline: none;
transition: background-color 0.3s, box-shadow 0.3s;
}
.text-input::placeholder {
color: #aaa;
}
.text-input:focus {
background-color: #2a2a2a;
box-shadow: 0 0 0 2px #4A90E2;
}
#spline-size {
background-color: #1e1e1e;
color: #ffffff;
border: none;
border-radius: 10px;
padding: 5px 10px;
outline: none;
}
.toggle-buttons {
width: 25px;
text-align: right;
position: absolute;
right: 10px;
top: 10px;
z-index: 11;
}
#open-button {
background-color: rgba(20, 20, 20, 1);
padding: 5px;
border-radius: 8px;
text-align: center;
vertical-align: middle;
}
hr {
opacity: 0;
}
#htitle {
top: 0px;
left: 0px;
width: 100%;
text-align: center;
}
#ptitle {
position: absolute;
top: 23px;
left: calc(50vw + 250px);
width: 100%;
text-align: left;
}