* separated css/js/rule files to pak file (glorified zip) to reduce full rebuilds * implemented build cache * some frontend UI spiffing up
137 lines
2.2 KiB
CSS
137 lines
2.2 KiB
CSS
html, body { height: 100% }
|
|
|
|
div#root {
|
|
display: flex;
|
|
width: 100%;
|
|
height: 100%;
|
|
z-index: 0;
|
|
|
|
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;
|
|
}
|
|
|
|
div#main-header {
|
|
display: flex;
|
|
flex-direction: row;
|
|
min-height: 100px;
|
|
vertical-align: middle;
|
|
|
|
border-bottom: 0.125em solid rgb(192,192,192);
|
|
}
|
|
|
|
div#main-day-stats {
|
|
width: 100%;
|
|
margin-top: auto;
|
|
margin-bottom: auto;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
div#main-button-bar {
|
|
display: flex;
|
|
flex-direction: row;
|
|
min-height: 125px;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
div#main-log {
|
|
display: flex;
|
|
flex-direction: column-reverse;
|
|
}
|
|
|
|
div.log-line {
|
|
display: flex;
|
|
flex-direction: row;
|
|
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;
|
|
}
|
|
|
|
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);
|
|
}
|
|
|
|
button.main-bar {
|
|
width: 2.5em;
|
|
height: 2.5em;
|
|
background-color: rgba(0,0,0,0);
|
|
border: 1px solid black;
|
|
font-size: 2em;
|
|
} |