<style>
/* Base Reset */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: ‘Segoe UI’, Tahoma, Geneva, Verdana, sans-serif;
background-color: #f4f6f8;
color: #333;
line-height: 1.6;
padding: 20px;
}
header {
background-color: #1e1e2f;
color: #fff;
padding: 20px;
text-align: center;
}
h1, h2, h3 {
margin-bottom: 10px;
}
.container {
max-width: 1200px;
margin: auto;
padding: 20px;
background-color: #fff;
border-radius: 8px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.social-wall {
display: flex;
flex-direction: column;
gap: 20px;
}
.post {
background-color: #ffffff;
border: 1px solid #ddd;
border-radius: 6px;
padding: 15px;
transition: box-shadow 0.3s ease;
}
.post:hover {
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.post-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 10px;
}
.post-content {
font-size: 1rem;
margin-bottom: 10px;
}
.post-footer {
display: flex;
justify-content: space-between;
font-size: 0.9rem;
color: #666;
}
.btn {
display: inline-block;
padding: 10px 15px;
background-color: #0073aa;
color: #fff;
text-decoration: none;
border-radius: 4px;
transition: background-color 0.3s ease;
}
.btn:hover {
background-color: #005f8d;
}
/* Calendar Styles */
.calendar {
margin-top: 30px;
border: 1px solid #ccc;
border-radius: 6px;
padding: 15px;
}
.calendar h3 {
margin-bottom: 10px;
}
/* Responsive Design */
@media (max-width: 768px) {
.container {
padding: 10px;
}
.post-content {
font-size: 0.95rem;
}
.btn {
padding: 8px 12px;
}
}
</style>
“`