This commit is contained in:
Jose Falanga 2025-10-13 17:50:00 -03:00
parent ba0fe2892a
commit e846184498
11 changed files with 392 additions and 213 deletions

View file

@ -1,166 +1,185 @@
/*** 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;
color:#65f85a;
background-color:#121619;
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;
/* === Core Layout === */
html, body {
margin: 0;
padding: 0;
font-family: "JetBrains Mono", "Fira Code", monospace;
background-color: #1e1f22;
color: #d9d9d9;
line-height: 1.6;
font-size: 17px;
text-align: center;
}
code {
background-color:#293137;
border-radius:16px;
padding-left:30px;
padding-right:30px;
line-height:2em;
padding-top:1px;
padding-bottom:1px;
color:#65f85a;
font-family:monospace;
/* Center content area */
body {
max-width: 720px;
margin: 0 auto;
padding: 40px 20px;
text-align: left;
overflow-x: hidden;
}
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;
/* === Logo === */
.logo {
text-align: center;
margin-top: 20px;
margin-bottom: 10px;
}
.logo img {
max-width: 280px;
height: auto;
display: inline-block;
background: none;
border: none;
box-shadow: none;
}
blockquote {
border-left:1px solid #65f85a;
display:block;
margin-top: 1em;
margin-bottom: 1em;
margin-left: 30px;
padding-left: 10px;
margin-right: 40px;
font-style: italic;
color:#46ab3e;
}
hr {
color:#65f85a;
margin-left: auto;
margin-right: auto;
max-width: 300px;
}
#endline { /* Special kind of <hr> for spacing out footnotes from the rest of a post */
color:#65f85a;
margin-left: auto;
margin-right: auto;
max-width: 300px;
margin-top: 80px;
}
a {
color:#b8f1b4
}
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. */
/* === Top Navigation === */
.topbar {
padding-right:10px;
border-top:1px solid #65f85a;
border-bottom:1px solid #65f85a;
margin-bottom:20px;
text-align:center;
text-align: center;
margin-bottom: 30px;
font-size: 14px;
}
.topbar a {
color:#65f85a;
text-decoration:none;
color: #82aaff;
text-decoration: none;
transition: color 0.2s ease;
}
.topbar a:hover {
color: #ffb454;
}
.topbar .sep {
color: #555;
margin: 0 8px;
}
/* Site footer styling */
.footer {
border-top:2px solid #65f85a;
font-size:12px;
margin-top:120px;
text-align:center;
/* === Headings === */
h1, h2, h3, h4 {
color: #82aaff; /* unified cyan accent */
font-weight: 600;
margin-top: 2.2em;
margin-bottom: 0.6em;
}
/********************************/
/********************************/
/*** Other misc garbage ***/
/* Arise Index Style */
.arise-toc-td {
border-width: 1px;
border-color: #65f85a;
border-top-style: solid;
h1 {
color: #78dce8; /* cool cyan for logo harmony */
text-align: center;
padding-right: 10px;
padding-bottom: 5px
margin-top: 0.5em;
}
.arise-toc-th {
padding-bottom: 20px;
border-bottom: 1px;
border-bottom-style: solid;
/* === Paragraphs & Links === */
p {
margin: 0.8em 0;
}
a {
color: #82aaff;
text-decoration: none;
}
a:hover {
color: #ffb454;
text-decoration: underline;
}
/* === Responsive Images === */
img {
max-width: 100%;
height: auto;
display: block;
margin: 1em auto;
border-radius: 6px;
}
figure img {
display: block;
margin: 0 auto;
}
figcaption {
font-size: 0.9em;
color: #aaa;
text-align: center;
margin-top: 0.3em;
}
/* === Inline Code === */
code {
background: #2b2d31;
color: #ffd866;
padding: 0.15em 0.35em;
border-radius: 4px;
font-size: 0.95em;
}
/* === Code Blocks === */
pre.sourceCode {
background: #2b2d31;
border-radius: 6px;
padding: 1em;
overflow-x: auto;
margin: 1.2em 0;
}
/* Monokai-style syntax colors */
.sourceCode .kw { color: #ff6188; } /* keyword */
.sourceCode .co { color: #727072; } /* comment */
.sourceCode .st { color: #a9dc76; } /* string */
.sourceCode .va { color: #78dce8; } /* variable */
.sourceCode .fu { color: #ffd866; } /* function */
.sourceCode .op { color: #ffb454; } /* operator */
.sourceCode .bu { color: #82aaff; } /* built-in */
/* === Blockquotes === */
blockquote {
border-left: 3px solid #82aaff;
padding-left: 1em;
margin: 1.2em 0;
color: #c0c0c0;
background: #232428;
border-radius: 4px;
}
/* === Lists === */
ul, ol {
padding-left: 1.6em;
}
ul li, ol li {
margin-bottom: 0.3em;
}
/* === Tables === */
table {
border-collapse: collapse;
width: 100%;
margin: 1.2em 0;
font-size: 0.95em;
}
th, td {
border: 1px solid #2b2d31;
padding: 0.6em 0.8em;
}
th {
background: #2b2d31;
color: #ffb454;
text-align: left;
}
tr:nth-child(even) td {
background: #232428;
}
/* === Horizontal Rules === */
hr {
border: none;
border-top: 1px solid #2b2d31;
margin: 2em 0;
}
/* === Footer === */
.footer {
text-align: center;
font-size: 13px;
color: #888;
margin-top: 3em;
}
.footer a {
color: #82aaff;
}
.footer a:hover {
color: #ffb454;
}