44 lines
548 B
CSS
44 lines
548 B
CSS
img {
|
|
|
|
max-height: 39px;
|
|
margin-top: 14px;
|
|
}
|
|
|
|
td,
|
|
th {
|
|
border: 1px solid black;
|
|
height: 2ch;
|
|
min-width: 8ch;
|
|
}
|
|
|
|
.empty {
|
|
border: 0px white;
|
|
}
|
|
|
|
table {
|
|
border-collapse: collapse;
|
|
text-align: center;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
#titler {
|
|
display: flex;
|
|
height: fit-content;
|
|
border: 2px dotted red;
|
|
border-radius: 10px;
|
|
margin: 20px;
|
|
}
|
|
|
|
#titler * {
|
|
float: right;
|
|
width: fit-content;
|
|
}
|
|
|
|
input[type="number"] {
|
|
width: 75px;
|
|
}
|
|
|
|
a:hover {
|
|
background-color: yellow;
|
|
color: black;
|
|
} |