thefoldwithin-earth/public/styles.css

117 lines
1.8 KiB
CSS
Raw Normal View History

2025-11-08 14:39:49 -06:00
:root{
2025-11-08 15:25:41 -06:00
--bg:#0b0b0b;
--fg:#e6e3d7;
--accent:#e0b84b;
--topbar-h:52px;
2025-11-08 13:57:15 -06:00
}
2025-11-08 15:25:41 -06:00
html,body{
2025-11-08 14:39:49 -06:00
margin:0;
2025-11-08 15:25:41 -06:00
padding:0;
height:100%;
2025-11-08 14:39:49 -06:00
background:var(--bg);
2025-11-08 15:25:41 -06:00
color:var(--fg);
font-family:Inter,ui-sans-serif,system-ui;
2025-11-08 13:57:15 -06:00
}
2025-11-08 14:39:49 -06:00
.topbar{
2025-11-08 15:25:41 -06:00
position:fixed;
top:0;left:0;right:0;
2025-11-08 14:39:49 -06:00
height:var(--topbar-h);
2025-11-08 15:25:41 -06:00
display:flex;
align-items:center;
background:#111;
color:var(--accent);
z-index:1000;
border-bottom:1px solid #222;
padding:0 1rem;
}
#menuBtn{
font-size:1.4rem;
background:none;
border:0;
color:var(--accent);
2025-11-08 14:54:56 -06:00
cursor:pointer;
2025-11-08 15:25:41 -06:00
margin-right:1rem;
2025-11-08 14:39:49 -06:00
}
.primary-nav{
2025-11-08 15:25:41 -06:00
display:flex;
flex-wrap:wrap;
align-items:center;
gap:24px;
2025-11-08 13:57:15 -06:00
}
2025-11-08 15:25:41 -06:00
2025-11-08 14:39:49 -06:00
.primary-nav a{
2025-11-08 15:25:41 -06:00
color:var(--accent);
text-decoration:none;
font-weight:600;
2025-11-08 13:57:15 -06:00
}
2025-11-08 15:25:41 -06:00
.primary-nav a:hover{ text-shadow:0 0 5px var(--accent); }
2025-11-08 13:57:15 -06:00
2025-11-08 15:25:41 -06:00
#sidebar{
position:fixed;
top:var(--topbar-h);
left:0;
width:280px;
bottom:0;
2025-11-08 14:54:56 -06:00
overflow:auto;
2025-11-08 15:25:41 -06:00
background:#111;
border-right:1px solid #222;
transform:translateX(-100%);
transition:transform .3s;
z-index:900;
2025-11-08 13:57:15 -06:00
}
2025-11-08 15:25:41 -06:00
body.sidebar-open #sidebar{ transform:translateX(0); }
2025-11-08 13:57:15 -06:00
2025-11-08 15:25:41 -06:00
.sidebar-controls{
display:flex;
flex-direction:column;
gap:8px;
padding:1rem;
2025-11-08 13:36:05 -06:00
}
2025-11-08 15:25:41 -06:00
#postList{
list-style:none;
margin:0;
padding:0 1rem 2rem;
2025-11-08 12:59:46 -06:00
}
2025-11-08 13:36:05 -06:00
2025-11-08 15:25:41 -06:00
#postList li{
margin:.5rem 0;
2025-11-08 13:57:15 -06:00
}
2025-11-08 15:25:41 -06:00
#postList a{
color:var(--fg);
text-decoration:none;
2025-11-08 14:39:49 -06:00
}
2025-11-08 15:25:41 -06:00
#postList a:hover{ color:var(--accent); }
2025-11-08 13:57:15 -06:00
2025-11-08 15:25:41 -06:00
.content{
margin-top:var(--topbar-h);
margin-left:0;
transition:margin-left .3s;
min-height:calc(100vh - var(--topbar-h));
2025-11-08 14:39:49 -06:00
}
2025-11-08 15:25:41 -06:00
@media(min-width:1024px){
#sidebar{ transform:translateX(0); }
.content{ margin-left:280px; }
2025-11-08 14:39:49 -06:00
}
2025-11-08 13:57:15 -06:00
2025-11-08 15:25:41 -06:00
.viewer > *{
max-width:720px;
margin:auto;
padding:2rem 1rem;
}
2025-11-08 15:06:10 -06:00
2025-11-08 15:25:41 -06:00
/* iframe resets */
.viewer iframe{
width:100%;
border:0;
margin:0;
min-height:calc(100vh - var(--topbar-h) - 40px);
border-radius:12px;
2025-11-08 13:57:15 -06:00
}