style: fix lint issues in css
Signed-off-by: Vinayak Kulkarni <19776877+vinayakkulkarni@users.noreply.github.com>
This commit is contained in:
parent
03746a27e2
commit
3e3698a207
2 changed files with 478 additions and 467 deletions
|
|
@ -28,11 +28,11 @@ body{
|
|||
background-image: url(/images/header-map-1280px.png);
|
||||
}
|
||||
a {
|
||||
color: #499DCE;
|
||||
transition: color .2s;
|
||||
color: #499dce;
|
||||
transition: color 0.2s;
|
||||
}
|
||||
a:hover {
|
||||
color: #395D73;
|
||||
color: #395d73;
|
||||
}
|
||||
.title {
|
||||
font-weight: bold;
|
||||
|
|
@ -42,13 +42,13 @@ a:hover {
|
|||
position: relative;
|
||||
}
|
||||
.title.light:after {
|
||||
content: "light";
|
||||
content: 'light';
|
||||
display: block;
|
||||
position: absolute;
|
||||
left: 50%;
|
||||
bottom: -5px;
|
||||
color: #499DCE;
|
||||
font-size:.8em;
|
||||
color: #499dce;
|
||||
font-size: 0.8em;
|
||||
}
|
||||
section {
|
||||
margin: 15px auto;
|
||||
|
|
@ -120,14 +120,14 @@ section {
|
|||
padding: 0;
|
||||
overflow: hidden;
|
||||
border-radius: 4px;
|
||||
background-color: #499DCE;
|
||||
background-color: #499dce;
|
||||
background: linear-gradient(90deg, #5aaad8, #4a9ecf);
|
||||
color: #fff;
|
||||
text-decoration: none;
|
||||
font-weight: bold;
|
||||
}
|
||||
.btn:first-child:hover {
|
||||
background: #395D73;
|
||||
background: #395d73;
|
||||
}
|
||||
footer {
|
||||
width: 100%;
|
||||
|
|
@ -151,7 +151,8 @@ footer a {
|
|||
color: #787878;
|
||||
text-decoration: none;
|
||||
}
|
||||
.details h3, .identifier {
|
||||
.details h3,
|
||||
.identifier {
|
||||
max-width: 550px;
|
||||
word-break: break-all;
|
||||
}
|
||||
|
|
@ -169,7 +170,7 @@ footer a {
|
|||
margin: 25px 0 0 0;
|
||||
}
|
||||
.title.light:after {
|
||||
font-size:.6em;
|
||||
font-size: 0.6em;
|
||||
}
|
||||
.title img {
|
||||
width: 200px;
|
||||
|
|
|
|||
|
|
@ -99,17 +99,35 @@
|
|||
-moz-user-select: none;
|
||||
}
|
||||
|
||||
.leaflet-pane { z-index: 400; }
|
||||
.leaflet-pane {
|
||||
z-index: 400;
|
||||
}
|
||||
|
||||
.leaflet-tile-pane { z-index: 200; }
|
||||
.leaflet-overlay-pane { z-index: 400; }
|
||||
.leaflet-shadow-pane { z-index: 500; }
|
||||
.leaflet-marker-pane { z-index: 600; }
|
||||
.leaflet-tooltip-pane { z-index: 650; }
|
||||
.leaflet-popup-pane { z-index: 700; }
|
||||
.leaflet-tile-pane {
|
||||
z-index: 200;
|
||||
}
|
||||
.leaflet-overlay-pane {
|
||||
z-index: 400;
|
||||
}
|
||||
.leaflet-shadow-pane {
|
||||
z-index: 500;
|
||||
}
|
||||
.leaflet-marker-pane {
|
||||
z-index: 600;
|
||||
}
|
||||
.leaflet-tooltip-pane {
|
||||
z-index: 650;
|
||||
}
|
||||
.leaflet-popup-pane {
|
||||
z-index: 700;
|
||||
}
|
||||
|
||||
.leaflet-map-pane canvas { z-index: 100; }
|
||||
.leaflet-map-pane svg { z-index: 200; }
|
||||
.leaflet-map-pane canvas {
|
||||
z-index: 100;
|
||||
}
|
||||
.leaflet-map-pane svg {
|
||||
z-index: 200;
|
||||
}
|
||||
|
||||
.leaflet-vml-shape {
|
||||
width: 1px;
|
||||
|
|
@ -121,7 +139,6 @@
|
|||
position: absolute;
|
||||
}
|
||||
|
||||
|
||||
/* control positioning */
|
||||
|
||||
.leaflet-control {
|
||||
|
|
@ -168,7 +185,6 @@
|
|||
margin-right: 10px;
|
||||
}
|
||||
|
||||
|
||||
/* zoom and fade animations */
|
||||
|
||||
.leaflet-fade-anim .leaflet-popup {
|
||||
|
|
@ -205,7 +221,6 @@ svg.leaflet-zoom-animated {
|
|||
visibility: hidden;
|
||||
}
|
||||
|
||||
|
||||
/* cursors */
|
||||
|
||||
.leaflet-interactive {
|
||||
|
|
@ -257,23 +272,21 @@ svg.leaflet-image-layer.leaflet-interactive path {
|
|||
outline-offset: 1px;
|
||||
}
|
||||
.leaflet-container a {
|
||||
color: #0078A8;
|
||||
color: #0078a8;
|
||||
}
|
||||
.leaflet-zoom-box {
|
||||
border: 2px dotted #38f;
|
||||
background: rgba(255, 255, 255, 0.5);
|
||||
}
|
||||
|
||||
|
||||
/* general typography */
|
||||
.leaflet-container {
|
||||
font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
|
||||
font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;
|
||||
font-size: 12px;
|
||||
font-size: 0.75rem;
|
||||
line-height: 1.5;
|
||||
}
|
||||
|
||||
|
||||
/* general toolbar styles */
|
||||
|
||||
.leaflet-bar {
|
||||
|
|
@ -338,11 +351,11 @@ svg.leaflet-image-layer.leaflet-interactive path {
|
|||
text-indent: 1px;
|
||||
}
|
||||
|
||||
.leaflet-touch .leaflet-control-zoom-in, .leaflet-touch .leaflet-control-zoom-out {
|
||||
.leaflet-touch .leaflet-control-zoom-in,
|
||||
.leaflet-touch .leaflet-control-zoom-out {
|
||||
font-size: 22px;
|
||||
}
|
||||
|
||||
|
||||
/* layers control */
|
||||
|
||||
.leaflet-control-layers {
|
||||
|
|
@ -398,11 +411,11 @@ svg.leaflet-image-layer.leaflet-interactive path {
|
|||
}
|
||||
|
||||
/* Default icon URLs */
|
||||
.leaflet-default-icon-path { /* used only in path-guessing heuristic, see L.Icon.Default */
|
||||
.leaflet-default-icon-path {
|
||||
/* used only in path-guessing heuristic, see L.Icon.Default */
|
||||
background-image: url(images/marker-icon.png);
|
||||
}
|
||||
|
||||
|
||||
/* attribution and scale controls */
|
||||
|
||||
.leaflet-container .leaflet-control-attribution {
|
||||
|
|
@ -465,7 +478,6 @@ svg.leaflet-image-layer.leaflet-interactive path {
|
|||
background-clip: padding-box;
|
||||
}
|
||||
|
||||
|
||||
/* popup */
|
||||
|
||||
.leaflet-popup {
|
||||
|
|
@ -548,7 +560,7 @@ svg.leaflet-image-layer.leaflet-interactive path {
|
|||
width: 24px;
|
||||
margin: 0 auto;
|
||||
|
||||
-ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";
|
||||
-ms-filter: 'progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)';
|
||||
filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678);
|
||||
}
|
||||
|
||||
|
|
@ -559,7 +571,6 @@ svg.leaflet-image-layer.leaflet-interactive path {
|
|||
border: 1px solid #999;
|
||||
}
|
||||
|
||||
|
||||
/* div icon */
|
||||
|
||||
.leaflet-div-icon {
|
||||
|
|
@ -567,7 +578,6 @@ svg.leaflet-image-layer.leaflet-interactive path {
|
|||
border: 1px solid #666;
|
||||
}
|
||||
|
||||
|
||||
/* Tooltip */
|
||||
/* Base styles for the element that has a tooltip */
|
||||
.leaflet-tooltip {
|
||||
|
|
@ -597,7 +607,7 @@ svg.leaflet-image-layer.leaflet-interactive path {
|
|||
pointer-events: none;
|
||||
border: 6px solid transparent;
|
||||
background: transparent;
|
||||
content: "";
|
||||
content: '';
|
||||
}
|
||||
|
||||
/* Directions */
|
||||
|
|
|
|||
Loading…
Reference in a new issue