-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathimage-uploader-css.html
71 lines (55 loc) · 948 Bytes
/
image-uploader-css.html
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
<style>
html, body {
margin: 0;
height: 100%;
scroll-behavior: smooth;
font-family: Arial !important;
font-size: small !important;
line-height: 1.3 !important;
}
.sticky-container {
position: sticky;
top: 0;
background-color: white;
z-index: 999;
}
#fileTable tbody td,
#fileTable tbody th {
vertical-align: middle;
}
#fileTable th:first-child {
text-align: center;
}
#log {
font-style: italic;
color: gray;
margin: 10px 0;
margin-left: auto;
}
.slider {
width: 200px;
}
.slider input[type="range"] {
width: 100%;
}
.slider-container {
display: flex;
align-items: center;
}
.separator {
border-left: 1px solid black;
height: 100%;
margin: 0 3px;
}
#sliderValue {
font-weight: bold;
}
.sticky-container {
padding-top: 3%;
padding-right: 3%;
padding-left: 3%;
}
.slider-container {
padding-left: 5%;
}
</style>