bl2tools/bl2tools/frontend/style.css
2022-04-21 13:27:51 -04:00

53 lines
606 B
CSS

summary, .button {
cursor: pointer;
}
table {
margin-top: 8px;
margin-bottom: 8px;
}
#saves {
display: flex;
flex-wrap: wrap;
}
#save-buttons {
margin-bottom: 8px;
}
.save {
background: var(--background) !important;
padding: 5px;
margin: 5px;
flex-grow: 1;
box-shadow: var(--shadow);
}
.save .name {
text-align: center;
font-weight: bold;
font-size: 24px;
color: var(--primary);
}
.save:not(:first-child) {
margin-top: 8px;
}
.save:not(:last-child) {
margin-bottom: 8px;
}
.save table {
width: 100%;
}
.save td {
background: var(--ui-background);
}
.save td {
padding: 5px;
}