| 1 |
.the-tooltip { |
| 2 |
} |
| 3 |
.the-tooltip > .tooltip_inner { |
| 4 |
border: solid 1px; |
| 5 |
border-radius: 5px; |
| 6 |
-webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3), 0 1px 0 rgba(255, 255, 255, 0.3) inset; |
| 7 |
-moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3), 0 1px 0 rgba(255, 255, 255, 0.3) inset; |
| 8 |
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3), 0 1px 0 rgba(255, 255, 255, 0.3) inset; |
| 9 |
-webkit-box-sizing: border-box; |
| 10 |
-moz-box-sizing: border-box; |
| 11 |
-ms-box-sizing: border-box; |
| 12 |
box-sizing: border-box; |
| 13 |
font-size: 14px; |
| 14 |
padding: 7px 13px 7px 12px; |
| 15 |
position: absolute; |
| 16 |
-webkit-transition: 0.2s 0s; |
| 17 |
-moz-transition: 0.2s 0s; |
| 18 |
-ms-transition: 0.2s 0s; |
| 19 |
-o-transition: 0.2s 0s; |
| 20 |
transition: 0.2s 0s; |
| 21 |
width: 250px; |
| 22 |
z-index: 999; |
| 23 |
line-height: 24px; |
| 24 |
font-weight: normal; |
| 25 |
} |
| 26 |
.the-tooltip > .tooltip_inner.powered_by { |
| 27 |
background: rgb(30,87,153); /* Old browsers */ |
| 28 |
background: -moz-linear-gradient(top, rgba(30,87,153,1) 0%, rgba(41,137,216,1) 50%, rgba(32,124,202,1) 51%, rgba(125,185,232,1) 100%); /* FF3.6+ */ |
| 29 |
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(30,87,153,1)), color-stop(50%,rgba(41,137,216,1)), color-stop(51%,rgba(32,124,202,1)), color-stop(100%,rgba(125,185,232,1))); /* Chrome,Safari4+ */ |
| 30 |
background: -webkit-linear-gradient(top, rgba(30,87,153,1) 0%,rgba(41,137,216,1) 50%,rgba(32,124,202,1) 51%,rgba(125,185,232,1) 100%); /* Chrome10+,Safari5.1+ */ |
| 31 |
background: -o-linear-gradient(top, rgba(30,87,153,1) 0%,rgba(41,137,216,1) 50%,rgba(32,124,202,1) 51%,rgba(125,185,232,1) 100%); /* Opera 11.10+ */ |
| 32 |
background: -ms-linear-gradient(top, rgba(30,87,153,1) 0%,rgba(41,137,216,1) 50%,rgba(32,124,202,1) 51%,rgba(125,185,232,1) 100%); /* IE10+ */ |
| 33 |
background: linear-gradient(to bottom, rgba(30,87,153,1) 0%,rgba(41,137,216,1) 50%,rgba(32,124,202,1) 51%,rgba(125,185,232,1) 100%); /* W3C */ |
| 34 |
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1e5799', endColorstr='#7db9e8',GradientType=0 ); /* IE6-9 */ |
| 35 |
opacity: 0.99; |
| 36 |
width: 202px !important; |
| 37 |
padding: 4px 13px 5px 12px !important; |
| 38 |
} |
| 39 |
.the-tooltip.dark-midnight-blue > .tooltip_inner.powered_by:after { |
| 40 |
border-color: rgb(17, 89, 162)!important; |
| 41 |
} |
| 42 |
.the-tooltip.bottom > .tooltip_inner.powered_by:after, .the-tooltip.bottom > .tooltip_inner.powered_by:before { |
| 43 |
border-left-color: transparent !important; |
| 44 |
border-right-color: transparent !important; |
| 45 |
border-top-color: transparent !important; |
| 46 |
bottom: 100%; |
| 47 |
} |
| 48 |
.the-tooltip.dark-midnight-blue > .tooltip_inner.powered_by { |
| 49 |
border-color: rgb(0, 58, 116) !important; |
| 50 |
} |
| 51 |
|
| 52 |
|
| 53 |
.the-tooltip > .tooltip_inner * { |
| 54 |
max-width: 100%; |
| 55 |
} |
| 56 |
.the-tooltip > .tooltip_inner:after, .the-tooltip > .tooltip_inner:before { |
| 57 |
border: solid 11px; |
| 58 |
content: ""; |
| 59 |
display: block; |
| 60 |
margin: 0 20px 0 20px; |
| 61 |
position: absolute; |
| 62 |
} |
| 63 |
.the-tooltip.bottom > .tooltip_inner { |
| 64 |
} |
| 65 |
.the-tooltip.bottom > .tooltip_inner:after { |
| 66 |
margin-bottom: -1px; |
| 67 |
} |
| 68 |
.the-tooltip.bottom > .tooltip_inner:after, .the-tooltip.bottom > .tooltip_inner:before { |
| 69 |
border-left-color: transparent !important; |
| 70 |
border-right-color: transparent !important; |
| 71 |
border-top-color: transparent !important; |
| 72 |
bottom: 100%; |
| 73 |
} |
| 74 |
.the-tooltip.bottom > .tooltip_inner:before { |
| 75 |
margin-bottom: 0px; |
| 76 |
} |
| 77 |
.the-tooltip.center > .tooltip_inner { |
| 78 |
} |
| 79 |
.the-tooltip.center > .tooltip_inner:after, .the-tooltip.center > .tooltip_inner:before { |
| 80 |
left: 50%; |
| 81 |
margin-left: -10px; |
| 82 |
} |
| 83 |
.the-tooltip.left > .tooltip_inner { |
| 84 |
left: 0; |
| 85 |
} |
| 86 |
.the-tooltip.left > .tooltip_inner:after, .the-tooltip.left > .tooltip_inner:before { |
| 87 |
left: 0; |
| 88 |
} |
| 89 |
.the-tooltip.right > .tooltip_inner { |
| 90 |
right: 0; |
| 91 |
} |
| 92 |
.the-tooltip.right > .tooltip_inner:after, .the-tooltip.right > .tooltip_inner:before { |
| 93 |
right: 0; |
| 94 |
} |
| 95 |
.the-tooltip.top > .tooltip_inner { |
| 96 |
bottom: 100%; |
| 97 |
margin-bottom: 15px; |
| 98 |
} |
| 99 |
.the-tooltip.top > .tooltip_inner:after { |
| 100 |
margin-top: -1px; |
| 101 |
} |
| 102 |
.the-tooltip.top > .tooltip_inner:after, .the-tooltip.top > .tooltip_inner:before { |
| 103 |
border-bottom-color: transparent !important; |
| 104 |
border-left-color: transparent !important; |
| 105 |
border-right-color: transparent !important; |
| 106 |
top: 100%; |
| 107 |
} |
| 108 |
.the-tooltip.top > .tooltip_inner:before { |
| 109 |
margin-top: 0px; |
| 110 |
} |
| 111 |
.the-tooltip.auto-width > .tooltip_inner { |
| 112 |
white-space: nowrap; |
| 113 |
width: auto; |
| 114 |
} |
| 115 |
.the-tooltip.full-width > .tooltip_inner { |
| 116 |
left: 0; |
| 117 |
margin-left: 0; |
| 118 |
width: 100%; |
| 119 |
} |
| 120 |
.the-tooltip.apple-green > .tooltip_inner { |
| 121 |
background-color: #8db600; |
| 122 |
border-color: #658300; |
| 123 |
color: #161d00; |
| 124 |
} |
| 125 |
.the-tooltip.apple-green > .tooltip_inner:after { |
| 126 |
border-color: #8db600; |
| 127 |
} |
| 128 |
.the-tooltip.apple-green > .tooltip_inner:before { |
| 129 |
border-color: #658300; |
| 130 |
} |
| 131 |
.the-tooltip.apple-green > .tooltip_inner { |
| 132 |
text-shadow: 0 1px 0 rgba(255, 255, 255, 0.3); |
| 133 |
} |
| 134 |
.the-tooltip.apricot > .tooltip_inner { |
| 135 |
background-color: #fbceb1; |
| 136 |
border-color: #f9b080; |
| 137 |
color: #441d03; |
| 138 |
} |
| 139 |
.the-tooltip.apricot > .tooltip_inner:after { |
| 140 |
border-color: #fbceb1; |
| 141 |
} |
| 142 |
.the-tooltip.apricot > .tooltip_inner:before { |
| 143 |
border-color: #f9b080; |
| 144 |
} |
| 145 |
.the-tooltip.apricot > .tooltip_inner { |
| 146 |
text-shadow: 0 1px 0 rgba(255, 255, 255, 0.3); |
| 147 |
} |
| 148 |
.the-tooltip.black > .tooltip_inner { |
| 149 |
background-color: rgba(51, 51, 51, 0.88); |
| 150 |
border-color: #0d0d0d; |
| 151 |
color: #ffffff; |
| 152 |
} |
| 153 |
.the-tooltip.black > .tooltip_inner:after { |
| 154 |
border-color: rgba(80, 77, 77, 0.95); |
| 155 |
} |
| 156 |
.the-tooltip.black > .tooltip_inner:before { |
| 157 |
border-color: #0d0d0d; |
| 158 |
} |
| 159 |
.the-tooltip.black > .tooltip_inner { |
| 160 |
text-shadow: 0 1px 0 #000000; |
| 161 |
} |
| 162 |
.the-tooltip.carrot-orange > .tooltip_inner { |
| 163 |
background-color: #ed9121; |
| 164 |
border-color: #b3690f; |
| 165 |
color: #251603; |
| 166 |
} |
| 167 |
.the-tooltip.carrot-orange > .tooltip_inner:after { |
| 168 |
border-color: #ed9121; |
| 169 |
} |
| 170 |
.the-tooltip.carrot-orange > .tooltip_inner:before { |
| 171 |
border-color: #b3690f; |
| 172 |
} |
| 173 |
.the-tooltip.carrot-orange > .tooltip_inner { |
| 174 |
text-shadow: 0 1px 0 rgba(255, 255, 255, 0.3); |
| 175 |
} |
| 176 |
.the-tooltip.eggplant > .tooltip_inner { |
| 177 |
background-color: #614051; |
| 178 |
border-color: #33222b; |
| 179 |
color: #ffffff; |
| 180 |
} |
| 181 |
.the-tooltip.eggplant > .tooltip_inner:after { |
| 182 |
border-color: #614051; |
| 183 |
} |
| 184 |
.the-tooltip.eggplant > .tooltip_inner:before { |
| 185 |
border-color: #33222b; |
| 186 |
} |
| 187 |
.the-tooltip.eggplant > .tooltip_inner { |
| 188 |
text-shadow: 0 1px 0 #000000; |
| 189 |
} |
| 190 |
.the-tooltip.forest-green > .tooltip_inner { |
| 191 |
background-color: #014421; |
| 192 |
border-color: #001209; |
| 193 |
color: #ffffff; |
| 194 |
} |
| 195 |
.the-tooltip.forest-green > .tooltip_inner:after { |
| 196 |
border-color: #014421; |
| 197 |
} |
| 198 |
.the-tooltip.forest-green > .tooltip_inner:before { |
| 199 |
border-color: #001209; |
| 200 |
} |
| 201 |
.the-tooltip.forest-green > .tooltip_inner { |
| 202 |
text-shadow: 0 1px 0 #000000; |
| 203 |
} |
| 204 |
.the-tooltip.bright-lavender > .tooltip_inner { |
| 205 |
background-color: #bf94e4; |
| 206 |
border-color: #9a57d5; |
| 207 |
color: #250e38; |
| 208 |
} |
| 209 |
.the-tooltip.bright-lavender > .tooltip_inner:after { |
| 210 |
border-color: #bf94e4; |
| 211 |
} |
| 212 |
.the-tooltip.bright-lavender > .tooltip_inner:before { |
| 213 |
border-color: #9a57d5; |
| 214 |
} |
| 215 |
.the-tooltip.bright-lavender > .tooltip_inner { |
| 216 |
text-shadow: 0 1px 0 rgba(255, 255, 255, 0.3); |
| 217 |
} |
| 218 |
.the-tooltip.dark-midnight-blue > .tooltip_inner { |
| 219 |
background-color: #003366; |
| 220 |
border-color: #000d1a; |
| 221 |
color: #ffffff; |
| 222 |
} |
| 223 |
.the-tooltip.dark-midnight-blue > .tooltip_inner:after { |
| 224 |
border-color: #003366; |
| 225 |
} |
| 226 |
.the-tooltip.dark-midnight-blue > .tooltip_inner:before { |
| 227 |
border-color: #000d1a; |
| 228 |
} |
| 229 |
.the-tooltip.dark-midnight-blue > .tooltip_inner { |
| 230 |
text-shadow: 0 1px 0 rgba(0, 0, 0, 0.5); |
| 231 |
} |
| 232 |
.the-tooltip.magic-mint > .tooltip_inner { |
| 233 |
background-color: #aaf0d1; |
| 234 |
border-color: #69e5ae; |
| 235 |
color: #0c432a; |
| 236 |
} |
| 237 |
.the-tooltip.magic-mint > .tooltip_inner:after { |
| 238 |
border-color: #aaf0d1; |
| 239 |
} |
| 240 |
.the-tooltip.magic-mint > .tooltip_inner:before { |
| 241 |
border-color: #69e5ae; |
| 242 |
} |
| 243 |
.the-tooltip.magic-mint > .tooltip_inner { |
| 244 |
text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5); |
| 245 |
} |
| 246 |
.the-tooltip.mustard > .tooltip_inner { |
| 247 |
background-color: #ffdb58; |
| 248 |
border-color: #f1bd00; |
| 249 |
color: #3f3100; |
| 250 |
} |
| 251 |
.the-tooltip.mustard > .tooltip_inner:after { |
| 252 |
border-color: #ffdb58; |
| 253 |
} |
| 254 |
.the-tooltip.mustard > .tooltip_inner:before { |
| 255 |
border-color: #f1bd00; |
| 256 |
} |
| 257 |
.the-tooltip.mustard > .tooltip_inner { |
| 258 |
text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5); |
| 259 |
} |
| 260 |
.the-tooltip.sienna > .tooltip_inner { |
| 261 |
background-color: #882d17; |
| 262 |
border-color: #47170c; |
| 263 |
color: #ffffff; |
| 264 |
} |
| 265 |
.the-tooltip.sienna > .tooltip_inner:after { |
| 266 |
border-color: #882d17; |
| 267 |
} |
| 268 |
.the-tooltip.sienna > .tooltip_inner:before { |
| 269 |
border-color: #47170c; |
| 270 |
} |
| 271 |
.the-tooltip.sienna > .tooltip_inner { |
| 272 |
text-shadow: 0 1px 0 rgba(0, 0, 0, 0.5); |
| 273 |
} |
| 274 |
.the-tooltip.sky-blue > .tooltip_inner { |
| 275 |
background-color: #87ceeb; |
| 276 |
border-color: #45b3e0; |
| 277 |
color: #0d3a4d; |
| 278 |
} |
| 279 |
.the-tooltip.sky-blue > .tooltip_inner:after { |
| 280 |
border-color: #87ceeb; |
| 281 |
} |
| 282 |
.the-tooltip.sky-blue > .tooltip_inner:before { |
| 283 |
border-color: #45b3e0; |
| 284 |
} |
| 285 |
.the-tooltip.sky-blue > .tooltip_inner { |
| 286 |
text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5); |
| 287 |
} |
| 288 |
.the-tooltip.sunset > .tooltip_inner { |
| 289 |
background-color: #fad6a5; |
| 290 |
border-color: #f6b55d; |
| 291 |
color: #4f2f04; |
| 292 |
} |
| 293 |
.the-tooltip.sunset > .tooltip_inner:after { |
| 294 |
border-color: #fad6a5; |
| 295 |
} |
| 296 |
.the-tooltip.sunset > .tooltip_inner:before { |
| 297 |
border-color: #f6b55d; |
| 298 |
} |
| 299 |
.the-tooltip.sunset > .tooltip_inner { |
| 300 |
text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5); |
| 301 |
} |