Übernachtungsangebot

This commit is contained in:
Julian
2022-02-12 21:00:56 +01:00
parent de5a039995
commit 01e9a263e6
4 changed files with 218 additions and 36 deletions

View File

@@ -1876,4 +1876,45 @@ form label {
opacity: 0;
}
.overnight {
display: table;
text-align: center;
margin-left: auto;
margin-right: auto;
margin-top: 40px;
margin-bottom: 40px;
}
.overnight > label {
display: table-cell;
vertical-align: middle;
padding-left: 20px;
}
.overnight > input {
display: table-cell;
padding: 0px;
height: 40px;
width: 40px;
-webkit-appearance: none;
-moz-appearance: none;
-o-appearance: none;
appearance: none;
border: 2px solid #34495E;
border-radius: 4px;
outline: none;
transition-duration: 0.3s;
background-color: #ffffff;
cursor: pointer;
}
.overnight > input:checked {
border: 2px solid #34495E;
background-color: #F14E95;
}
.overnight > input:active {
border: 3px solid #34495E;
}
/*# sourceMappingURL=style.css.map */