tracman-server/static/css/map.css

129 lines
2.2 KiB
CSS
Raw Normal View History

2016-03-31 17:06:21 -06:00
body {
color: #fff;
width: 100%;
height: 100%;
background: #000;}
.wrap {
position: absolute;
bottom: 0px;
width: 100%;
}
/* Alerts */
2016-03-31 17:06:21 -06:00
.centered.alert {
text-align:center;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
/* Map and streetview */
2016-03-31 17:06:21 -06:00
#map, #pano {position:relative;}
#pano {float:right;}
img#panoImg { width:100%; height:100%; }
#notset {display:none}
2016-03-31 17:06:21 -06:00
/* Tracman logo */
2016-03-31 17:06:21 -06:00
.map-logo {
margin-left: -75px;
background: rgba(0,0,0,.7);
padding: 0 10px 0 75px;
font-size: 2em;
}
.map-logo a { color: #fbc93d; }
/* Timestamp */
2016-03-31 17:06:21 -06:00
.tim {
color: #000;
font-size: 12px;
padding-left: 5px;
padding-right: 5px;
background-color: rgba(255,255,255,.7);
}
2017-03-18 08:22:26 -06:00
/* Signs */
.spd-sign, .alt-sign {
text-align: center;
2017-03-18 09:01:19 -06:00
padding: 2%;
border-radius: 3px;
margin: 3%;
} .spd-sign {
2016-03-31 17:06:21 -06:00
color: #000;
background-color: #FFF;
2017-03-18 08:22:26 -06:00
border: 2px solid #000;
2017-03-18 09:01:19 -06:00
} .alt-sign {
2016-03-31 17:06:21 -06:00
color: #FFF;
2017-03-18 08:22:26 -06:00
background-color: #009800;
2016-03-31 17:06:21 -06:00
border: 2px solid #FFF;
2017-03-18 08:22:26 -06:00
}
2017-03-18 09:01:19 -06:00
@media (min-width:400px) {
2017-03-18 08:23:42 -06:00
.spd, .alt {
height: 40px;
font-size: 32px;
}
.alt-unit, .spd-unit {
font-size: 12px;
}
.alt-label, .spd-label {
font-size: 18px;
height: 18px;
}
2017-03-18 09:01:19 -06:00
} @media (min-width:350px) and (max-width:400px) {
.spd, .alt {
height: 30px;
font-size: 28px;
}
.alt-unit, .spd-unit {
font-size: 10px;
}
.alt-label, .spd-label {
font-size: 14px;
height: 14px;
}
} @media (min-width:300px) and (max-width:350px) {
.spd, .alt {
height: 22px;
font-size: 20px;
}
.alt-unit, .spd-unit {
font-size: 9px;
}
.alt-label, .spd-label {
font-size: 11px;
height: 11px;
}
} @media (min-width:0px) and (max-width:300px) {
.spd, .alt {
height: 20px;
font-size: 18px;
}
.alt-unit, .spd-unit {
font-size: 8px;
}
.alt-label, .spd-label {
font-size: 9px;
height: 9px;
2017-03-18 08:23:42 -06:00
}
}
/* Control buttons */
#controls {
width: 100vw;
position: absolute;
bottom: 50px;
display: flex;
justify-content: space-around;
} #controls .btn {
z-index: 50;
background: #222;
height: 10vh;
padding: 2vh 0;
} #controls .btn:hover {
background: #333;
}
#controls .btn.set, #controls .btn.clear {
width: 30vw;
} #controls .btn.track {
width: 35vw;
}