2024-12-24 23:37:14 +00:00
|
|
|
/* Base Styles for Child Pages */
|
2024-12-16 07:14:39 +00:00
|
|
|
html, body {
|
|
|
|
height: 100%;
|
|
|
|
margin: 0;
|
|
|
|
font-family: 'Georgia', serif;
|
|
|
|
background-color: #121212;
|
|
|
|
color: #f5f5f5;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
.container {
|
2024-12-24 23:37:14 +00:00
|
|
|
width: 90%;
|
|
|
|
max-width: 950px;
|
2024-12-16 07:14:39 +00:00
|
|
|
margin: auto;
|
2024-12-24 23:37:14 +00:00
|
|
|
padding: 2rem 1rem;
|
2024-12-17 05:20:42 +00:00
|
|
|
box-sizing: border-box;
|
2024-12-16 07:14:39 +00:00
|
|
|
}
|
|
|
|
|
2024-12-24 23:37:14 +00:00
|
|
|
.header {
|
|
|
|
text-align: center;
|
|
|
|
margin-bottom: 2rem;
|
2024-12-16 07:14:39 +00:00
|
|
|
}
|
|
|
|
|
2024-12-24 23:37:14 +00:00
|
|
|
.header h1 {
|
|
|
|
font-size: clamp(2rem, 5vw, 3rem);
|
|
|
|
color: #f5f5f5;
|
|
|
|
margin: 0.5rem 0;
|
2024-12-16 07:14:39 +00:00
|
|
|
}
|
|
|
|
|
2024-12-24 23:37:14 +00:00
|
|
|
.header p {
|
|
|
|
font-size: clamp(1rem, 1.5vw, 1.2rem);
|
2024-12-16 07:14:39 +00:00
|
|
|
color: #bbbbbb;
|
2024-12-24 23:37:14 +00:00
|
|
|
margin: 0.5rem 0;
|
2024-12-16 07:14:39 +00:00
|
|
|
}
|
|
|
|
|
2024-12-24 23:37:14 +00:00
|
|
|
.content {
|
|
|
|
line-height: 1.6;
|
|
|
|
font-size: clamp(1rem, 1.5vw, 1.2rem);
|
2024-12-16 07:14:39 +00:00
|
|
|
}
|
|
|
|
|
2024-12-24 23:37:14 +00:00
|
|
|
.content h2 {
|
|
|
|
font-size: clamp(1.5rem, 3vw, 2rem);
|
|
|
|
margin-top: 2rem;
|
2024-12-16 07:14:39 +00:00
|
|
|
color: #f5f5f5;
|
|
|
|
}
|
|
|
|
|
2024-12-24 23:37:14 +00:00
|
|
|
.content p {
|
|
|
|
margin: 1rem 0;
|
2024-12-16 07:14:39 +00:00
|
|
|
color: #d1d1d1;
|
|
|
|
}
|
2024-12-17 05:20:42 +00:00
|
|
|
|
2024-12-24 23:37:14 +00:00
|
|
|
.content a {
|
|
|
|
color: #f5f5f5;
|
|
|
|
text-decoration: underline;
|
|
|
|
transition: color 0.3s;
|
|
|
|
}
|
|
|
|
|
|
|
|
.content a:hover {
|
|
|
|
color: #d1d1d1;
|
|
|
|
}
|
2024-12-17 05:20:42 +00:00
|
|
|
|
2024-12-24 23:37:14 +00:00
|
|
|
.sidebar {
|
|
|
|
background-color: #1c1c1c;
|
|
|
|
padding: 1rem;
|
|
|
|
border-left: 4px solid #d1d1d1;
|
|
|
|
margin: 2rem 0;
|
2024-12-17 05:20:42 +00:00
|
|
|
}
|
|
|
|
|
2024-12-24 23:37:14 +00:00
|
|
|
.sidebar h3 {
|
|
|
|
font-size: clamp(1.2rem, 2vw, 1.5rem);
|
|
|
|
color: #f5f5f5;
|
|
|
|
}
|
|
|
|
|
|
|
|
.sidebar p {
|
|
|
|
font-size: clamp(0.9rem, 1.2vw, 1rem);
|
|
|
|
color: #bbbbbb;
|
|
|
|
}
|
|
|
|
|
|
|
|
.footer {
|
|
|
|
margin-top: 2rem;
|
|
|
|
text-align: center;
|
|
|
|
font-size: clamp(0.8rem, 1.2vw, 1rem);
|
|
|
|
color: #999999;
|
|
|
|
}
|
|
|
|
|
|
|
|
.footer a {
|
|
|
|
color: #f5f5f5;
|
|
|
|
text-decoration: none;
|
|
|
|
border-bottom: 1px solid #f5f5f5;
|
|
|
|
}
|
|
|
|
|
|
|
|
.footer a:hover {
|
|
|
|
color: #d1d1d1;
|
|
|
|
border-color: #d1d1d1;
|
2024-12-17 05:20:42 +00:00
|
|
|
}
|