robots and style
Some checks are pending
Deploy Arise to html branch / Deploy Arise (push) Waiting to run
Some checks are pending
Deploy Arise to html branch / Deploy Arise (push) Waiting to run
This commit is contained in:
parent
f21be57087
commit
70b79d517b
4 changed files with 141 additions and 76 deletions
|
|
@ -1,8 +1,7 @@
|
|||
|
||||
<!-- Page Footer -->
|
||||
<div class="footer">
|
||||
<p>Copyleft © 2023 <a href="https://spectrasecu.re">Spectra Secure</a> • All wrongs reserved</p>
|
||||
<p>Built with 💚 using <a href="https://github.com/spectrasecure/arise">Arise</a>, a cloud-native static site generator written in Bash.</p>
|
||||
<p>Copyleft © 2023 <a href="https://spectrasecu.re">Spectra Secure</a> • All wrongs reserved</p>
|
||||
<p>Built with <span style="color:#d6b676;">☙</span> using <a href="https://github.com/spectrasecure/arise">Arise</a>, a cloud-native static site generator written in Bash.</p>
|
||||
</div>
|
||||
<!-- End Page Footer -->
|
||||
|
||||
|
|
|
|||
|
|
@ -38,26 +38,70 @@
|
|||
<link rel="manifest" href="/config/favicon/site.webmanifest">
|
||||
<link rel="mask-icon" href="/config/favicon/safari-pinned-tab.svg" color="#5bbad5">
|
||||
<link rel="shortcut icon" href="/config/favicon/favicon.ico">
|
||||
<meta name="msapplication-TileColor" content="#00aba9">
|
||||
<meta name="msapplication-TileColor" content="#3b2e1f">
|
||||
<meta name="msapplication-config" content="/config/favicon/browserconfig.xml">
|
||||
<meta name="theme-color" content="#ffffff">
|
||||
<meta name="theme-color" content="#1e1b17">
|
||||
<!-- End Favicon -->
|
||||
|
||||
<!-- Styesheet+Logo -->
|
||||
<!-- Styles+Logo -->
|
||||
<style>
|
||||
html * {font-family:monospace,sans-serif;}
|
||||
body {background-color:#121619;margin:40px auto;max-width:650px;padding:0 10px;color:#65f85a;}
|
||||
a {color:#b8f1b4;}
|
||||
hr {color:#65f85a;}
|
||||
.topbar a {color:#65f85a;}
|
||||
html * {
|
||||
font-family: system-ui, sans-serif;
|
||||
}
|
||||
body {
|
||||
background-color: #1e1b17;
|
||||
color: #d2b48c;
|
||||
margin: 40px auto;
|
||||
max-width: 650px;
|
||||
padding: 0 10px;
|
||||
line-height: 1.6;
|
||||
}
|
||||
a {
|
||||
color: #d6b676;
|
||||
text-decoration: none;
|
||||
}
|
||||
a:hover {
|
||||
color: #f0d89a;
|
||||
}
|
||||
hr {
|
||||
border: none;
|
||||
border-top: 1px solid #6b5633;
|
||||
margin: 1.5em auto;
|
||||
max-width: 300px;
|
||||
}
|
||||
.logo {
|
||||
text-align: center;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
.logo img {
|
||||
max-height: 80px;
|
||||
opacity: 0.95;
|
||||
}
|
||||
.topbar {
|
||||
text-align: center;
|
||||
padding: 10px 0;
|
||||
border-top: 1px solid #6b5633;
|
||||
border-bottom: 1px solid #6b5633;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
.topbar a {
|
||||
color: #d2b48c;
|
||||
padding: 0 8px;
|
||||
}
|
||||
.topbar a:hover {
|
||||
color: #f0d89a;
|
||||
}
|
||||
</style>
|
||||
|
||||
<link rel="stylesheet" href="/config/main.css">
|
||||
<div class="logo"><a href="/"><img src="/config/logo.png" /></a></div>
|
||||
<div class="logo"><a href="/"><img src="/config/logo.png" alt="Site logo" /></a></div>
|
||||
<!-- End Styles+Logo -->
|
||||
|
||||
<!-- Navigation -->
|
||||
<nav class="topbar">
|
||||
<a href="/">Home</a> ⟛ <a href="/posts">Posts</a> ⟛ <a href="https://github.com/spectrasecure/arise">GitHub</a>
|
||||
<a href="/">Home</a> ⟛
|
||||
<a href="/posts">Posts</a> ⟛
|
||||
<a href="https://github.com/spectrasecure/arise">GitHub</a>
|
||||
</nav>
|
||||
<!-- End Navigation -->
|
||||
</head>
|
||||
|
|
|
|||
|
|
@ -10,8 +10,8 @@ body{
|
|||
max-width:650px;
|
||||
line-height:1.6;
|
||||
font-size:18px;
|
||||
color:#65f85a;
|
||||
background-color:#121619;
|
||||
color: #d2b48c; /* muted gold-beige text */
|
||||
background-color: #1e1b17; /* warm dark brown background */
|
||||
padding:0 10px;
|
||||
}
|
||||
/********************************/
|
||||
|
|
@ -31,7 +31,7 @@ img {
|
|||
}
|
||||
|
||||
code {
|
||||
background-color:#293137;
|
||||
background-color: #2a2420; /* slightly warmer dark */
|
||||
border-radius:16px;
|
||||
padding-left:30px;
|
||||
padding-right:30px;
|
||||
|
|
@ -39,7 +39,7 @@ code {
|
|||
|
||||
padding-top:1px;
|
||||
padding-bottom:1px;
|
||||
color:#65f85a;
|
||||
color: #d2b48c; /* same as body text */
|
||||
font-family:monospace;
|
||||
}
|
||||
|
||||
|
|
@ -53,7 +53,7 @@ pre {
|
|||
}
|
||||
|
||||
blockquote {
|
||||
border-left:1px solid #65f85a;
|
||||
border-left: 1px solid #6b5633;
|
||||
display:block;
|
||||
margin-top: 1em;
|
||||
margin-bottom: 1em;
|
||||
|
|
@ -61,18 +61,18 @@ blockquote {
|
|||
padding-left: 10px;
|
||||
margin-right: 40px;
|
||||
font-style: italic;
|
||||
color:#46ab3e;
|
||||
color: #bfa074; /* subtle, readable tone */
|
||||
}
|
||||
|
||||
hr {
|
||||
color:#65f85a;
|
||||
color:#6b5633;
|
||||
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;
|
||||
color:#6b5633;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
max-width: 300px;
|
||||
|
|
@ -80,7 +80,10 @@ hr {
|
|||
}
|
||||
|
||||
a {
|
||||
color:#b8f1b4
|
||||
color: #d6b676; /* muted gold */
|
||||
}
|
||||
a:hover {
|
||||
color: #f0d89a; /* lighter gold on hover */
|
||||
}
|
||||
|
||||
h1{
|
||||
|
|
@ -126,22 +129,41 @@ h2,h3{
|
|||
/* Navbar styling. */
|
||||
.topbar {
|
||||
padding-right:10px;
|
||||
border-top:1px solid #65f85a;
|
||||
border-bottom:1px solid #65f85a;
|
||||
border-top:1px solid #6b5633;
|
||||
border-bottom:1px solid #6b5633;
|
||||
margin-bottom:20px;
|
||||
text-align:center;
|
||||
}
|
||||
.topbar a {
|
||||
color:#65f85a;
|
||||
color:#6b5633;
|
||||
text-decoration:none;
|
||||
}
|
||||
|
||||
/* Site footer styling */
|
||||
/* Footer */
|
||||
.footer {
|
||||
border-top:2px solid #65f85a;
|
||||
font-size:12px;
|
||||
margin-top:120px;
|
||||
text-align:center;
|
||||
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;
|
||||
}
|
||||
|
||||
/********************************/
|
||||
|
|
@ -153,7 +175,7 @@ text-decoration:none;
|
|||
/* Arise Index Style */
|
||||
.arise-toc-td {
|
||||
border-width: 1px;
|
||||
border-color: #65f85a;
|
||||
border-color: #6b5633;
|
||||
border-top-style: solid;
|
||||
text-align: center;
|
||||
padding-right: 10px;
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
User-agent: *
|
||||
Disallow: https://ari.se.net/config/*
|
||||
Disallow: https://log.thergic.ar/config/*
|
||||
|
||||
Sitemap: https://ari.se.net/sitemap.xml
|
||||
Sitemap: https://log.thergic.ar/sitemap.xml
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue