2025-03-21 12:39:43 +01:00
|
|
|
/* Variables */
|
|
|
|
|
:root {
|
|
|
|
|
--primary-color: #0D76EC;
|
|
|
|
|
--hover-color: #12437A;
|
|
|
|
|
--light-bg: #fff;
|
2026-02-22 15:22:32 +01:00
|
|
|
--light-bg-card: #f5f5f5;
|
2025-03-21 12:39:43 +01:00
|
|
|
--primary-color-dark: #4da3ff;
|
|
|
|
|
--hover-color-dark: #91c9ff;
|
2026-02-22 15:22:32 +01:00
|
|
|
--dark-bg: #14161e;
|
|
|
|
|
--dark-bg-card: #1c212d;
|
2025-03-21 12:39:43 +01:00
|
|
|
--dark-font-color: #eee;
|
2025-03-21 22:50:46 +01:00
|
|
|
--dark-nav-color: #ddd;
|
2025-03-21 12:39:43 +01:00
|
|
|
}
|
|
|
|
|
|
2025-03-21 11:57:28 +01:00
|
|
|
/* Main page with sticky footer */
|
2019-03-18 16:50:46 +01:00
|
|
|
html, body {
|
|
|
|
|
height: 100%;
|
2025-03-21 12:39:43 +01:00
|
|
|
background-color: var(--light-bg);
|
2019-03-18 16:50:46 +01:00
|
|
|
font-family: 'Source Sans Pro', sans-serif;
|
2025-03-21 12:39:43 +01:00
|
|
|
border-top: 3px solid var(--primary-color);
|
2026-02-22 15:22:32 +01:00
|
|
|
font-size: 18px;
|
2019-03-18 16:50:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#wrap {
|
2025-03-21 11:01:49 +01:00
|
|
|
padding-bottom: 50px;
|
2019-03-18 16:50:46 +01:00
|
|
|
min-height: 100%;
|
|
|
|
|
height: auto;
|
|
|
|
|
margin: 0 auto -65px;
|
2025-03-21 11:57:28 +01:00
|
|
|
|
|
|
|
|
// Avoid scrollbar jumps in centering
|
|
|
|
|
margin-left: calc(100vw - 100%);
|
2019-03-18 16:50:46 +01:00
|
|
|
}
|
|
|
|
|
|
2025-03-21 11:57:28 +01:00
|
|
|
/* Content containers */
|
2019-03-18 16:50:46 +01:00
|
|
|
.container {
|
|
|
|
|
width: auto;
|
|
|
|
|
max-width: 800px;
|
2025-03-21 11:57:28 +01:00
|
|
|
|
|
|
|
|
.text-muted {
|
|
|
|
|
margin: 20px 0;
|
|
|
|
|
}
|
|
|
|
|
|
2026-02-22 15:22:32 +01:00
|
|
|
h1 {
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
|
2025-03-21 11:57:28 +01:00
|
|
|
a {
|
2025-03-21 12:39:43 +01:00
|
|
|
color: var(--primary-color);
|
2025-03-21 11:57:28 +01:00
|
|
|
|
|
|
|
|
&:hover {
|
2025-03-21 12:39:43 +01:00
|
|
|
color: var(--hover-color);
|
2025-03-21 11:57:28 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&.label-rss {
|
|
|
|
|
background-color: rgba(242, 101, 34, 0.8);
|
|
|
|
|
color: #fff;
|
|
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
|
background-color: rgba(242, 101, 34, 1);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2026-02-22 15:22:32 +01:00
|
|
|
p {
|
|
|
|
|
margin-bottom: 20px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
h1, h2, h3, h4, h5, h6 {
|
|
|
|
|
span {
|
|
|
|
|
cursor: default;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2025-03-21 11:57:28 +01:00
|
|
|
h1 {
|
|
|
|
|
font-weight: bold;
|
2025-03-21 12:39:43 +01:00
|
|
|
color: var(--primary-color);
|
2025-03-21 11:57:28 +01:00
|
|
|
}
|
|
|
|
|
|
2026-02-22 15:22:32 +01:00
|
|
|
h2 {
|
|
|
|
|
a {
|
|
|
|
|
color: var(--primary-color);
|
2025-03-21 11:57:28 +01:00
|
|
|
|
2026-02-22 15:22:32 +01:00
|
|
|
&:hover {
|
|
|
|
|
color: var(--hover-color);
|
|
|
|
|
}
|
2025-03-21 11:57:28 +01:00
|
|
|
}
|
|
|
|
|
}
|
2019-03-18 16:50:46 +01:00
|
|
|
}
|
2025-03-21 11:57:28 +01:00
|
|
|
|
2026-02-14 10:25:47 +01:00
|
|
|
/* Labels */
|
|
|
|
|
.label {
|
|
|
|
|
&.label-success {
|
|
|
|
|
background-color: rgba(92, 139, 184, 0.6);
|
|
|
|
|
color: #fff;
|
|
|
|
|
|
|
|
|
|
&.label-lg {
|
|
|
|
|
font-size: 1em;
|
|
|
|
|
padding: 0.5em 1em;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
|
&:focus,
|
|
|
|
|
&.active {
|
|
|
|
|
background-color: rgba(92, 139, 184, 0.9);
|
|
|
|
|
color: #fff;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2025-03-21 11:57:28 +01:00
|
|
|
/* Images */
|
|
|
|
|
.container p img,
|
|
|
|
|
.img-responsive {
|
2019-03-18 16:50:46 +01:00
|
|
|
display: block;
|
|
|
|
|
height: auto;
|
|
|
|
|
margin: 2rem auto;
|
|
|
|
|
max-width: 100%;
|
|
|
|
|
}
|
2025-03-21 11:57:28 +01:00
|
|
|
|
|
|
|
|
/* Panels */
|
|
|
|
|
.panel {
|
2019-03-18 16:50:46 +01:00
|
|
|
border-style: none;
|
2025-03-21 11:57:28 +01:00
|
|
|
box-shadow: none;
|
|
|
|
|
-webkit-box-shadow: none;
|
|
|
|
|
|
|
|
|
|
&-body {
|
|
|
|
|
padding-top: -10px;
|
|
|
|
|
text-align: left;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&-default {
|
2026-02-14 11:04:54 +01:00
|
|
|
h2, h3, h4, h5 {
|
2025-03-21 11:57:28 +01:00
|
|
|
text-align: left;
|
|
|
|
|
}
|
|
|
|
|
|
2026-02-14 11:04:54 +01:00
|
|
|
h2 {
|
2026-02-22 15:22:32 +01:00
|
|
|
font-size: 1.25rem;
|
2025-03-21 11:57:28 +01:00
|
|
|
line-height: 24px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
h5 {
|
|
|
|
|
line-height: 30px;
|
2026-02-22 15:22:32 +01:00
|
|
|
font-size: 1rem;
|
2025-03-21 11:57:28 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
h6 {
|
2026-02-22 15:22:32 +01:00
|
|
|
font-size: 0.9rem;
|
2025-03-21 11:57:28 +01:00
|
|
|
}
|
|
|
|
|
}
|
2019-03-18 16:50:46 +01:00
|
|
|
}
|
2025-03-21 11:57:28 +01:00
|
|
|
|
|
|
|
|
/* Social */
|
2019-03-18 16:50:46 +01:00
|
|
|
.social-links {
|
2025-03-21 11:57:28 +01:00
|
|
|
display: flex;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
margin: 40px auto 0;
|
|
|
|
|
padding: 0;
|
2019-03-18 16:50:46 +01:00
|
|
|
width: 100%;
|
|
|
|
|
text-align: center;
|
|
|
|
|
animation: fade 1s ease 1s both;
|
2025-03-21 11:57:28 +01:00
|
|
|
|
|
|
|
|
li {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
padding: 0 5px;
|
|
|
|
|
text-align: center;
|
|
|
|
|
|
|
|
|
|
a {
|
|
|
|
|
font-size: 26px;
|
|
|
|
|
color: #000;
|
|
|
|
|
padding: 10px 10px 4px;
|
|
|
|
|
transition: all 0.4s ease;
|
|
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
|
color: #000;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
i {
|
|
|
|
|
transform: scale(0.8);
|
|
|
|
|
transition: transform 0.3s;
|
|
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
|
transform: scale(1);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2019-03-18 16:50:46 +01:00
|
|
|
}
|
2025-03-21 11:57:28 +01:00
|
|
|
|
|
|
|
|
/* Layout tweaks */
|
2019-03-18 16:50:46 +01:00
|
|
|
.avatar {
|
|
|
|
|
padding-top: 5%;
|
2025-03-21 11:57:28 +01:00
|
|
|
|
|
|
|
|
img {
|
|
|
|
|
max-height: 190px;
|
|
|
|
|
}
|
2019-03-18 16:50:46 +01:00
|
|
|
}
|
2025-03-21 11:57:28 +01:00
|
|
|
|
|
|
|
|
.blog-post {
|
2019-03-18 16:50:46 +01:00
|
|
|
padding-top: 15px;
|
|
|
|
|
}
|
2025-03-21 11:57:28 +01:00
|
|
|
|
|
|
|
|
.blog-title {
|
2019-03-18 16:50:46 +01:00
|
|
|
padding-top: 2px;
|
|
|
|
|
}
|
2025-03-21 11:57:28 +01:00
|
|
|
|
2019-03-18 16:50:46 +01:00
|
|
|
.label {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
margin-bottom: 5px;
|
|
|
|
|
}
|
2025-03-21 11:57:28 +01:00
|
|
|
|
2019-03-18 16:50:46 +01:00
|
|
|
.related-posts h4 {
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
2025-03-21 11:57:28 +01:00
|
|
|
|
2019-03-18 16:50:46 +01:00
|
|
|
.page-not-found {
|
|
|
|
|
padding-top: 20%;
|
|
|
|
|
}
|
2025-03-21 11:57:28 +01:00
|
|
|
|
2019-03-18 16:50:46 +01:00
|
|
|
.disqus {
|
|
|
|
|
padding-bottom: 15px;
|
|
|
|
|
}
|
2025-03-21 11:57:28 +01:00
|
|
|
|
|
|
|
|
/* Blog content */
|
|
|
|
|
.blogpost {
|
2019-03-18 16:50:46 +01:00
|
|
|
text-align: left;
|
|
|
|
|
line-height: 30px;
|
|
|
|
|
font-size: 18px;
|
2025-03-21 11:57:28 +01:00
|
|
|
|
|
|
|
|
.header-image {
|
2026-02-13 00:39:08 +01:00
|
|
|
margin-bottom: 0.5em;
|
2026-02-13 00:11:43 +01:00
|
|
|
|
2025-03-21 11:57:28 +01:00
|
|
|
img {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: auto;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
p {
|
|
|
|
|
opacity: 0.7;
|
|
|
|
|
font-size: 0.8em;
|
|
|
|
|
text-align: center;
|
|
|
|
|
line-height: 1em;
|
2026-02-14 10:25:47 +01:00
|
|
|
margin-top: .5em;
|
2026-02-13 00:11:43 +01:00
|
|
|
margin-bottom: 0;
|
2025-03-21 11:57:28 +01:00
|
|
|
}
|
|
|
|
|
}
|
2026-02-13 00:39:08 +01:00
|
|
|
|
|
|
|
|
.blog-links {
|
2026-02-14 10:25:47 +01:00
|
|
|
display: flex;
|
|
|
|
|
gap: 0.5rem;
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
margin-bottom: .5em;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
|
|
|
|
|
.label {
|
|
|
|
|
margin-bottom: 0;
|
|
|
|
|
}
|
2026-02-13 00:39:08 +01:00
|
|
|
}
|
2025-03-21 11:57:28 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Metadata */
|
|
|
|
|
.metadata-page {
|
|
|
|
|
font-size: 18px;
|
|
|
|
|
text-align: left;
|
|
|
|
|
margin: 3em 0 2em;
|
|
|
|
|
|
|
|
|
|
.row {
|
|
|
|
|
padding-bottom: 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.metadata-summary {
|
2026-02-22 15:22:32 +01:00
|
|
|
font-size: 0.8rem;
|
2025-03-21 11:57:28 +01:00
|
|
|
opacity: 0.7;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.blog-summary {
|
|
|
|
|
padding-bottom: 1em;
|
2025-03-21 23:28:49 +01:00
|
|
|
|
|
|
|
|
p:last-of-type {
|
|
|
|
|
display: inline;
|
|
|
|
|
}
|
2025-03-21 11:57:28 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Learn more link */
|
|
|
|
|
a.learn-more {
|
|
|
|
|
font-size: 1.8em;
|
|
|
|
|
line-height: 0.8em;
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
font-variant: small-caps;
|
|
|
|
|
text-transform: lowercase;
|
|
|
|
|
padding: 0 1em 0 0.3em;
|
|
|
|
|
position: absolute;
|
|
|
|
|
|
|
|
|
|
&::after {
|
|
|
|
|
position: absolute;
|
|
|
|
|
right: 0.3em;
|
|
|
|
|
content: " » ";
|
|
|
|
|
opacity: 0.8;
|
|
|
|
|
transition: all 150ms linear;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&:hover::after {
|
|
|
|
|
right: 0;
|
|
|
|
|
opacity: 1;
|
|
|
|
|
}
|
2019-03-18 16:50:46 +01:00
|
|
|
}
|
|
|
|
|
|
2025-03-21 12:39:43 +01:00
|
|
|
/* Pagination */
|
2026-02-22 15:22:32 +01:00
|
|
|
#pagination {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: center;
|
2025-03-21 12:39:43 +01:00
|
|
|
|
2026-02-22 15:22:32 +01:00
|
|
|
.pagination {
|
|
|
|
|
li.page-item:not(.active) {
|
|
|
|
|
a {
|
|
|
|
|
color: var(--primary-color);
|
|
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
|
color: var(--hover-color);
|
|
|
|
|
}
|
2025-03-21 12:39:43 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2025-03-21 11:57:28 +01:00
|
|
|
/* Footer */
|
2025-03-21 12:39:43 +01:00
|
|
|
footer {
|
|
|
|
|
border-bottom: 5px solid var(--primary-color);
|
2026-02-22 15:22:32 +01:00
|
|
|
text-align: center;
|
2019-03-18 16:50:46 +01:00
|
|
|
text-decoration: none !important;
|
2025-03-21 11:57:28 +01:00
|
|
|
|
|
|
|
|
.text-muted {
|
|
|
|
|
color: #6b6b6b;
|
|
|
|
|
}
|
2026-02-22 15:22:32 +01:00
|
|
|
|
|
|
|
|
p {
|
|
|
|
|
font-size: 0.8rem;
|
|
|
|
|
}
|
2019-03-18 16:50:46 +01:00
|
|
|
}
|
2025-03-21 11:57:28 +01:00
|
|
|
|
|
|
|
|
/* Site specific */
|
2026-02-22 15:22:32 +01:00
|
|
|
div#index-content {
|
|
|
|
|
text-align: center;
|
2019-03-18 16:50:46 +01:00
|
|
|
}
|
2025-03-21 11:57:28 +01:00
|
|
|
|
|
|
|
|
div.contact p {
|
|
|
|
|
line-height: 1.5em;
|
|
|
|
|
margin-bottom: 30px;
|
2019-03-18 16:50:46 +01:00
|
|
|
}
|
2025-03-21 11:01:49 +01:00
|
|
|
|
2026-02-22 15:22:32 +01:00
|
|
|
/* Recent posts */
|
|
|
|
|
#recent-posts {
|
|
|
|
|
padding: 0 1rem;
|
|
|
|
|
.card {
|
|
|
|
|
// Box
|
|
|
|
|
padding: 1rem;
|
|
|
|
|
background-color: var(--light-bg-card);
|
|
|
|
|
border-radius: 0 1rem;
|
|
|
|
|
margin-bottom: .3rem;
|
|
|
|
|
text-align: left;
|
|
|
|
|
|
|
|
|
|
.card-title {
|
|
|
|
|
font-size: 1.1rem;
|
|
|
|
|
margin-top: 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2025-03-21 11:57:28 +01:00
|
|
|
/* Helpers */
|
|
|
|
|
.vertical-align {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pre code {
|
|
|
|
|
white-space: pre;
|
|
|
|
|
}
|
2025-03-21 12:39:43 +01:00
|
|
|
|
|
|
|
|
/* Dark mode */
|
|
|
|
|
@media (prefers-color-scheme: dark) {
|
|
|
|
|
html, body {
|
|
|
|
|
background-color: var(--dark-bg);
|
|
|
|
|
color: var(--dark-font-color);
|
|
|
|
|
}
|
|
|
|
|
|
2025-03-21 22:50:46 +01:00
|
|
|
// Navbar
|
2025-03-21 12:39:43 +01:00
|
|
|
.luxbar-menu a,
|
|
|
|
|
.luxbar-item a {
|
2025-03-21 22:50:46 +01:00
|
|
|
color: var(--dark-nav-color);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.luxbar-menu-light .luxbar-hamburger span {
|
|
|
|
|
&, &::before, &::after {
|
|
|
|
|
background-color: var(--dark-nav-color);
|
|
|
|
|
}
|
2025-03-21 12:39:43 +01:00
|
|
|
}
|
|
|
|
|
|
2025-03-21 22:50:46 +01:00
|
|
|
// Links, headlines etc.
|
2025-03-21 12:39:43 +01:00
|
|
|
.container {
|
|
|
|
|
a {
|
|
|
|
|
color: var(--primary-color-dark);
|
|
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
|
color: var(--hover-color-dark);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
h1,
|
2026-02-14 11:04:54 +01:00
|
|
|
h2 a {
|
2025-03-21 12:39:43 +01:00
|
|
|
color: var(--primary-color-dark);
|
|
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
|
color: var(--hover-color-dark);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.panel {
|
|
|
|
|
background-color: var(--dark-bg);
|
|
|
|
|
color: #ddd;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.social-links li a {
|
|
|
|
|
color: #ddd;
|
|
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
|
color: #fff;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2026-02-22 15:22:32 +01:00
|
|
|
#recent-posts .card {
|
|
|
|
|
background-color: var(--dark-bg-card);
|
|
|
|
|
}
|
|
|
|
|
|
2025-03-21 12:39:43 +01:00
|
|
|
// Pagination
|
|
|
|
|
.pagination {
|
|
|
|
|
li.page-item {
|
|
|
|
|
a {
|
|
|
|
|
color: var(--primary-color-dark);
|
|
|
|
|
background-color: #222;
|
|
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
|
color: var(--hover-color-dark);
|
|
|
|
|
background-color: #000;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
footer {
|
|
|
|
|
.text-muted {
|
|
|
|
|
color: #a5a5a5 !important;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|