119 lines
2.0 KiB
CSS
119 lines
2.0 KiB
CSS
|
|
/* Carlos Acosta's Workshop Style */
|
||
|
|
|
||
|
|
:root {
|
||
|
|
--bg-dark: #1a1a1a;
|
||
|
|
--text-light: #e8e8e8;
|
||
|
|
--accent-gold: #d4af37;
|
||
|
|
--wood-brown: #5c4033;
|
||
|
|
--concrete-gray: #808080;
|
||
|
|
}
|
||
|
|
|
||
|
|
* {
|
||
|
|
box-sizing: border-box;
|
||
|
|
margin: 0;
|
||
|
|
padding: 0;
|
||
|
|
}
|
||
|
|
|
||
|
|
body {
|
||
|
|
font-family: 'Georgia', serif;
|
||
|
|
background-color: var(--bg-dark);
|
||
|
|
color: var(--text-light);
|
||
|
|
line-height: 1.6;
|
||
|
|
max-width: 800px;
|
||
|
|
margin: 0 auto;
|
||
|
|
padding: 2rem;
|
||
|
|
}
|
||
|
|
|
||
|
|
.site-header {
|
||
|
|
text-align: center;
|
||
|
|
margin-bottom: 3rem;
|
||
|
|
border-bottom: 2px solid var(--accent-gold);
|
||
|
|
padding-bottom: 1.5rem;
|
||
|
|
}
|
||
|
|
|
||
|
|
.site-header h1 {
|
||
|
|
font-size: 2.5rem;
|
||
|
|
color: var(--accent-gold);
|
||
|
|
margin-bottom: 0.5rem;
|
||
|
|
}
|
||
|
|
|
||
|
|
.tagline {
|
||
|
|
font-style: italic;
|
||
|
|
color: var(--concrete-gray);
|
||
|
|
font-size: 1.1rem;
|
||
|
|
}
|
||
|
|
|
||
|
|
.story-content {
|
||
|
|
font-size: 1.1rem;
|
||
|
|
}
|
||
|
|
|
||
|
|
.story-content p {
|
||
|
|
margin-bottom: 1.5rem;
|
||
|
|
}
|
||
|
|
|
||
|
|
.story-content h2 {
|
||
|
|
color: var(--accent-gold);
|
||
|
|
margin-bottom: 1rem;
|
||
|
|
}
|
||
|
|
|
||
|
|
.story-content h3 {
|
||
|
|
color: var(--wood-brown);
|
||
|
|
margin-bottom: 0.5rem;
|
||
|
|
}
|
||
|
|
|
||
|
|
.story-card {
|
||
|
|
background: #2a2a2a;
|
||
|
|
padding: 1.5rem;
|
||
|
|
margin-bottom: 1.5rem;
|
||
|
|
border-radius: 4px;
|
||
|
|
border-left: 4px solid var(--accent-gold);
|
||
|
|
}
|
||
|
|
|
||
|
|
.story-link {
|
||
|
|
color: var(--accent-gold);
|
||
|
|
text-decoration: none;
|
||
|
|
font-weight: bold;
|
||
|
|
display: inline-block;
|
||
|
|
margin-top: 1rem;
|
||
|
|
}
|
||
|
|
|
||
|
|
.story-link:hover {
|
||
|
|
text-decoration: underline;
|
||
|
|
}
|
||
|
|
|
||
|
|
blockquote {
|
||
|
|
background: #2a2a2a;
|
||
|
|
padding: 1.5rem;
|
||
|
|
border-left: 4px solid var(--wood-brown);
|
||
|
|
margin: 2rem 0;
|
||
|
|
font-style: italic;
|
||
|
|
color: var(--concrete-gray);
|
||
|
|
}
|
||
|
|
|
||
|
|
.site-footer {
|
||
|
|
text-align: center;
|
||
|
|
margin-top: 3rem;
|
||
|
|
padding-top: 2rem;
|
||
|
|
border-top: 1px solid var(--concrete-gray);
|
||
|
|
color: var(--concrete-gray);
|
||
|
|
}
|
||
|
|
|
||
|
|
.site-footer a {
|
||
|
|
color: var(--accent-gold);
|
||
|
|
text-decoration: none;
|
||
|
|
}
|
||
|
|
|
||
|
|
.site-footer a:hover {
|
||
|
|
text-decoration: underline;
|
||
|
|
}
|
||
|
|
|
||
|
|
/* Responsive tweaks */
|
||
|
|
@media (max-width: 600px) {
|
||
|
|
body {
|
||
|
|
padding: 1rem;
|
||
|
|
}
|
||
|
|
|
||
|
|
.site-header h1 {
|
||
|
|
font-size: 2rem;
|
||
|
|
}
|
||
|
|
}
|