32 lines
418 B
CSS
32 lines
418 B
CSS
@import url("./common.css");
|
|
|
|
table {
|
|
table-layout: fixed;
|
|
|
|
& tbody tr:hover {
|
|
background-color: inherit;
|
|
}
|
|
|
|
& td,
|
|
& td:first-child {
|
|
border: 0px;
|
|
height: 33px;
|
|
text-shadow: 2px 2px #000;
|
|
|
|
&.finisher {
|
|
cursor: pointer;
|
|
|
|
&:hover {
|
|
background-color: var(--bg-light-color);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
#finisherDetails {
|
|
text-align: center;
|
|
font-size: 18px;
|
|
margin-top: 16px;
|
|
text-shadow: 2px 2px #000;
|
|
}
|