diff --git a/static/css/base.css b/static/css/base.css index c58c32a..3c72685 100644 --- a/static/css/base.css +++ b/static/css/base.css @@ -191,21 +191,41 @@ a.underline:hover:not(.btn) { /* Popups */ .popup { background: #111; - padding: 3vw; - border-radius: 2vw; - z-index: 50; + padding: 4vh 4vw; + border-radius: 3vh; + z-index: 1000; position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%); + -moz-box-shadow: 0.5vh 0.4vh 1vh 0.1vh #000; + -webkit-box-shadow: 0.5vh 0.4vh 1vh 0.1vh #000; + box-shadow: 0.5vh 0.4vh 1vh 0.1vh #000; } -.popup h1 { - display: inline-block; +.popup .topbar, .popup p { + margin: 0 0 3vh 0; +} +.popup .topbar { + display: flex; + justify-content: space-between; + margin: 0 0 3vh 0; } .popup p { - margin: 0; + margin: 0 0 3vh 0; } .popup .close { cursor: pointer; - float: right; +} +.popup .buttons { + display: flex; + justify-content: space-around; +} +.page-mask { + z-index: 950; + background: rgba(0, 0, 0, 0.5); + position: fixed; + top: 0; + right: 0; + bottom: 0; + left: 0; } diff --git a/views/map.html b/views/map.html index 7b580ae..4aefa45 100644 --- a/views/map.html +++ b/views/map.html @@ -45,11 +45,19 @@ {% block main %} {% if user and newuserurl %} +
{% endif %}