-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
101 lines (85 loc) · 1.49 KB
/
style.css
File metadata and controls
101 lines (85 loc) · 1.49 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
.row {
margin: 1rem;
}
.tile-thumbnail {
height: 130px;
width: 130px;
object-fit: contain;
border: 2px dotted #cfcece
}
.whole-image {
width: 512px;
height: 512px;
border: 2px dotted #cfcece
}
.mr-top-10 {
margin-top: 10px;
}
.mr-bottom-10 {
margin-bottom: 10px;
}
.loader {
border: 8px solid #f3f3f3;
border-top: 8px solid #084b77;
border-radius: 50%;
width: 30px;
height: 30px;
animation: spin 1s linear infinite;
}
.new-line {
display: block;
}
@keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
.slider {
-webkit-appearance: none;
width: 100%;
height: 10px;
border-radius: 5px;
background: #d3d3d3;
outline: none;
opacity: 0.7;
-webkit-transition: .2s;
transition: opacity .2s;
}
.slider::-webkit-slider-thumb {
-webkit-appearance: none;
appearance: none;
width: 20px;
height: 20px;
border-radius: 50%;
background: #084b77;
cursor: pointer;
}
.slider::-moz-range-thumb {
width: 20px;
height: 20px;
border-radius: 50%;
background: #084b77;
cursor: pointer;
}
.slidecontainer {
width: 25%;
display: flex;
}
#sliderValue {
margin-left: 5px;
white-space: nowrap;
}
.uploadCanvas:hover {
cursor: pointer;
border: 2px solid red;
}
.tile-thumbnail-selected {
border: 2px solid #084b77 !important;
}
.tileContainer {
display: inline-block;
text-align: center;
}