7th-saga/web/static/7th-saga.css
2021-02-15 09:18:01 -08:00

45 lines
609 B
CSS

:root {
font-size: 14px;
}
.sortable {
display: flex;
align-items: center;
}
.sortable .sortable-links {
display: flex;
flex-direction: column;
font-size: 80%;
}
.sortable-links a:hover {
text-decoration: none;
}
.sortable-links a:nth-child(1) {
margin-bottom: -3px;
}
.sortable-links a:nth-child(2) {
margin-top: -3px;
}
.table thead th {
border-bottom: 1px solid var(--gray);
}
.list-horizontal {
margin: 0;
padding: 0;
list-style: none;
font-size: 80%;
}
.list-horizontal li {
display: inline-block;
}
.list-horizontal li:not(:last-child):after {
content: ",";
margin-right: 4px;
}