This commit is contained in:
asyncnomi 2023-01-03 23:35:10 +01:00
parent fcd2eb8eae
commit 44ddf8e7cf

View file

@ -176,20 +176,6 @@ button[type="submit"]:hover {
color: #ffffff;
}
.activity {
display: flex;
flex-direction: column;
margin: 30px 0;
border-bottom: 2px solid grey;
padding-bottom: 30px;
}
.activity>* {
display: flex;
flex-direction: row;
align-items: center;
}
.admin-textarea, .admin-input-date, #activityType {
background: none;
border: none;
@ -200,12 +186,26 @@ button[type="submit"]:hover {
margin-left: 10px;
}
.activity-btn {
.activity, .prank, .treasure {
display: flex;
flex-direction: column;
margin: 30px 0;
border-bottom: 2px solid grey;
padding-bottom: 30px;
}
.activity>*, .prank>*, .treasure>* {
display: flex;
flex-direction: row;
align-items: center;
}
.activity-btn, .prank-btn, .treasure-btn {
display: flex;
flex-direction: row;
}
.activity-btn>* {
.activity-btn>*, .prank-btn>*, .treasure-btn>* {
margin-left: auto;
border: 1px solid orange;
padding: 10px;
@ -214,7 +214,7 @@ button[type="submit"]:hover {
cursor: pointer;
}
.activity-btn>*:hover {
.activity-btn>*:hover, .prank-btn>*:hover, .treasure-btn>*:hover {
background-color: #faa5;
}