-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbubble.css
151 lines (143 loc) · 4.22 KB
/
bubble.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
html {overflow:hidden; padding:0px; margin:0px;}
body {overflow:hidden; padding:0px; margin:0px; background: #949599;}
#wrapper {overflow:hidden;}
#bg {position:absolute; top:0px; left:0px; z-index:100;}
#header {width:100%; background-color: #000000;
background-image: linear-gradient(bottom, #000000 0%, #404242 80%);
background-image: -o-linear-gradient(bottom, #000000 0%, #404242 80%);
background-image: -moz-linear-gradient(bottom, #000000 0%, #404242 80%);
background-image: -webkit-linear-gradient(bottom, #000000 0%, #404242 80%);
background-image: -ms-linear-gradient(bottom, #000000 0%, #404242 80%);
background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #000000), color-stop(0.8, #404242));
box-shadow: 0px 5px 10px #777;
}
h1 {position:relative;
font-size:2em;
font-family: helvetica, arial;
margin:0px;
padding:5px;
text-align:center;
color:#ffffff;
text-shadow: 0px 2px 2px #000;
z-index:100000;
}
.section { position:relative; }
#horizontal.track {
position:relative;
margin:20px;
width:auto;
display:block;
height:30px;
border-radius:20px;
overflow:hidden;
border: #000000 solid 2px;
background-image: linear-gradient(bottom, #6FA529 0%, #C0E009 20%, #C0E009 80%, #6FA529 100%);
background-image: -o-linear-gradient(bottom, #6FA529 0%, #C0E009 20%, #C0E009 80%, #6FA529 100%);
background-image: -moz-linear-gradient(bottom, #6FA529 0%, #C0E009 20%, #C0E009 80%, #6FA529 100%);
background-image: -webkit-linear-gradient(bottom, #6FA529 0%, #C0E009 20%, #C0E009 80%, #6FA529 100%);
background-image: -ms-linear-gradient(bottom, #6FA529 0%, #C0E009 20%, #C0E009 80%, #6FA529 100%);
background-image: -webkit-gradient(
linear,
left bottom,
left top,
color-stop(0, #6FA529),
color-stop(0.2, #C0E009),
color-stop(0.8, #C0E009),
color-stop(1, #6FA529)
);
}
#horizontal.track .marker {
height:30px;
width:32px;
margin:0 auto;
border-left:2px solid #000000;
border-right:2px solid #000000;
position:relative;
z-index:10000;
}
#horizontal.track .bubble {
height:24px;
width:24px;
border-radius:25px;
position:absolute; top:2px;
border:1px solid #000000;
background-color: #C0E009;
margin-left:-13px;
z-index:1000;
left: 50%;
}
#vertical.track {
position:relative;
margin:20px;
width:30px;
height:300px;
display:block;
border-radius:20px;
overflow:hidden;
border:#000000 solid 2px;
background-image: linear-gradient(right , #6FA529 0%, #C0E009 20%, #C0E009 80%, #6FA529 100%);
background-image: -o-linear-gradient(right , #6FA529 0%, #C0E009 20%, #C0E009 80%, #6FA529 100%);
background-image: -moz-linear-gradient(right , #6FA529 0%, #C0E009 20%, #C0E009 80%, #6FA529 100%);
background-image: -webkit-linear-gradient(right , #6FA529 0%, #C0E009 20%, #C0E009 80%, #6FA529 100%);
background-image: -ms-linear-gradient(right , #6FA529 0%, #C0E009 20%, #C0E009 80%, #6FA529 100%);
background-image: -webkit-gradient(
linear,
right bottom,
left bottom,
color-stop(0, #6FA529),
color-stop(0.2, #C0E009),
color-stop(0.8, #C0E009),
color-stop(1, #6FA529)
);
float:left;
margin-top:0px;
}
#vertical.track .marker {
height:32px;
width:30px;
position:absolute;
top:50%;
margin-top:-18px;
border-top:2px solid #000000;
border-bottom:2px solid #000000;
z-index:10000;
}
#vertical.track .bubble {
height:24px;
width:24px;
border-radius:25px;
position:absolute; left:2px;
border:1px solid #000000;
background-color: #C0E009;
margin-top:-13px;
top: 50%;
z-index:1000;
}
#info {position: absolute; padding:0px; padding-left:70px; padding-right:25px; font-family: helvetica, arial;}
#info h2 {font-family: helvetica, arial; font-size:1.2em; margin:0px; padding:0px;}
#info p {font-family: helvetica, arial; font-size:0.9em; text-align:justify;}
#info p a {text-decoration:none; color: #044201; font-size:0.9em;}
#notSupported{
position:absolute;
top:70px;
left:0px;
z-index:20000;
background: #ffffff;
border-radius:20px;
border:4px solid #000000;
color: #000000;
margin:20px;
font-family: helvetica, arial;
padding:20px;
box-shadow: 0px 0px 10px #333;
text-align:center;
}
#notSupported p a {text-decoration:none; color: #044201; font-size:0.9em;}
#notSupportedBackground{
position:absolute;
z-index:10000;
top:0px;
left:0px;
background: rgba(0,0,0,0.5);
margin:0px;
}