Skip to content

Commit 78a0c5e

Browse files
Enhance site styles with title and animation
Added styles for site title and description with fade-in animation.
1 parent c601a88 commit 78a0c5e

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

assets/css/main.scss

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,21 @@ search: false
77

88
@import "minimal-mistakes/skins/{{ site.minimal_mistakes_skin | default: 'default' }}"; // skin
99
@import "minimal-mistakes"; // main partials
10+
11+
.site-title {
12+
font-family: 'Courier New', monospace;
13+
color: #00ffff;
14+
text-shadow: 0 0 5px #00ffff;
15+
}
16+
17+
.site-description, .site-subtitle {
18+
font-size: 1.2rem;
19+
color: #ccc;
20+
text-align: center;
21+
animation: fadeIn 2s ease-in;
22+
}
23+
24+
@keyframes fadeIn {
25+
from { opacity: 0; }
26+
to { opacity: 1; }
27+
}

0 commit comments

Comments
 (0)