-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
executable file
·158 lines (129 loc) · 2.57 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
body{
background-color: rgb(40, 40, 40);
}
h3{
color:white;
}
#colorpicker{
cursor: pointer;
background-color: white;
color:white;
width:30px;
padding:0;
border-width: 0;
border-image: 0;
}
#sideNav{
position: relative;
background-color: blue;
width:270px;
height:550px;
left:00px;
}
#layout{
display: block;
margin-left: auto;
margin-right: auto;
width: 60%;
transform: rotate(180deg)
}
#box{
border-radius: 5%;
background-color: blue;
width:350px;
height:400px;
position: absolute;
top:200px;
display: none;
}
#wheelPicker{
position: absolute;
left:25px;
}
.range-wrap {
position: relative;
width: 100%;
padding: 2em 0; /* Giving more room for hover */
max-width: 300px;
}
/* Custom Bar */
.range-wrap::before {
content: "";
background: linear-gradient(to right, #04ffff, #ffffff, #f29d00);
width: 100%;
height: 8px;
display: block;
position: absolute;
border-radius: 4px;
top: 50%;
transform: translateY(-50%);
transition: height 100ms ease;
}
.range-wrap:hover::before {
height: 10px;
}
/* Hide Original */
.range {
width: 100%;
cursor: pointer;
opacity: 0;
}
.bubble {
background: white;
border: 3px solid #cbd2da;
position: absolute;
border-radius: 50%;
width: 2rem;
height: 2rem;
top: 50%;
transform: translateY(-50%);
pointer-events: none; /* Remove pointer events on Bubble so user can click on the actual thumb beaneath it! */
color: transparent;
display: grid;
place-items: center; /* Place the number on the center */
font-weight: bold;
transition: color 100ms ease, transform 100ms ease;
user-select: none; /* Prevent Accidentally highlighting the number while sliding the cursor */
}
.range-wrap:hover .bubble,
.range-wrap:focus .bubble {
color: black;
transform: translateY(-50%) scale(1.5);
padding: 0.1em;
}
#bildeKnappId1{
width:360px;
height:160px;
z-index:3;
top:425px;
left:425px;
position: absolute;
cursor: pointer;
}
#bildeKnappId2{
width:360px;
height:150px;
z-index:3;
top:270px;
left:425px;
position: absolute;
cursor: pointer;
}
#bildeKnappId3{
width:250px;
height:150px;
z-index:3;
top:270px;
left:790px;
position: absolute;
cursor: pointer;
}
#bildeKnappId4{
width:250px;
height:150px;
z-index:3;
top:425px;
left:790px;
position: absolute;
cursor: pointer;
}