-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathanimatePins_google.css
More file actions
126 lines (121 loc) · 2.76 KB
/
animatePins_google.css
File metadata and controls
126 lines (121 loc) · 2.76 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
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
/* Always set the map height explicitly to define the size of the div
* element that contains the map. */
#map {
height: 100%;
width:100%;
}
/* Optional: Makes the sample page fill the window. */
html, body {
height: 100%;
width:100%;
margin: 0;
padding: 0;
font-family: 'Roboto','sans-serif';
}
#floating-panel {
position: absolute;
top: 20px;
left: 10px;
z-index: 5;
background-color: #fff0f090;
border-radius: 10px;
padding: 20px;
text-align: left;
width: 290px;
font-size: 25px;
font-family: 'Roboto','sans-serif';
line-height: 60px;
padding-left: 20px;
}
#title{
position: absolute;
/*background-color: #fff0f090;
border-radius: 10px;
padding: 20px;*/
top: 20px;
left: 0px;
width:100%;
text-align:center;
z-index: 5;
color: #000000;
font-size: 40px;
font-family: 'Roboto','sans-serif';
}
#slider { display:block;
position:absolute;
left: 10px;
height: 100px;
width: -moz-calc( 100% - 70px );
width: calc( 100% - 70px );
bottom: 5px;
border: 0px solid #73AD21;
background-color: #fff0f090;
border-radius: 10px;
padding: 5px;
font-family: 'Roboto','sans-serif';
margin-bottom: 10px;
}
input.butt {
margin: 5px;
padding: 5px;
border-radius: 10px;
background-color:#FFF;
color:#000;
font-family: 'Roboto','sans-serif';
}
.selector-control{
/*margin: 5px;*/
padding: 2px;
border-radius: 7px;
background-color:#FFF;
color:#101010;
font-family: 'Roboto','sans-serif';
}
.slidcont{
position:relative;
width: -moz-calc( 100% - 200px );
width: calc( 100% - 200px );
}
.canvas{
position: absolute;
width: -moz-calc( 100% - 190px );
width: calc( 100% - 190px );
height: 50px;
margin:10px;
margin-left:25px;
}
.slider {
position: absolute;
-webkit-appearance: none;
height: 30px;
border-radius: 10px;
background: #d3d3d300;
outline: none;
opacity: 1;
-webkit-transition: .2s;
transition: opacity .2s;
width: -moz-calc( 100% - 160px );
width: calc( 100% - 160px );
margin-bottom:-20px;
}
.slider:hover {
opacity: 1;
}
.slider::-webkit-slider-thumb {
-webkit-appearance: none;
appearance: none;
width: 30px;
height: 30px;
border-radius: 50%;
background: #4CAF50;
cursor: pointer;
}
.slider::-moz-range-thumb {
width: 30px;
height: 30px;
border-radius: 50%;
border-width: 4px;
border-color: #404040;
background: #FFFFFF;/*#4CAF50;*/
cursor: pointer;
}