-
Notifications
You must be signed in to change notification settings - Fork 21
/
style.css
54 lines (43 loc) · 1.07 KB
/
style.css
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
@tailwind base;
@tailwind components;
@tailwind utilities;
@keyframes fadeIn {
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
}
.animate-fade-in {
animation: fadeIn 0.6s ease-out forwards;
}
.channel-link {
@apply flex items-center space-x-3 p-4 rounded-lg hover:bg-gray-50 transition-all duration-200 border border-transparent hover:border-gray-200;
}
.channel-link::before {
content: '';
@apply w-2 h-2 bg-gray-300 rounded-full transition-all duration-200;
}
.channel-link:hover::before {
@apply bg-green-500;
}
.channel-link:hover {
@apply shadow-sm transform translate-x-1;
}
#searchInput::placeholder {
@apply text-gray-400;
}
.section-card {
@apply bg-white rounded-xl shadow-lg overflow-hidden;
transform: translateY(0);
transition: all 0.3s ease;
}
.section-card:hover {
transform: translateY(-5px);
@apply shadow-xl;
}
#themeToggle {
@apply touch-manipulation;
}
@media (hover: none) {
#themeToggle:active {
@apply bg-gray-200 dark:bg-gray-600;
}
}