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
|
|
@ -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,8 +39,8 @@ code {
|
|||
|
||||
padding-top:1px;
|
||||
padding-bottom:1px;
|
||||
color:#65f85a;
|
||||
font-family:monospace;
|
||||
color: #d2b48c; /* same as body text */
|
||||
font-family:monospace;
|
||||
}
|
||||
|
||||
pre {
|
||||
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue