58 lines
904 B
CSS
58 lines
904 B
CSS
html {
|
|
font-family: -apple-system, BlinkMacSystemFont, "Avenir Next", Avenir,
|
|
"Nimbus Sans L", Roboto, "Noto Sans", "Segoe UI", Arial, Helvetica,
|
|
"Helvetica Neue", sans-serif;
|
|
}
|
|
|
|
body.role-site {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
body.role-site header {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
|
|
padding-block: 1rem;
|
|
}
|
|
|
|
body.role-site header h1 {
|
|
margin-block: 0;
|
|
}
|
|
|
|
body.role-site .client-area {
|
|
flex-grow: 1;
|
|
flex-shrink: 1;
|
|
|
|
display: flex;
|
|
flex-direction: row;
|
|
}
|
|
|
|
body.role-site nav.vert {
|
|
width: 150px;
|
|
}
|
|
|
|
body.role-site main {
|
|
flex-grow: 1;
|
|
flex-shrink: 1;
|
|
}
|
|
|
|
|
|
div.post {
|
|
border-bottom: solid thin grey;
|
|
}
|
|
|
|
|
|
|
|
form.post-form {
|
|
display: flex;
|
|
flex-direction: column;
|
|
height: 100%;
|
|
}
|
|
|
|
form.post-form textarea {
|
|
flex-grow: 1;
|
|
flex-shrink: 1;
|
|
} |