40 lines
513 B
CSS
40 lines
513 B
CSS
body {
|
|
background-color: darkgrey
|
|
}
|
|
|
|
table {
|
|
border-collapse: collapse;
|
|
width: 100%;
|
|
}
|
|
|
|
th {
|
|
background-color: ghostwhite;
|
|
}
|
|
|
|
th, td {
|
|
text-align: left;
|
|
padding: 8px;
|
|
}
|
|
|
|
tr:nth-child(even) {background-color: ghostwhite;}
|
|
|
|
#header {
|
|
text-align: end;
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: flex-end;
|
|
|
|
}
|
|
|
|
.warning {
|
|
background-color: goldenrod;
|
|
}
|
|
|
|
.watchtitle {
|
|
font-style: italic;
|
|
}
|
|
|
|
.header_logged_in {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|