jqvmap.bundle.css 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457
  1. @import url("https://fonts.googleapis.com/css?family=Roboto:300,400,500,700,900");
  2. .jqvmap-label {
  3. position: absolute;
  4. display: none;
  5. border-radius: 3px;
  6. background: #292929;
  7. color: white;
  8. font-family: sans-serif, Verdana;
  9. font-size: smaller;
  10. padding: 3px;
  11. pointer-events: none; }
  12. .jqvmap-pin {
  13. pointer-events: none; }
  14. .jqvmap-zoomin, .jqvmap-zoomout {
  15. position: absolute;
  16. left: 10px;
  17. border-radius: 3px;
  18. background: #000000;
  19. padding: 3px;
  20. color: white;
  21. width: 10px;
  22. height: 10px;
  23. cursor: pointer;
  24. line-height: 10px;
  25. text-align: center; }
  26. .jqvmap-zoomin {
  27. top: 10px; }
  28. .jqvmap-zoomout {
  29. top: 30px; }
  30. .jqvmap-region {
  31. cursor: pointer; }
  32. .jqvmap-ajax_response {
  33. width: 100%;
  34. height: 500px; }
  35. /* #BOOTSTRAP AND MIXINS - Base Unmodified Bootstrap file with theme mixins
  36. ========================================================================== */
  37. /*---------------------------------------------------
  38. SASS ELements (based on LESS Elements 0.9 http://lesselements.com)
  39. -------------------------------- -------------------
  40. LESS ELEMENTS made by Dmitry Fadeyev (http://fadeyev.net)
  41. SASS port by Samuel Beek (http://samuelbeek.com)
  42. ---------------------------------------------------*/
  43. /*------------------------
  44. Usage
  45. h1 {
  46. font-size: rem(32);
  47. }
  48. OR:
  49. h1 {
  50. font-size: rem(32px);
  51. }
  52. ------------------------*/
  53. /*------------------------
  54. FADE IN
  55. e.g. @include fadeIn( 2s );
  56. ------------------------*/
  57. /*------------------------
  58. mixin that calculates if text needs to be light or dark
  59. depending on the background color passed.
  60. From this W3C document: http://www.webmasterworld.com/r.cgi?f=88&d=9769&url=http://www.w3.org/TR/AERT#color-contrast
  61. usage:
  62. @include text-contrast($bgcolor)
  63. Color brightness is determined by the following formula:
  64. ((Red value X 299) + (Green value X 587) + (Blue value X 114)) / 1000
  65. ------------------------*/
  66. /*------------------------
  67. color factory
  68. eg: @include paint($blue-grey-50, bg-blue-grey-50);
  69. ------------------------*/
  70. /* backface visibility */
  71. /* generate theme button */
  72. /* #BASE - Base Variable file along with font library, and colors.
  73. ========================================================================== */
  74. /* THEME COLORs
  75. ========================================================================== */
  76. /* Looks good on chrome default color profile */
  77. /* looks good in sRGB but washed up on chrome default
  78. $color-primary: #826bb0;
  79. $color-success: #31cb55;
  80. $color-info: #5e93ec;
  81. $color-warning: #eec559;
  82. $color-danger: #dc4b92;
  83. $color-fusion: darken(desaturate(adjust-hue($color-primary, 5), 80%), 25%); */
  84. /* Color Polarity
  85. ========================================================================== */
  86. /* PAINTBUCKET MIXER
  87. ========================================================================== */
  88. /* the grays */
  89. /* the sapphires */
  90. /* the emeralds */
  91. /* the amethyths */
  92. /* the topaz */
  93. /* the rubies */
  94. /* the graphites */
  95. /* Define universal border difition (div outlines, etc)
  96. ========================================================================== */
  97. /* MOBILE BREAKPOINT & GUTTERS (contains some bootstrap responsive overrides)
  98. ========================================================================== */
  99. /* define when mobile menu activates, here we are declearing (lg) so it targets the one after it */
  100. /* bootstrap reference xs: 0, sm: 544px, md: 768px, lg: 992px, xl: 1200px*/
  101. /* global var used for spacing*/
  102. /* Uniform Padding variable */
  103. /* Heads up! This is a global scoped variable - changing may impact the whole template */
  104. /* BOOTSTRAP OVERRIDES (bootstrap variables)
  105. ========================================================================== */
  106. /* usage: theme-colors("primary"); */
  107. /* forms */
  108. /*$input-height: calc(2.25rem + 1px); //I had to add this because the input gruops was having improper height for some reason... */
  109. /* links */
  110. /* checkbox */
  111. /*$custom-file-height-inner: calc(2.25rem - 1px);*/
  112. /* not part of bootstrap variable */
  113. /* custom checkbox */
  114. /* custom range */
  115. /* select */
  116. /* badge */
  117. /* cards */
  118. /*border radius*/
  119. /* alert */
  120. /* toast */
  121. /* breadcrumb */
  122. /* input button */
  123. /* nav link */
  124. /* nav, tabs, pills */
  125. /* tables */
  126. /* dropdowns */
  127. /* dropdowns sizes */
  128. /* popovers */
  129. /* tooltips */
  130. /* modal */
  131. /* reference guide
  132. http://www.standardista.com/px-to-rem-conversion-if-root-font-size-is-16px/
  133. 8px = 0.5rem
  134. 9px = 0.5625rem
  135. 10px = 0.625rem
  136. 11px = 0.6875rem
  137. 12px = 0.75rem
  138. 13px = 0.8125rem
  139. 14px = 0.875rem
  140. 15px = 0.9375rem
  141. 16px = 1rem (base)
  142. 17px = 1.0625rem
  143. 18px = 1.125rem
  144. 19px = 1.1875rem
  145. 20px = 1.25rem
  146. 21px = 1.3125rem
  147. 22px = 1.375rem
  148. 24px = 1.5rem
  149. 25px = 1.5625rem
  150. 26px = 1.625rem
  151. 28px = 1.75rem
  152. 30px = 1.875rem
  153. 32px = 2rem
  154. 34px = 2.125rem
  155. 36px = 2.25rem
  156. 38px = 2.375rem
  157. 40px = 2.5rem
  158. */
  159. /* Fonts */
  160. /* carousel */
  161. /* BASE VARS
  162. ========================================================================== */
  163. /* font vars below will auto change to rem values using function rem($value)*/
  164. /* 11px */
  165. /* 12px */
  166. /* 12.5px */
  167. /* 14px */
  168. /* 15px */
  169. /* 16px */
  170. /* 28px */
  171. /* Font Family
  172. ========================================================================== */
  173. /*hint: you can also try the font called 'Poppins' by replacing the font 'Roboto' */
  174. /* ANIMATIONS
  175. ========================================================================== */
  176. /* this addresses all animation related to nav hide to nav minify */
  177. /* Z-INDEX declearation
  178. ========================================================================== */
  179. /* we adjust bootstrap z-index to be higher than our higest z-index*/
  180. /* CUSTOM ICON PREFIX
  181. ========================================================================== */
  182. /* PRINT CSS (landscape or portrait)
  183. ========================================================================== */
  184. /* landscape or portrait */
  185. /* auto, letter */
  186. /* Common Element Variables
  187. ========================================================================== */
  188. /* Z-index decleartion "birds eye view"
  189. ========================================================================== */
  190. /* Components
  191. ========================================================================== */
  192. /* PAGE HEADER STUFF
  193. ========================================================================== */
  194. /* colors */
  195. /* height */
  196. /* logo */
  197. /* try not to go beywond the width of $main_nav_width value */
  198. /* you may need to change this depending on your logo design */
  199. /* adjust this as you see fit : left, right, center */
  200. /* icon font size (not button) */
  201. /* search input box */
  202. /* suggestion: #ccced0*/
  203. /* btn */
  204. /* dropdown: app list */
  205. /* badge */
  206. /* COMPONENTS & MODS */
  207. /* NAVIGATION STUFF
  208. Guide:
  209. aside.page-sidebar ($nav-width, $nav-background)
  210. .page-logo
  211. .primary-nav
  212. .info-card
  213. ul.nav-menu
  214. li
  215. a (parent level-0..., $nav-link-color, $nav-link-hover-color, $nav-link-hover-bg-color, $nav-link-hover-left-border-color)
  216. icon
  217. span
  218. collapse-sign
  219. ul.nav-menu-sub-one
  220. li
  221. a ($nav-level-1... $nav-sub-link-height)
  222. span
  223. collapse-sign
  224. ul.nav-menu-sub-two
  225. li
  226. a ($nav-level-2... $nav-sub-link-height)
  227. span
  228. p.nav-title ($nav-title-*...)
  229. ========================================================================== */
  230. /* main navigation */
  231. /* left panel */
  232. /* nav parent level-0 */
  233. /* nav icon sizes */
  234. /* badge default */
  235. /* all child */
  236. /* nav title */
  237. /* nav Minify */
  238. /* when the menu pops on hover */
  239. /* navigation Width */
  240. /* partial visibility of the menu */
  241. /* top navigation */
  242. /* nav Info Card (appears below the logo) */
  243. /* width is auto */
  244. /* nav DL labels for all child */
  245. /* will be pulled to left as a negative value */
  246. /* MISC Settings
  247. ========================================================================== */
  248. /* List Table */
  249. /* PAGE SETTINGS
  250. ========================================================================== */
  251. /* PAGE BREADCRUMB
  252. ========================================================================== */
  253. /* PAGE COMPONENT PANELS
  254. ========================================================================== */
  255. /* PAGE COMPONENT PROGRESSBARS
  256. ========================================================================== */
  257. /* PAGE COMPONENT MESSENGER
  258. ========================================================================== */
  259. /* FOOTER
  260. ========================================================================== */
  261. /* GLOBALS
  262. ========================================================================== */
  263. /* ACCESSIBILITIES */
  264. /* SHORTCUT BUTTON (appears on bottom right of the page) */
  265. /* GULP WARNINGS */
  266. body {
  267. font-family: "Roboto", "Helvetica Neue", Helvetica, Arial;
  268. font-size: 0.8125rem;
  269. letter-spacing: 0.1px; }
  270. .page-content {
  271. color: #666666; }
  272. h1, h2, h3, h4, h5, h6 {
  273. line-height: 1.3;
  274. font-weight: 400; }
  275. strong {
  276. font-weight: 500; }
  277. h1 small,
  278. h2 small,
  279. h3 small,
  280. h4 small,
  281. h5 small,
  282. h6 small,
  283. .h1 small,
  284. .h2 small,
  285. .h3 small,
  286. .h4 small,
  287. .h5 small,
  288. .h6 small {
  289. font-weight: 300;
  290. display: block;
  291. font-size: 0.9375rem;
  292. line-height: 1.5;
  293. margin: 2px 0 1.5rem; }
  294. h2 small,
  295. h3 small,
  296. .h2 small,
  297. .h3 small {
  298. font-size: 0.9375rem; }
  299. h4 small,
  300. .h4 small {
  301. font-size: 0.875rem; }
  302. h5 small,
  303. h6 small,
  304. .h5 small,
  305. .h6 small {
  306. font-size: 0.8125rem; }
  307. /* contrast text */
  308. .text-contrast {
  309. color: #333333; }
  310. /* text-gradient */
  311. .text-gradient {
  312. background: -webkit-gradient(linear, left top, left bottom, color-stop(25%, #6e4e9e), color-stop(50%, #62468d), color-stop(75%, #0c7cd5), to(#0960a5));
  313. background: linear-gradient(180deg, #6e4e9e 25%, #62468d 50%, #0c7cd5 75%, #0960a5 100%);
  314. color: #886ab5;
  315. background-clip: text;
  316. text-fill-color: transparent;
  317. -webkit-background-clip: text;
  318. -webkit-text-fill-color: transparent;
  319. text-shadow: none; }
  320. /* looking for font size? Check _helpers.scss */
  321. /* PLACEHOLDER
  322. =============================================
  323. EXAMPLE:
  324. %bg-image {
  325. width: 100%;
  326. background-position: center center;
  327. background-size: cover;
  328. background-repeat: no-repeat;
  329. }
  330. .image-one {
  331. @extend %bg-image;
  332. background-image:url(/img/image-one.jpg");
  333. }
  334. RESULT:
  335. .image-one, .image-two {
  336. width: 100%;
  337. background-position: center center;
  338. background-size: cover;
  339. background-repeat: no-repeat;
  340. }
  341. */
  342. /*
  343. %shadow-hover {
  344. box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 0 2px rgba(0,0,0,0.24);
  345. transition: all 0.2s ease-in-out;
  346. &:hover {
  347. box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 -1px 6px rgba(0,0,0,0.23);
  348. }
  349. }
  350. */
  351. /*%fixed-header-shadow {
  352. @include box-shadow(0 2px 2px -1px rgba(0,0,0,.1));
  353. }*/
  354. /* %selected-dot {
  355. &:before {
  356. content: " ";
  357. display: block;
  358. border-radius: 50%;
  359. background: inherit;
  360. background-image: none;
  361. border: 2px solid rgba(0,0,0,0.2);
  362. position: absolute;
  363. top: 15px;
  364. left: 15px;
  365. height: 20px;
  366. width: 20px;
  367. }
  368. &:after {
  369. content: " ";
  370. height: inherit;
  371. width: inherit;
  372. border: 5px solid rgba(0,0,0,0.1);
  373. position: absolute;
  374. left: 0;
  375. top: 0;
  376. border-radius: 50%;
  377. }
  378. }*/
  379. /* patterns */
  380. .jqvmap-zoomin, .jqvmap-zoomout {
  381. width: 1.6rem;
  382. height: 1.6rem;
  383. text-align: center;
  384. font-size: 1.2rem;
  385. font-weight: bold;
  386. border-radius: 3px;
  387. background-image: -webkit-gradient(linear, left bottom, left top, from(#f5f5f5), to(#f1f1f1));
  388. background-image: linear-gradient(to top, #f5f5f5, #f1f1f1);
  389. color: #444;
  390. border: 1px solid rgba(0, 0, 0, 0.1);
  391. -webkit-box-shadow: none;
  392. box-shadow: none;
  393. left: 0;
  394. top: 0;
  395. color: #333;
  396. display: -webkit-box;
  397. display: -ms-flexbox;
  398. display: flex;
  399. -webkit-box-align: center;
  400. -ms-flex-align: center;
  401. align-items: center;
  402. -webkit-box-pack: center;
  403. -ms-flex-pack: center;
  404. justify-content: center; }
  405. .jqvmap-zoomout {
  406. top: 1rem; }
  407. .p-0 .jqvmap-zoomin,
  408. .p-0 .jqvmap-zoomout {
  409. left: 1rem;
  410. top: 1rem; }
  411. .p-0 .jqvmap-zoomout {
  412. top: 3rem; }
  413. .jqvmap-bg-ocean {
  414. background-color: #eafeff; }
  415. /*# sourceMappingURL=jqvmap.bundle.css.map */