what2watch/assets/ww.css

41 lines
513 B
CSS
Raw Normal View History

2023-10-22 20:35:41 +00:00
body {
background-color: darkgrey
}
2023-12-31 05:54:15 +00:00
table {
border-collapse: collapse;
width: 100%;
}
th {
background-color: ghostwhite;
2023-12-31 05:54:15 +00:00
}
th, td {
text-align: left;
padding: 8px;
}
tr:nth-child(even) {background-color: ghostwhite;}
2023-12-31 05:54:15 +00:00
2023-10-22 20:35:41 +00:00
#header {
text-align: end;
display: flex;
flex-direction: row;
justify-content: flex-end;
}
.warning {
background-color: goldenrod;
}
2023-12-31 05:54:15 +00:00
.watchtitle {
font-style: italic;
2023-10-22 20:35:41 +00:00
}
.header_logged_in {
display: flex;
flex-direction: column;
}