24 lines
317 B
CSS
24 lines
317 B
CSS
body {
|
|
background-color: darkgrey
|
|
}
|
|
|
|
#header {
|
|
text-align: end;
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: flex-end;
|
|
|
|
}
|
|
|
|
.warning {
|
|
background-color: goldenrod;
|
|
}
|
|
|
|
.watchlist {
|
|
background-color: ghostwhite;
|
|
}
|
|
|
|
.header_logged_in {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|