-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
75 lines (63 loc) · 1.22 KB
/
styles.css
File metadata and controls
75 lines (63 loc) · 1.22 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
/* Custom scrollbar */
::-webkit-scrollbar {
width: 10px;
}
::-webkit-scrollbar-track {
background: rgba(255, 255, 255, 0.1);
border-radius: 5px;
}
::-webkit-scrollbar-thumb {
background: rgba(147, 51, 234, 0.6);
border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
background: rgba(147, 51, 234, 0.8);
}
/* Smooth transitions */
* {
transition: all 0.2s ease;
}
/* Code syntax highlighting */
#codeContent {
font-family: 'Courier New', monospace;
line-height: 1.6;
}
/* Animation for component appearance */
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
#previewArea > * {
animation: fadeInUp 0.5s ease;
}
/* Pulse animation for loading */
@keyframes pulse {
0%, 100% {
opacity: 1;
}
50% {
opacity: 0.5;
}
}
.animate-pulse {
animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
/* Glass morphism effect */
.backdrop-blur-lg {
backdrop-filter: blur(16px);
}
/* Responsive design improvements */
@media (max-width: 768px) {
h1 {
font-size: 2rem;
}
.grid {
grid-template-columns: 1fr;
}
}