-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtools.css
More file actions
56 lines (49 loc) · 808 Bytes
/
tools.css
File metadata and controls
56 lines (49 loc) · 808 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
51
52
53
54
55
56
.disable-select {
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
body {
background-color: #000000;
text-align: center;
padding: 10px;
margin: 0;
color: #fce305;
font-family: 'Roboto Mono', monospace;
}
h1 {
font-size: 5vw;
color: #ffffff;
font-style: "bold";
}
.number-input {
background-color: #424242;
color: #bdbdbd;
border: 1px solid #e0e0e0;
width: 30px;
}
.upload {
padding: 20px;
}
.upload--active {
border: 2px dashed #e0e0e0;
}
input[type="file"] {
display: none;
}
.file-upload-label {
border: 2px solid #e0e0e0;
background-color: #424242;
display: inline-block;
padding: 6px 12px;
cursor: pointer;
}
.convert-success {
color: #66bb6a;
font-style: "Light";
}
.error {
color: #e57373;
font-style: "Light";
}