Skip to content
Snippets Groups Projects
App.css 3.16 KiB
Newer Older
/*
  Do not touch classes with 'leaflet' in them!
  They're Leaflet's own classes
*/

L4168's avatar
L4168 committed
body {
  margin: 0;
  padding: 0;
L4168's avatar
L4168 committed
}

.hidden {
  display: none;
}

/* UserMap */
L4168's avatar
L4168 committed
  position: absolute;
  margin-top: 50px;
  height: 95vh;
  width: 100vw;
}

/* Header */
div.header {
  position: absolute;
  top: 0;
  height: 50px;
  width: 100%;
  background: white;
  z-index: 1000;
}

div.header button {
  transition-property: background-color;
  transition-duration: 0.5s;
  transition-timing-function: ease;
  background-color: #279fd9;
  color: white;
  font-weight: bold;
  border: 0px;
  padding: 0.5em;
  margin: 0em 1em;
  width: 10%;
  height: 100%;
  font-size: 18px;
  float: right;
}

div.header button:hover {
  background-color: darkblue;
  cursor: pointer;
}

/* Login&RegisterForm */
div.fade-main {
L4168's avatar
L4168 committed
  top: 0;
  z-index: 1000;
L4168's avatar
L4168 committed
  margin: auto;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.85);
}

div.sticky {
    position: fixed;
    top: 0px;
    right: 0px;
    height: 100px;
    width: 100px;
    margin-right: 150px;
}

.close {
    position: fixed;
    color: #f1f1f1;
L4168's avatar
L4168 committed
    font-size: 100px;
    font-weight: bold;
    transition: transform 0.4s ease-in-out;
    line-height: 70%;
}

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
L4168's avatar
L4168 committed
}

div.login {
  height: 60vh;
  width: 40vw;
  margin: auto;
  margin-top: 5%;
  padding-top: 25px;
}

div.login h1 {
  color: rgb(0, 200, 255);
  margin-bottom: 0.5em;
  font-size: 3em;
}

div.login h2 {
  color: rgb(255, 0, 0);
  margin-top: 2em;
  font-size: 1.5em;
}

div.login input {
  background: none;
  border: none;
  outline: none;
  width: 60%;
  padding: 12px 20px;
  margin-bottom: 1em;
  display: inline-block;
  box-sizing: border-box;
  font-size: 180%;
  color: white;
  border-bottom: 3px solid rgb(0, 200, 255);
}

div.login button {
  transition-property: background-color;
  transition-duration: 0.5s;
  transition-timing-function: ease;
  background-color: #279fd9;
  color: white;
  font-weight: bold;
  border: 0px;
  padding: 0.5em;
  margin: 0em 2em;
  width: 20%;
  font-size: 20px;
}

div.login button:hover {
  background-color: darkblue;
  cursor: pointer;
}
L4929's avatar
L4929 committed

/* Editing text button in the toolbar */
.leaflet-draw-toolbar .leaflet-draw-draw-textbox {
  background-image: url('icons/button-textbox.png');
  background-size: 30px 30px;
}

/* by default leaflet doesn't allow selecting content in tooltips; overriding */
.leaflet-tooltip {
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
  pointer-events: auto;
  cursor: auto;
}

.leaflet-tooltip-top:before,
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
  pointer-events: auto;
}

/* Editing editable tooltips */
.editable {
  cursor: text; /* the cursor icon doesn't change by default when hovering on top of the text; overriding */
  min-width: 120px;
  min-height: 18px;
}

[contenteditable=true]:empty:before {
  content: attr(placeholder);
  display: block; /* For Firefox */
  color: #777;
}