73 lines
1.4 KiB
CSS
73 lines
1.4 KiB
CSS
@import url("../node_modules/material-design-icons-iconfont/dist/material-design-icons.css");
|
|
@import url("../node_modules/vuetify/dist/vuetify.min.css");
|
|
@import url("../node_modules/leaflet/dist/leaflet.css");
|
|
@import url("photo.css");
|
|
|
|
#app div.loading {
|
|
text-align: center;
|
|
margin: 50px 20px;
|
|
}
|
|
|
|
#busy-overlay {
|
|
display: none;
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
z-index: 100;
|
|
background-color: rgba(0, 0, 0, 0.2);
|
|
}
|
|
|
|
body {
|
|
background: rgb(250, 250, 250);
|
|
color: #333333;
|
|
font-family: Roboto, sans-serif;;
|
|
}
|
|
|
|
footer {
|
|
clear: both;
|
|
padding: 1rem 2rem;
|
|
}
|
|
|
|
main {
|
|
padding: 0;
|
|
margin: 0;
|
|
z-index: 1;
|
|
}
|
|
|
|
#app main a {
|
|
color: #00B8D4;
|
|
}
|
|
|
|
.v-badge__badge {
|
|
font-size: 12px;
|
|
height: 19px;
|
|
width: 19px;
|
|
right: -20px;
|
|
top: -8px;
|
|
}
|
|
|
|
#app-navigation {
|
|
z-index: 10;
|
|
}
|
|
|
|
/* Photo Gallery */
|
|
#app .pswp__caption__center {
|
|
text-align: center;
|
|
max-width: 80%;
|
|
margin: 0 auto;
|
|
font-size: 14px;
|
|
padding: 10px;
|
|
line-height: 20px;
|
|
color: #E0E0E0;
|
|
}
|
|
|
|
div.leaflet-container .leaflet-marker-photo {
|
|
box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12) !important;
|
|
background-color: rgba(0, 0, 0, 0.3);
|
|
border-color: #fff;
|
|
color: rgba(0, 0, 0, 0.87);
|
|
display: block;
|
|
border-radius: 50%;
|
|
}
|