update with harmonozer
This commit is contained in:
parent
7bb8cc2051
commit
a2c9e3b111
3 changed files with 368 additions and 1 deletions
|
|
@ -213,3 +213,57 @@ body.sidebar-open #sidebar { transform: translateX(0); }
|
|||
margin: 0;
|
||||
display: block;
|
||||
}
|
||||
|
||||
/* HARMONIZER HEADER */
|
||||
.harmonizer-header {
|
||||
display: flex;
|
||||
justify-content: flex-end;
|
||||
align-items: center;
|
||||
padding: 0.5rem 1rem;
|
||||
background: rgba(255, 215, 0, 0.05);
|
||||
border-bottom: 1px solid #333;
|
||||
position: sticky;
|
||||
top: 0;
|
||||
z-index: 10;
|
||||
}
|
||||
|
||||
.popout-btn {
|
||||
background: none;
|
||||
border: 1px solid var(--accent);
|
||||
color: var(--accent);
|
||||
border-radius: 6px;
|
||||
padding: 0.25rem 0.75rem;
|
||||
font-size: 0.85rem;
|
||||
cursor: pointer;
|
||||
transition: background 0.2s ease, color 0.2s ease;
|
||||
}
|
||||
|
||||
.popout-btn:hover {
|
||||
background: var(--accent);
|
||||
color: var(--bg);
|
||||
}
|
||||
|
||||
/* HARMONIZED BODY CONTEXT */
|
||||
.harmonized {
|
||||
background: transparent;
|
||||
color: var(--fg);
|
||||
font-family: 'Inter', system-ui, sans-serif;
|
||||
max-width: 90ch;
|
||||
margin: auto;
|
||||
padding: 3rem 4vw;
|
||||
line-height: 1.7;
|
||||
}
|
||||
|
||||
.harmonized h1, .harmonized h2, .harmonized h3, .harmonized h4 {
|
||||
color: var(--accent);
|
||||
border-bottom: 1px solid #333;
|
||||
padding-bottom: 0.3em;
|
||||
margin-top: 2em;
|
||||
}
|
||||
|
||||
.harmonized img, .harmonized video, .harmonized iframe {
|
||||
display: block;
|
||||
margin: 2rem auto;
|
||||
max-width: 100%;
|
||||
height: auto;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue