Files
seagull-game/static/css/seagull.css

112 lines
1.7 KiB
CSS
Raw Normal View History

html, body { height: 100% }
div#root {
display: flex;
width: 100%;
height: 100%;
2025-08-22 13:01:58 -07:00
z-index: 0;
2023-02-27 20:25:48 -08:00
font-family: sans-serif;
}
div#main-sidebar {
display: flex;
flex-direction: column;
max-width: 265px;
/*padding-left: 5px;*/
padding-right: 5px;
border-right: 0.125em solid rgb(192, 192, 192);
}
div#side-seagull-name {
text-align: center;
}
div#side-seagull-name-editor {
display: none;
}
div#main-content {
display: flex;
flex-direction: column;
width: 100%;
height: 100%;
padding-left: 5px;
}
2023-02-27 20:22:36 -08:00
div#main-day-stats {
min-height: 100px;
vertical-align: middle;
border-bottom: 0.125em solid rgb(192,192,192);
}
div#main-log {
display: flex;
flex-direction: column-reverse;
}
div.log-line {
display: flex;
flex-direction: row;
2023-02-27 20:22:36 -08:00
vertical-align: top;
width: 100%;
min-height: 1.5em;
padding-top: 5px;
}
div.log-line-alt {
display: flex;
flex-direction: row;
vertical-align: top;
width: 100%;
min-height: 1.5em;
padding-top: 5px;
background-color: rgb(192, 192, 192);
}
div.log-tick {
font-size: 0.75em;
margin-right: 0.2em;
}
div.log-msg {
margin-left: 0.2em;
2025-08-22 13:01:58 -07:00
}
div#charsheet {
display: flex;
flex-direction: row;
width: 100%;
background-color: rgb(240, 240, 240);
}
div#charsheet-leftside {
display: flex;
flex-direction: column;
}
div#charsheet-rightside {
display: flex;
flex-direction: column;
}
div.attr {
font-size: larger;
}
div#modal-background {
z-index: -10;
background-color: rgba(0, 0, 0, 168);
visibility: hidden;
}
div#modal {
width: 90%;
height: 90%;
border: 1.25em double rgba(192, 192, 192, 255);
background-color: rgba(255, 255, 255, 255);
}