2025-09-08 17:38:31 -03:00
/*** Core page styles to set the primary colours and styles to be inherited by everything else ***/
/* Core Styling */
html * {
font-family : sans-serif ;
}
body {
margin : 40px auto ;
max-width : 650px ;
line-height : 1 . 6 ;
font-size : 18px ;
2025-10-13 18:13:55 -03:00
color : # d2b48c ; /* muted gold-beige text */
2025-10-13 18:20:52 -03:00
background-color : # 171511 ; /* warm dark brown background */
2025-09-08 17:38:31 -03:00
padding : 0 10px ;
}
/********************************/
/********************************/
/*** Post styling. This section is for defining markup classes to make it easier to write prettier posts. ***/
img {
max-width : 100 % ;
max-height : 100 % ;
margin-top : 20px ;
margin-bottom : 20px ;
border-radius : 16px ;
margin-left : auto ;
margin-right : auto ;
display : block ;
}
code {
2025-10-13 18:13:55 -03:00
background-color : # 2a2420 ; /* slightly warmer dark */
2025-09-08 17:38:31 -03:00
border-radius : 16px ;
padding-left : 30px ;
padding-right : 30px ;
line-height : 2em ;
padding-top : 1px ;
padding-bottom : 1px ;
2025-10-13 18:13:55 -03:00
color : # d2b48c ; /* same as body text */
font-family : monospace ;
2025-09-08 17:38:31 -03:00
}
pre {
overflow-x : auto ;
white-space : pre-wrap ;
white-space : -moz-pre-wrap ;
white-space : -pre-wrap ;
white-space : -o-pre-wrap ;
word-wrap : break-word ;
}
blockquote {
2025-10-13 18:13:55 -03:00
border-left : 1px solid # 6b5633 ;
2025-09-08 17:38:31 -03:00
display : block ;
margin-top : 1em ;
margin-bottom : 1em ;
margin-left : 30px ;
padding-left : 10px ;
margin-right : 40px ;
font-style : italic ;
2025-10-13 18:13:55 -03:00
color : # bfa074 ; /* subtle, readable tone */
2025-09-08 17:38:31 -03:00
}
hr {
2025-10-13 18:13:55 -03:00
color : # 6b5633 ;
2025-09-08 17:38:31 -03:00
margin-left : auto ;
margin-right : auto ;
max-width : 300px ;
}
# endline { /* Special kind of <hr> for spacing out footnotes from the rest of a post */
2025-10-13 18:13:55 -03:00
color : # 6b5633 ;
2025-09-08 17:38:31 -03:00
margin-left : auto ;
margin-right : auto ;
max-width : 300px ;
margin-top : 80px ;
}
a {
2025-10-13 18:20:52 -03:00
color : # dd9266 ; /* muted gold */
2025-10-13 18:13:55 -03:00
}
a : hover {
2025-10-13 18:20:52 -03:00
color : # f37d7d ; /* lighter gold on hover */
2025-09-08 17:38:31 -03:00
}
h1 {
line-height : 1 . 2
}
h2 , h3 {
padding-top : 24px ;
line-height : 1 . 2
}
/* Style for inline dates. These are configured via a separate include file in /config/content_header.html. See notes on Arise page creation for more details. */
. date {
padding-bottom : 0 ;
margin-bottom : 0 ;
font-size : 14px ;
}
@ media screen and ( max-width : 900px ) {
. date {
text-align : right ;
}
}
@ media screen and ( min-width : 901px ) {
. date {
float : right ;
margin-left : 30px ;
}
}
/********************************/
/********************************/
/*** Modular component styles. Includes styling for the headers, navigation controls, and footer. ***/
/* Site logo. Styled to responsively move to either left or be centred, depending if the page is being viewed on desktop or mobile respectively. */
. logo {
margin-bottom : 20px ;
text-align : center ;
}
/* Navbar styling. */
. topbar {
padding-right : 10px ;
2025-10-13 18:13:55 -03:00
border-top : 1px solid # 6b5633 ;
border-bottom : 1px solid # 6b5633 ;
2025-09-08 17:38:31 -03:00
margin-bottom : 20px ;
text-align : center ;
}
. topbar a {
2025-10-13 18:13:55 -03:00
color : # 6b5633 ;
2025-09-08 17:38:31 -03:00
text-decoration : none ;
}
/* Site footer styling */
2025-10-13 18:13:55 -03:00
/* Footer */
2025-09-08 17:38:31 -03:00
. footer {
2025-10-13 18:13:55 -03:00
border-top : 1px solid # 6b5633 ;
color : # a89064 ;
font-size : 13px ;
margin-top : 100px ;
text-align : center ;
padding-top : 15px ;
padding-bottom : 20px ;
line-height : 1 . 5 ;
}
. footer a {
color : # d6b676 ;
text-decoration : none ;
}
. footer a : hover {
color : # f0d89a ;
}
/* Optional: subtle fade effect for decorative symbol */
. footer span {
opacity : 0 . 8 ;
2025-09-08 17:38:31 -03:00
}
/********************************/
/********************************/
/*** Other misc garbage ***/
/* Arise Index Style */
. arise-toc-td {
border-width : 1px ;
2025-10-13 18:13:55 -03:00
border-color : # 6b5633 ;
2025-09-08 17:38:31 -03:00
border-top-style : solid ;
text-align : center ;
padding-right : 10px ;
padding-bottom : 5px
}
. arise-toc-th {
padding-bottom : 20px ;
border-bottom : 1px ;
border-bottom-style : solid ;
}