change camp list styling

This commit is contained in:
2021-04-19 22:01:33 +02:00
parent b25714ab6c
commit 867f3207a1
5 changed files with 262 additions and 54 deletions

View File

@@ -112,3 +112,72 @@ input.apply {
font-size: 20px;
font-weight: bold;
}
.container {
max-width: unset;
}
#camp-list {
width: 100%;
}
.camp-toggle {
width: 80%;
text-align: center;
padding: 5px 2px;
margin: 0px auto;
cursor: pointer;
}
.camp-toggle.no {
font-weight: normal;
border: 2px solid red;
background: white;
color: gray;
padding: 5px 2px;
}
.camp-toggle.yes {
border: 2px solid green;
background: lightgreen;
color: black;
font-weight: bold;
}
input.camp-toggle-input {
visibility: hidden;
}
.side_block {
float: right;
display: inline-block;
clear: right;
margin: 10px 0px 10px 11% !important;
padding: 5px;
font-size: 18px;
line-height: 1.4;
background-color: #e6e6e6;
}
@media (max-width: 1249px) {
.side_block {
text-align: center;
display: block;
width: 100%;
margin-top: -10px !important;
border-top: 1px solid lightgray;
}
.side_block:hover {
background-color: #e6e6e6;
}
.list .list_item {
border-left: 0;
}
.list .list_item:hover {
border-left: 0;
background-color: #e6e6e6;
}
}