Subversion Repositories eFlore/Applications.cel

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
3845 idir 1
@-webkit-keyframes leaflet-gestures-fadein {
2
  0% {
3
    opacity: 0; }
4
  100% {
5
    opacity: 1; } }
6
 
7
@keyframes leaflet-gestures-fadein {
8
  0% {
9
    opacity: 0; }
10
  100% {
11
    opacity: 1; } }
12
 
13
.leaflet-container:after {
14
  -webkit-animation: leaflet-gestures-fadein 0.8s backwards;
15
          animation: leaflet-gestures-fadein 0.8s backwards;
16
  color: #fff;
17
  font-family: "Roboto", Arial, sans-serif;
18
  font-size: 22px;
19
  -webkit-box-pack: center;
20
      -ms-flex-pack: center;
21
          justify-content: center;
22
  display: -webkit-box;
23
  display: -ms-flexbox;
24
  display: flex;
25
  -webkit-box-align: center;
26
      -ms-flex-align: center;
27
          align-items: center;
28
  padding: 15px;
29
  position: absolute;
30
  top: 0;
31
  left: 0;
32
  right: 0;
33
  bottom: 0;
34
  background: rgba(0, 0, 0, 0.5);
35
  z-index: 461;
36
  pointer-events: none; }
37
 
38
.leaflet-gesture-handling-touch-warning:after,
39
.leaflet-gesture-handling-scroll-warning:after {
40
  -webkit-animation: leaflet-gestures-fadein 0.8s forwards;
41
          animation: leaflet-gestures-fadein 0.8s forwards; }
42
 
43
.leaflet-gesture-handling-touch-warning:after {
44
  content: attr(data-gesture-handling-touch-content); }
45
 
46
.leaflet-gesture-handling-scroll-warning:after {
47
  content: attr(data-gesture-handling-scroll-content); }