-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
91 lines (85 loc) · 1.54 KB
/
style.css
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
html {
background-color: #101010;
background-color: wheat;
font-family: Consolas;
color: #611b1b;
}
#pageTitle, a, nav {
text-align: center;
color: #611b1b;
}
#canvii, #primaryOptionSelector, #controlPanel {
text-align: center;
}
/* #originalImageCanvas, #editingImageCanvas { */
.imageCanvas {
z-index: 0;
position: relative;
width: 200px;
border: 1px dashed #611b1b;
}
/* #originalImageCanvas { */
/* display: none; */
/* } */
#canviiEssentials {
text-align: center;
}
#canviiStagingButtons {
color: #611b1b;
}
#loadGif {
display: none;
padding-left: 49.5%;
}
select {
background: wheat;
border-radius: 25px;
border: 1px dashed #611b1b;
text-align: center;
color: #611b1b;
}
.button, [type='button'], button {
border-radius: 25px;
border: none;
text-align: center;
background: none;
color: #611b1b;
position: relative;
font-size: 20px;
}
select:hover {
font-style: oblique;
}
a:hover {
font-style: oblique;
}
label:hover {
font-style: oblique;
}
button:hover {
font-style: oblique;
}
[type='button']:hover {
font-style: oblique;
}
.slider {
height: 10px;
border-radius: 5px;
border: 1px dashed #611b1b;
background: wheat;
color: #611b1b;
z-index: 1;
}
.slider::-webkit-slider-thumb {
-webkit-appearance: none;
appearance: none;
border-radius: 50%;
cursor: pointer;
border: none;
}
.slider::-moz-range-thumb {
border-radius: 50%;
background: #611b1b;
cursor: pointer;
border: none;
}