leaflet.css 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839
  1. /* required styles */
  2. .leaflet-pane,
  3. .leaflet-tile,
  4. .leaflet-marker-icon,
  5. .leaflet-marker-shadow,
  6. .leaflet-tile-container,
  7. .leaflet-pane > svg,
  8. .leaflet-pane > canvas,
  9. .leaflet-zoom-box,
  10. .leaflet-image-layer,
  11. .leaflet-layer {
  12. position: absolute;
  13. left: 0;
  14. top: 0;
  15. }
  16. .leaflet-container {
  17. overflow: hidden;
  18. }
  19. .leaflet-tile,
  20. .leaflet-marker-icon,
  21. .leaflet-marker-shadow {
  22. -webkit-user-select: none;
  23. -moz-user-select: none;
  24. user-select: none;
  25. -webkit-user-drag: none;
  26. }
  27. /* Safari renders non-retina tile on retina better with this, but Chrome is worse */
  28. .leaflet-safari .leaflet-tile {
  29. image-rendering: -webkit-optimize-contrast;
  30. }
  31. /* hack that prevents hw layers "stretching" when loading new tiles */
  32. .leaflet-safari .leaflet-tile-container {
  33. width: 1600px;
  34. height: 1600px;
  35. -webkit-transform-origin: 0 0;
  36. }
  37. .leaflet-marker-icon,
  38. .leaflet-marker-shadow {
  39. display: block;
  40. }
  41. /* .leaflet-container svg: reset svg max-width decleration shipped in Joomla! (joomla.org) 3.x */
  42. /* .leaflet-container img: map is broken in FF if you have max-width: 100% on tiles */
  43. .leaflet-container .leaflet-overlay-pane svg,
  44. .leaflet-container .leaflet-marker-pane img,
  45. .leaflet-container .leaflet-shadow-pane img,
  46. .leaflet-container .leaflet-tile-pane img,
  47. .leaflet-container img.leaflet-image-layer {
  48. max-width: none !important;
  49. }
  50. .leaflet-container.leaflet-touch-zoom {
  51. -ms-touch-action: pan-x pan-y;
  52. touch-action: pan-x pan-y;
  53. }
  54. .leaflet-container.leaflet-touch-drag {
  55. -ms-touch-action: pinch-zoom;
  56. }
  57. .leaflet-container.leaflet-touch-drag.leaflet-touch-zoom {
  58. -ms-touch-action: none;
  59. touch-action: none;
  60. }
  61. .leaflet-container {
  62. -webkit-tap-highlight-color: transparent;
  63. }
  64. .leaflet-container a {
  65. -webkit-tap-highlight-color: rgba(51, 181, 229, 0.4);
  66. }
  67. .leaflet-tile {
  68. filter: inherit;
  69. visibility: hidden;
  70. }
  71. .leaflet-tile-loaded {
  72. visibility: inherit;
  73. }
  74. .leaflet-zoom-box {
  75. width: 0;
  76. height: 0;
  77. -moz-box-sizing: border-box;
  78. box-sizing: border-box;
  79. z-index: 800;
  80. }
  81. /* workaround for https://bugzilla.mozilla.org/show_bug.cgi?id=888319 */
  82. .leaflet-overlay-pane svg {
  83. -moz-user-select: none;
  84. }
  85. .leaflet-pane {
  86. z-index: 400;
  87. }
  88. .leaflet-tile-pane {
  89. z-index: 200;
  90. }
  91. .leaflet-overlay-pane {
  92. z-index: 400;
  93. }
  94. .leaflet-shadow-pane {
  95. z-index: 500;
  96. }
  97. .leaflet-marker-pane {
  98. z-index: 600;
  99. }
  100. .leaflet-tooltip-pane {
  101. z-index: 650;
  102. }
  103. .leaflet-popup-pane {
  104. z-index: 700;
  105. }
  106. .leaflet-map-pane canvas {
  107. z-index: 100;
  108. }
  109. .leaflet-map-pane svg {
  110. z-index: 200;
  111. }
  112. .leaflet-vml-shape {
  113. width: 1px;
  114. height: 1px;
  115. }
  116. .lvml {
  117. behavior: url(#default#VML);
  118. display: inline-block;
  119. position: absolute;
  120. }
  121. /* control positioning */
  122. .leaflet-control {
  123. position: relative;
  124. z-index: 800;
  125. pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
  126. pointer-events: auto;
  127. }
  128. .leaflet-top,
  129. .leaflet-bottom {
  130. position: absolute;
  131. z-index: 1000;
  132. pointer-events: none;
  133. }
  134. .leaflet-top {
  135. top: 0;
  136. }
  137. .leaflet-right {
  138. right: 0;
  139. }
  140. .leaflet-bottom {
  141. bottom: 0;
  142. }
  143. .leaflet-left {
  144. left: 0;
  145. }
  146. .leaflet-control {
  147. float: left;
  148. clear: both;
  149. }
  150. .leaflet-right .leaflet-control {
  151. float: right;
  152. }
  153. .leaflet-top .leaflet-control {
  154. margin-top: 10px;
  155. }
  156. .leaflet-bottom .leaflet-control {
  157. margin-bottom: 10px;
  158. }
  159. .leaflet-left .leaflet-control {
  160. margin-left: 10px;
  161. }
  162. .leaflet-right .leaflet-control {
  163. margin-right: 10px;
  164. }
  165. /* zoom and fade animations */
  166. .leaflet-fade-anim .leaflet-tile {
  167. will-change: opacity;
  168. }
  169. .leaflet-fade-anim .leaflet-popup {
  170. opacity: 0;
  171. -webkit-transition: opacity 0.2s linear;
  172. -moz-transition: opacity 0.2s linear;
  173. -o-transition: opacity 0.2s linear;
  174. transition: opacity 0.2s linear;
  175. }
  176. .leaflet-fade-anim .leaflet-map-pane .leaflet-popup {
  177. opacity: 1;
  178. }
  179. .leaflet-zoom-animated {
  180. -webkit-transform-origin: 0 0;
  181. -ms-transform-origin: 0 0;
  182. transform-origin: 0 0;
  183. }
  184. .leaflet-zoom-anim .leaflet-zoom-animated {
  185. will-change: transform;
  186. }
  187. .leaflet-zoom-anim .leaflet-zoom-animated {
  188. -webkit-transition: -webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1);
  189. -moz-transition: -moz-transform 0.25s cubic-bezier(0, 0, 0.25, 1);
  190. -o-transition: -o-transform 0.25s cubic-bezier(0, 0, 0.25, 1);
  191. transition: transform 0.25s cubic-bezier(0, 0, 0.25, 1);
  192. }
  193. .leaflet-zoom-anim .leaflet-tile,
  194. .leaflet-pan-anim .leaflet-tile {
  195. -webkit-transition: none;
  196. -moz-transition: none;
  197. -o-transition: none;
  198. transition: none;
  199. }
  200. .leaflet-zoom-anim .leaflet-zoom-hide {
  201. visibility: hidden;
  202. }
  203. /* cursors */
  204. .leaflet-interactive {
  205. cursor: pointer;
  206. }
  207. .leaflet-grab {
  208. cursor: -webkit-grab;
  209. cursor: -moz-grab;
  210. }
  211. .leaflet-crosshair,
  212. .leaflet-crosshair .leaflet-interactive {
  213. cursor: crosshair;
  214. }
  215. .leaflet-popup-pane,
  216. .leaflet-control {
  217. cursor: auto;
  218. }
  219. .leaflet-dragging .leaflet-grab,
  220. .leaflet-dragging .leaflet-grab .leaflet-interactive,
  221. .leaflet-dragging .leaflet-marker-draggable {
  222. cursor: move;
  223. cursor: -webkit-grabbing;
  224. cursor: -moz-grabbing;
  225. }
  226. /* marker & overlays interactivity */
  227. .leaflet-marker-icon,
  228. .leaflet-marker-shadow,
  229. .leaflet-image-layer,
  230. .leaflet-pane > svg path,
  231. .leaflet-tile-container {
  232. pointer-events: none;
  233. }
  234. .leaflet-marker-icon.leaflet-interactive,
  235. .leaflet-image-layer.leaflet-interactive,
  236. .leaflet-pane > svg path.leaflet-interactive {
  237. pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
  238. pointer-events: auto;
  239. }
  240. /* visual tweaks */
  241. .leaflet-container {
  242. background: #ddd;
  243. outline: 0;
  244. }
  245. .leaflet-container a {
  246. color: #0078A8;
  247. }
  248. .leaflet-container a.leaflet-active {
  249. outline: 2px solid orange;
  250. }
  251. .leaflet-zoom-box {
  252. border: 2px dotted #38f;
  253. background: rgba(255, 255, 255, 0.5);
  254. }
  255. /* general typography */
  256. .leaflet-container {
  257. font: 12px/1.5 "Helvetica Neue", Arial, Helvetica, sans-serif;
  258. }
  259. /* general toolbar styles */
  260. .leaflet-bar {
  261. box-shadow: 0 1px 5px rgba(0, 0, 0, 0.65);
  262. border-radius: 4px;
  263. }
  264. .leaflet-bar a,
  265. .leaflet-bar a:hover {
  266. background-color: #fff;
  267. border-bottom: 1px solid #ccc;
  268. width: 26px;
  269. height: 26px;
  270. line-height: 26px;
  271. display: block;
  272. text-align: center;
  273. text-decoration: none;
  274. color: black;
  275. }
  276. .leaflet-bar a,
  277. .leaflet-control-layers-toggle {
  278. background-position: 50% 50%;
  279. background-repeat: no-repeat;
  280. display: block;
  281. }
  282. .leaflet-bar a:hover {
  283. background-color: #f4f4f4;
  284. }
  285. .leaflet-bar a:first-child {
  286. border-top-left-radius: 4px;
  287. border-top-right-radius: 4px;
  288. }
  289. .leaflet-bar a:last-child {
  290. border-bottom-left-radius: 4px;
  291. border-bottom-right-radius: 4px;
  292. border-bottom: none;
  293. }
  294. .leaflet-bar a.leaflet-disabled {
  295. cursor: default;
  296. background-color: #f4f4f4;
  297. color: #bbb;
  298. }
  299. .leaflet-touch .leaflet-bar a {
  300. width: 30px;
  301. height: 30px;
  302. line-height: 30px;
  303. }
  304. .leaflet-touch .leaflet-bar a:first-child {
  305. border-top-left-radius: 2px;
  306. border-top-right-radius: 2px;
  307. }
  308. .leaflet-touch .leaflet-bar a:last-child {
  309. border-bottom-left-radius: 2px;
  310. border-bottom-right-radius: 2px;
  311. }
  312. /* zoom control */
  313. .leaflet-control-zoom-in,
  314. .leaflet-control-zoom-out {
  315. font: bold 18px 'Lucida Console', Monaco, monospace;
  316. text-indent: 1px;
  317. }
  318. .leaflet-touch .leaflet-control-zoom-in, .leaflet-touch .leaflet-control-zoom-out {
  319. font-size: 22px;
  320. }
  321. /* layers control */
  322. .leaflet-control-layers {
  323. box-shadow: 0 1px 5px rgba(0, 0, 0, 0.4);
  324. background: #fff;
  325. border-radius: 5px;
  326. }
  327. .leaflet-control-layers-toggle {
  328. background-image: url(images/layers.png);
  329. width: 36px;
  330. height: 36px;
  331. }
  332. .leaflet-retina .leaflet-control-layers-toggle {
  333. background-image: url(images/layers-2x.png);
  334. background-size: 26px 26px;
  335. }
  336. .leaflet-touch .leaflet-control-layers-toggle {
  337. width: 44px;
  338. height: 44px;
  339. }
  340. .leaflet-control-layers .leaflet-control-layers-list,
  341. .leaflet-control-layers-expanded .leaflet-control-layers-toggle {
  342. display: none;
  343. }
  344. .leaflet-control-layers-expanded .leaflet-control-layers-list {
  345. display: block;
  346. position: relative;
  347. }
  348. .leaflet-control-layers-expanded {
  349. padding: 6px 10px 6px 6px;
  350. color: #333;
  351. background: #fff;
  352. }
  353. .leaflet-control-layers-scrollbar {
  354. overflow-y: scroll;
  355. overflow-x: hidden;
  356. padding-right: 5px;
  357. }
  358. .leaflet-control-layers-selector {
  359. margin-top: 2px;
  360. position: relative;
  361. top: 1px;
  362. }
  363. .leaflet-control-layers label {
  364. display: block;
  365. }
  366. .leaflet-control-layers-separator {
  367. height: 0;
  368. border-top: 1px solid #ddd;
  369. margin: 5px -10px 5px -6px;
  370. }
  371. /* Default icon URLs */
  372. .leaflet-default-icon-path {
  373. background-image: url(images/marker-icon.png);
  374. }
  375. /* attribution and scale controls */
  376. .leaflet-container .leaflet-control-attribution {
  377. background: #fff;
  378. background: rgba(255, 255, 255, 0.7);
  379. margin: 0;
  380. }
  381. .leaflet-control-attribution,
  382. .leaflet-control-scale-line {
  383. padding: 0 5px;
  384. color: #333;
  385. }
  386. .leaflet-control-attribution a {
  387. text-decoration: none;
  388. }
  389. .leaflet-control-attribution a:hover {
  390. text-decoration: underline;
  391. }
  392. .leaflet-container .leaflet-control-attribution,
  393. .leaflet-container .leaflet-control-scale {
  394. font-size: 11px;
  395. }
  396. .leaflet-left .leaflet-control-scale {
  397. margin-left: 5px;
  398. }
  399. .leaflet-bottom .leaflet-control-scale {
  400. margin-bottom: 5px;
  401. }
  402. .leaflet-control-scale-line {
  403. border: 2px solid #777;
  404. border-top: none;
  405. line-height: 1.1;
  406. padding: 2px 5px 1px;
  407. font-size: 11px;
  408. white-space: nowrap;
  409. overflow: hidden;
  410. -moz-box-sizing: border-box;
  411. box-sizing: border-box;
  412. background: #fff;
  413. background: rgba(255, 255, 255, 0.5);
  414. }
  415. .leaflet-control-scale-line:not(:first-child) {
  416. border-top: 2px solid #777;
  417. border-bottom: none;
  418. margin-top: -2px;
  419. }
  420. .leaflet-control-scale-line:not(:first-child):not(:last-child) {
  421. border-bottom: 2px solid #777;
  422. }
  423. .leaflet-touch .leaflet-control-attribution,
  424. .leaflet-touch .leaflet-control-layers,
  425. .leaflet-touch .leaflet-bar {
  426. box-shadow: none;
  427. }
  428. .leaflet-touch .leaflet-control-layers,
  429. .leaflet-touch .leaflet-bar {
  430. border: 2px solid rgba(0, 0, 0, 0.2);
  431. background-clip: padding-box;
  432. }
  433. /* popup */
  434. .leaflet-popup {
  435. position: absolute;
  436. text-align: center;
  437. margin-bottom: 20px;
  438. }
  439. .leaflet-popup-content-wrapper {
  440. padding: 1px;
  441. text-align: left;
  442. border-radius: 12px;
  443. }
  444. .leaflet-popup-content {
  445. margin: 13px 19px;
  446. line-height: 1.4;
  447. }
  448. .leaflet-popup-content p {
  449. margin: 18px 0;
  450. }
  451. .leaflet-popup-tip-container {
  452. width: 40px;
  453. height: 20px;
  454. position: absolute;
  455. left: 50%;
  456. margin-left: -20px;
  457. overflow: hidden;
  458. pointer-events: none;
  459. }
  460. .leaflet-popup-tip {
  461. width: 17px;
  462. height: 17px;
  463. padding: 1px;
  464. margin: -10px auto 0;
  465. -webkit-transform: rotate(45deg);
  466. -moz-transform: rotate(45deg);
  467. -ms-transform: rotate(45deg);
  468. -o-transform: rotate(45deg);
  469. transform: rotate(45deg);
  470. }
  471. .leaflet-popup-content-wrapper,
  472. .leaflet-popup-tip {
  473. background: white;
  474. color: #333;
  475. box-shadow: 0 3px 14px rgba(0, 0, 0, 0.4);
  476. }
  477. .leaflet-container a.leaflet-popup-close-button {
  478. position: absolute;
  479. top: 0;
  480. right: 0;
  481. padding: 4px 4px 0 0;
  482. border: none;
  483. text-align: center;
  484. width: 18px;
  485. height: 14px;
  486. font: 16px/14px Tahoma, Verdana, sans-serif;
  487. color: #c3c3c3;
  488. text-decoration: none;
  489. font-weight: bold;
  490. background: transparent;
  491. }
  492. .leaflet-container a.leaflet-popup-close-button:hover {
  493. color: #999;
  494. }
  495. .leaflet-popup-scrolled {
  496. overflow: auto;
  497. border-bottom: 1px solid #ddd;
  498. border-top: 1px solid #ddd;
  499. }
  500. .leaflet-oldie .leaflet-popup-content-wrapper {
  501. zoom: 1;
  502. }
  503. .leaflet-oldie .leaflet-popup-tip {
  504. width: 24px;
  505. margin: 0 auto;
  506. -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";
  507. filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678);
  508. }
  509. .leaflet-oldie .leaflet-popup-tip-container {
  510. margin-top: -1px;
  511. }
  512. .leaflet-oldie .leaflet-control-zoom,
  513. .leaflet-oldie .leaflet-control-layers,
  514. .leaflet-oldie .leaflet-popup-content-wrapper,
  515. .leaflet-oldie .leaflet-popup-tip {
  516. border: 1px solid #999;
  517. }
  518. /* div icon */
  519. .leaflet-div-icon {
  520. background: #fff;
  521. border: 1px solid #666;
  522. }
  523. /* Tooltip */
  524. /* Base styles for the element that has a tooltip */
  525. .leaflet-tooltip {
  526. position: absolute;
  527. padding: 6px;
  528. background-color: #fff;
  529. border: 1px solid #fff;
  530. border-radius: 3px;
  531. color: #222;
  532. white-space: nowrap;
  533. -webkit-user-select: none;
  534. -moz-user-select: none;
  535. -ms-user-select: none;
  536. user-select: none;
  537. pointer-events: none;
  538. box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
  539. }
  540. .leaflet-tooltip.leaflet-clickable {
  541. cursor: pointer;
  542. pointer-events: auto;
  543. }
  544. .leaflet-tooltip-top:before,
  545. .leaflet-tooltip-bottom:before,
  546. .leaflet-tooltip-left:before,
  547. .leaflet-tooltip-right:before {
  548. position: absolute;
  549. pointer-events: none;
  550. border: 6px solid transparent;
  551. background: transparent;
  552. content: "";
  553. }
  554. /* Directions */
  555. .leaflet-tooltip-bottom {
  556. margin-top: 6px;
  557. }
  558. .leaflet-tooltip-top {
  559. margin-top: -6px;
  560. }
  561. .leaflet-tooltip-bottom:before,
  562. .leaflet-tooltip-top:before {
  563. left: 50%;
  564. margin-left: -6px;
  565. }
  566. .leaflet-tooltip-top:before {
  567. bottom: 0;
  568. margin-bottom: -12px;
  569. border-top-color: #fff;
  570. }
  571. .leaflet-tooltip-bottom:before {
  572. top: 0;
  573. margin-top: -12px;
  574. margin-left: -6px;
  575. border-bottom-color: #fff;
  576. }
  577. .leaflet-tooltip-left {
  578. margin-left: -6px;
  579. }
  580. .leaflet-tooltip-right {
  581. margin-left: 6px;
  582. }
  583. .leaflet-tooltip-left:before,
  584. .leaflet-tooltip-right:before {
  585. top: 50%;
  586. margin-top: -6px;
  587. }
  588. .leaflet-tooltip-left:before {
  589. right: 0;
  590. margin-right: -12px;
  591. border-left-color: #fff;
  592. }
  593. .leaflet-tooltip-right:before {
  594. left: 0;
  595. margin-left: -12px;
  596. border-right-color: #fff;
  597. }
  598. /*背景色闪烁*/
  599. .notify .heartbit {
  600. background-color: red;
  601. position: absolute;
  602. height: 28px;
  603. width: 28px;
  604. z-index: 10;
  605. -webkit-border-radius: 70px !important;
  606. -moz-border-radius: 70px !important;
  607. -ms-border-radius: 70px !important;
  608. -o-border-radius: 70px !important;
  609. border: none;
  610. box-shadow: 0px 0px 5px red;
  611. border-radius: 70px 70px 70px 70px !important;
  612. animation: heartbit 1s ease-out;
  613. -moz-animation: heartbit 1s ease-out;
  614. -moz-animation-iteration-count: infinite;
  615. -o-animation: heartbit 1s ease-out;
  616. -o-animation-iteration-count: infinite;
  617. -webkit-animation: heartbit 1s ease-out;
  618. -ms-animation: heartbit 1s ease-out;
  619. -webkit-animation-iteration-count: infinite;
  620. animation-iteration-count: infinite
  621. }
  622. @-moz-keyframes heartbit {
  623. 0% {
  624. -moz-transform: scale(0);
  625. opacity: 0
  626. }
  627. 25% {
  628. -moz-transform: scale(0.1);
  629. opacity: .1
  630. }
  631. 50% {
  632. -moz-transform: scale(0.5);
  633. opacity: .3
  634. }
  635. 75% {
  636. -moz-transform: scale(0.8);
  637. opacity: .5
  638. }
  639. 100% {
  640. -moz-transform: scale(1);
  641. opacity: 0
  642. }
  643. }
  644. @-webkit-keyframes heartbit {
  645. 0% {
  646. -webkit-transform: scale(0);
  647. opacity: 0
  648. }
  649. 25% {
  650. -webkit-transform: scale(0.1);
  651. opacity: .1
  652. }
  653. 50% {
  654. -webkit-transform: scale(0.5);
  655. opacity: .3
  656. }
  657. 75% {
  658. -webkit-transform: scale(0.8);
  659. opacity: .5
  660. }
  661. 100% {
  662. -webkit-transform: scale(1);
  663. opacity: 0
  664. }
  665. }
  666. @-ms-keyframes heartbit {
  667. 0% {
  668. -ms-transform: scale(0);
  669. opacity: 0
  670. }
  671. 25% {
  672. -ms-transform: scale(0.1);
  673. opacity: .1
  674. }
  675. 50% {
  676. -ms-transform: scale(0.5);
  677. opacity: .3
  678. }
  679. 75% {
  680. -ms-transform: scale(0.8);
  681. opacity: .5
  682. }
  683. 100% {
  684. -ms-transform: scale(1);
  685. opacity: 0
  686. }
  687. }