more adjustments
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
3c273fcd38
commit
ded961213d
1 changed files with 106 additions and 128 deletions
|
|
@ -1,187 +1,165 @@
|
||||||
/* =========================================
|
/* === Core Layout === */
|
||||||
Thergic Log - IDE Dark Theme Refinement
|
html, body {
|
||||||
Monokai / JetBrains-inspired palette
|
margin: 0;
|
||||||
========================================= */
|
padding: 0;
|
||||||
|
font-family: "JetBrains Mono", "Fira Code", monospace;
|
||||||
:root {
|
background-color: #1e1f22;
|
||||||
--bg-main: #1e1f22;
|
color: #d9d9d9;
|
||||||
--bg-surface: #2b2d31;
|
line-height: 1.6;
|
||||||
--text-main: #e8e8e3;
|
font-size: 17px;
|
||||||
--text-muted: #b6b6b0;
|
text-align: center;
|
||||||
--accent-green: #98c379;
|
|
||||||
--accent-blue: #61afef;
|
|
||||||
--accent-orange: #d19a66;
|
|
||||||
--accent-purple: #c678dd;
|
|
||||||
--accent-red: #e06c75;
|
|
||||||
--border-dim: #2f3237;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/*** Layout ***/
|
/* Center content area */
|
||||||
body {
|
body {
|
||||||
background-color: var(--bg-main);
|
max-width: 720px;
|
||||||
color: var(--text-main);
|
|
||||||
font-family: "Inter", "Segoe UI", sans-serif;
|
|
||||||
font-size: 18px;
|
|
||||||
line-height: 1.65;
|
|
||||||
margin: 40px auto;
|
|
||||||
max-width: 750px;
|
|
||||||
padding: 0 16px;
|
|
||||||
}
|
|
||||||
|
|
||||||
/*** Header logo and nav ***/
|
|
||||||
header img {
|
|
||||||
display: block;
|
|
||||||
margin: 0 auto;
|
margin: 0 auto;
|
||||||
max-width: 300px;
|
padding: 40px 20px;
|
||||||
|
text-align: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* === Logo === */
|
||||||
|
.logo {
|
||||||
|
text-align: center;
|
||||||
|
margin-top: 20px;
|
||||||
|
margin-bottom: 10px;
|
||||||
|
}
|
||||||
|
.logo img {
|
||||||
|
max-width: 280px;
|
||||||
height: auto;
|
height: auto;
|
||||||
border: none; /* ✅ remove unwanted border on transparent PNGs */
|
display: inline-block;
|
||||||
box-shadow: none;
|
|
||||||
background: none;
|
background: none;
|
||||||
|
border: none;
|
||||||
|
box-shadow: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
header nav {
|
/* === Top Navigation === */
|
||||||
text-align: center; /* ✅ recenter navigation */
|
.topbar {
|
||||||
margin-top: 0.5em;
|
text-align: center;
|
||||||
font-size: 0.95em;
|
margin-bottom: 30px;
|
||||||
|
font-size: 14px;
|
||||||
}
|
}
|
||||||
header nav a {
|
.topbar a {
|
||||||
color: var(--accent-blue);
|
color: #82aaff;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
margin: 0 6px;
|
transition: color 0.2s ease;
|
||||||
}
|
}
|
||||||
header nav a:hover {
|
.topbar a:hover {
|
||||||
color: var(--accent-green);
|
color: #ffb454;
|
||||||
|
}
|
||||||
|
.topbar .sep {
|
||||||
|
color: #555;
|
||||||
|
margin: 0 8px;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*** Headings ***/
|
/* === Headings === */
|
||||||
h1, h2, h3, h4, h5, h6 {
|
h1, h2, h3, h4 {
|
||||||
font-weight: 700;
|
color: #ffb454;
|
||||||
|
font-weight: 600;
|
||||||
margin-top: 2.2em;
|
margin-top: 2.2em;
|
||||||
margin-bottom: 0.8em;
|
margin-bottom: 0.6em;
|
||||||
line-height: 1.3;
|
|
||||||
}
|
}
|
||||||
h1 {
|
h1 {
|
||||||
color: var(--accent-green);
|
color: #6aff7f;
|
||||||
font-size: 2.1em;
|
text-align: center;
|
||||||
border-bottom: 1px solid var(--border-dim);
|
margin-top: 0.5em;
|
||||||
padding-bottom: 0.4em;
|
|
||||||
}
|
|
||||||
h2 {
|
|
||||||
color: var(--accent-blue);
|
|
||||||
font-size: 1.6em;
|
|
||||||
}
|
|
||||||
h3 {
|
|
||||||
color: var(--accent-orange);
|
|
||||||
font-size: 1.25em;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/*** Links ***/
|
/* === Paragraphs & Links === */
|
||||||
|
p {
|
||||||
|
margin: 0.8em 0;
|
||||||
|
}
|
||||||
a {
|
a {
|
||||||
color: var(--accent-blue);
|
color: #82aaff;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
transition: color 0.25s ease;
|
|
||||||
}
|
}
|
||||||
a:hover {
|
a:hover {
|
||||||
color: var(--accent-purple);
|
color: #ffb454;
|
||||||
|
text-decoration: underline;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*** Text elements ***/
|
/* === Inline Code === */
|
||||||
p, ul, ol {
|
|
||||||
margin: 0 0 1.2em;
|
|
||||||
}
|
|
||||||
strong { color: var(--accent-green); }
|
|
||||||
em { color: var(--accent-orange); }
|
|
||||||
del { opacity: 0.6; }
|
|
||||||
|
|
||||||
/*** Inline code ***/
|
|
||||||
code {
|
code {
|
||||||
font-family: "JetBrains Mono", "Fira Code", monospace;
|
|
||||||
font-size: 0.95em;
|
|
||||||
background: #2b2d31;
|
background: #2b2d31;
|
||||||
color: var(--accent-orange);
|
color: #ffd866;
|
||||||
padding: 2px 5px;
|
padding: 0.15em 0.35em;
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
|
font-size: 0.95em;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*** Code blocks ***/
|
/* === Code Blocks === */
|
||||||
pre {
|
pre.sourceCode {
|
||||||
background: var(--bg-surface);
|
background: #2b2d31;
|
||||||
|
border-radius: 6px;
|
||||||
padding: 1em;
|
padding: 1em;
|
||||||
border-radius: 8px;
|
|
||||||
overflow-x: auto;
|
overflow-x: auto;
|
||||||
margin: 1.5em 0;
|
margin: 1.2em 0;
|
||||||
border: 1px solid var(--border-dim);
|
|
||||||
box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.35);
|
|
||||||
}
|
|
||||||
pre code {
|
|
||||||
color: var(--text-main);
|
|
||||||
background: none;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/*** Syntax highlight – Monokai / JetBrains style ***/
|
/* Monokai-style syntax colors */
|
||||||
pre .kw { color: var(--accent-red); font-weight: 600; } /* keywords */
|
.sourceCode .kw { color: #ff6188; } /* keyword */
|
||||||
pre .fn { color: var(--accent-blue); } /* functions */
|
.sourceCode .co { color: #727072; } /* comment */
|
||||||
pre .str { color: var(--accent-green); } /* strings */
|
.sourceCode .st { color: #a9dc76; } /* string */
|
||||||
pre .num { color: #d19a66; } /* numbers */
|
.sourceCode .va { color: #78dce8; } /* variable */
|
||||||
pre .com { color: #7f848e; font-style: italic; } /* comments */
|
.sourceCode .fu { color: #ffd866; } /* function */
|
||||||
pre .cls { color: var(--accent-purple); } /* classes */
|
.sourceCode .op { color: #ffb454; } /* operator */
|
||||||
pre .var { color: #e5c07b; } /* variables */
|
.sourceCode .bu { color: #82aaff; } /* built-in */
|
||||||
|
|
||||||
/*** Blockquotes ***/
|
/* === Blockquotes === */
|
||||||
blockquote {
|
blockquote {
|
||||||
border-left: 3px solid var(--accent-blue);
|
border-left: 3px solid #82aaff;
|
||||||
background: rgba(97, 175, 239, 0.07);
|
padding-left: 1em;
|
||||||
padding: 0.8em 1em;
|
margin: 1.2em 0;
|
||||||
margin: 1.8em 0;
|
color: #c0c0c0;
|
||||||
font-style: italic;
|
background: #232428;
|
||||||
color: var(--text-muted);
|
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*** Tables ***/
|
/* === Lists === */
|
||||||
|
ul, ol {
|
||||||
|
padding-left: 1.6em;
|
||||||
|
}
|
||||||
|
ul li, ol li {
|
||||||
|
margin-bottom: 0.3em;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* === Tables === */
|
||||||
table {
|
table {
|
||||||
width: 100%;
|
|
||||||
border-collapse: collapse;
|
border-collapse: collapse;
|
||||||
margin: 2em 0;
|
width: 100%;
|
||||||
|
margin: 1.2em 0;
|
||||||
font-size: 0.95em;
|
font-size: 0.95em;
|
||||||
}
|
}
|
||||||
th, td {
|
th, td {
|
||||||
border: 1px solid var(--border-dim);
|
border: 1px solid #2b2d31;
|
||||||
padding: 0.6em 0.8em;
|
padding: 0.6em 0.8em;
|
||||||
}
|
}
|
||||||
th {
|
th {
|
||||||
background: rgba(97, 175, 239, 0.1);
|
background: #2b2d31;
|
||||||
color: var(--accent-blue);
|
color: #ffb454;
|
||||||
text-align: left;
|
text-align: left;
|
||||||
}
|
}
|
||||||
tr:nth-child(even) td {
|
tr:nth-child(even) td {
|
||||||
background: rgba(255, 255, 255, 0.02);
|
background: #232428;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*** HR separator ***/
|
/* === Horizontal Rules === */
|
||||||
hr {
|
hr {
|
||||||
border: none;
|
border: none;
|
||||||
height: 1px;
|
border-top: 1px solid #2b2d31;
|
||||||
background: var(--border-dim);
|
margin: 2em 0;
|
||||||
margin: 2.2em 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/*** Footer ***/
|
/* === Footer === */
|
||||||
footer {
|
.footer {
|
||||||
border-top: 1px solid var(--border-dim);
|
|
||||||
margin-top: 3em;
|
|
||||||
padding-top: 1em;
|
|
||||||
text-align: center;
|
text-align: center;
|
||||||
font-size: 0.85em;
|
font-size: 13px;
|
||||||
color: var(--text-muted);
|
color: #888;
|
||||||
|
margin-top: 3em;
|
||||||
}
|
}
|
||||||
|
.footer a {
|
||||||
/*** Transitions ***/
|
color: #82aaff;
|
||||||
a, code, pre, table, blockquote {
|
|
||||||
transition: all 0.25s ease;
|
|
||||||
}
|
}
|
||||||
|
.footer a:hover {
|
||||||
/*** Remove over-bright glows ***/
|
color: #ffb454;
|
||||||
pre:hover, blockquote:hover, table:hover {
|
|
||||||
box-shadow: 0 0 6px rgba(97, 175, 239, 0.15);
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue