Files
2021-05-07 20:00:26 +02:00

109 lines
2.3 KiB
CSS

html {
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
*, *:before, *:after {
-webkit-box-sizing: inherit;
box-sizing: inherit;
}
html, body {
height: 100vh;
width: 100vw;
}
body {
margin: 0;
position: relative;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
}
main {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
position: absolute;
bottom: 15vh;
}
.vehicle-menu {
background-color: rgba(0, 0, 0, 0.5);
list-style: none;
margin: 0;
padding: 0;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
padding: .5em;
border-radius: 3px;
color: white;
}
.vehicle-menu__item {
width: 8em;
padding: .5em;
border-radius: 3px;
}
.vehicle-menu__item:not(:last-child) {
margin-right: .5em;
}
.vehicle-menu__item:hover {
background-color: rgba(0, 0, 0, 0.125);
}
.vehicle-menu__icon {
max-width: 3em;
height: auto;
-ms-flex-item-align: center;
-ms-grid-row-align: center;
align-self: center;
}
.vehicle-menu__text {
text-align: center;
margin-top: .5em;
}
.flex--column {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
}
/*# sourceMappingURL=style.css.map */