Continued faction rank system

This commit is contained in:
Lennart Kampshoff
2018-09-25 21:42:40 +02:00
parent f162f2323c
commit 6a2b010341
14 changed files with 130 additions and 33 deletions

View File

@@ -1,3 +1,46 @@
body
{
body {
font-family: "Roboto", sans-serif;
-webkit-font-smoothing: antialiased;
overflow: hidden;
}
.table {
background-color: white;
box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24);
width: 350px;
margin: auto;
}
.rankDnD {
background-color: lightgray;
}
.save-btn {
background-color: forestgreen;
color: white;
outline: 0;
padding: 5px 10px;
border: none;
}
.save-btn:active {
outline: 0;
}
#rank-table {
width: 100%;
}
#rank-table tr td {
border-bottom: 1px solid black;
padding: 5px 15px;
}
#rank-table tr:last-child td {
border-bottom: none;
}
#rank-table > tr:not(:first-child):hover {
background-color: lightgray;
}