savegaming / styles.css
ghostai1's picture
Rename style.css to styles.css
b96fa63 verified
body {
font-family: 'Inter', sans-serif;
background-color: #111827;
color: #f3f4f6;
}
.hero-bg {
background: linear-gradient(to right, #1f2937, #374151);
}
.accent-color {
color: #3b82f6;
}
.shadow-hover {
transition: box-shadow 0.3s ease;
}
.shadow-hover:hover {
box-shadow: 0 10px 15px rgba(0, 0, 0, 0.5);
}
.icon {
width: 1.5rem;
height: 1.5rem;
}
#cusdis_thread {
margin-top: 2rem;
padding: 1.5rem;
padding-bottom: 30px;
background-color: #1f2937;
border-radius: 0.5rem;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
min-height: 200px;
overflow: auto;
}
.mermaid {
text-align: center;
background-color: #1f2937;
padding: 1rem;
border-radius: 0.5rem;
margin-top: 1rem;
}
.colored-bullet::before {
content: '•';
font-size: 1.5rem;
margin-right: 0.5rem;
}
.blue-circle::before {
color: #3b82f6;
}
.green-circle::before {
color: #10b981;
}
.purple-circle::before {
color: #a855f7;
}
.yellow-circle::before {
color: #eab308;
}
.red-circle::before {
color: #ef4444;
}
.image-container {
max-width: 600px;
margin: 0 auto;
}
.community-image {
width: 100%;
height: auto;
border-radius: 0.5rem;
transition: transform 0.3s ease;
}
.community-image:hover {
transform: scale(1.05);
}
pre code {
font-family: 'Courier New', Courier, monospace;
font-size: 0.9rem;
line-height: 1.5;
color: #f3f4f6;
}