-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
83 lines (71 loc) · 1.2 KB
/
main.css
File metadata and controls
83 lines (71 loc) · 1.2 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
body {
margin: 0;
}
.container {
display: flex;
flex-flow: row nowrap;
font-family: 'Roboto', Arial, sans-serif;
font-size: 14px;
}
#canvasContainer {
min-width: 800px;
min-height: 800px;
overflow: hidden;
position: relative;
}
.zoom-window {
display: none;
width: 800px;
height: 800px;
transform: translate(-50%, -50%);
background: none;
border: 2px solid purple;
position: absolute;
z-index: 999;
top: 0;
left: 0;
}
.inputs {
margin: 50px;
}
.container input {
margin: 5px;
}
.box {
border: 1px solid black;
width: max-content;
padding-right: 5px;
margin-top: 10px;
}
.title {
margin: -10px 0 0 10px;
background: white;
width: max-content;
padding: 0 5px;
}
.label {
padding: 0 5px;
}
.color-preview {
width: 100px;
height: 100px;
border: 1px solid black;
background-color: black;
margin: 15px auto;
}
.gradient-sample {
border: 1px solid black;
height: 50px;
width: 400px;
}
.progress-bar {
width: 200px;
height: 30px;
border: 1px solid black;
text-align: center;
}
.progress-bar__filler {
width: 0;
height: 100%;
background-color: darkgreen;
}