46 lines
735 B
CSS
46 lines
735 B
CSS
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;
|
|
} |