Spaces:
Running
Running
File size: 1,915 Bytes
c72ea8a 8be19fd c72ea8a 8dbb3cf c72ea8a 8dbb3cf c72ea8a 8dbb3cf c72ea8a 8dbb3cf c72ea8a 8dbb3cf c72ea8a 8dbb3cf c72ea8a 5b47b4a c72ea8a 8be19fd c72ea8a 8be19fd c72ea8a 8be19fd c72ea8a 8be19fd c72ea8a 8be19fd c72ea8a | 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 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 | @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
:root {
--primary: #3b82f6;
--secondary: #10b981;
--dark: #1e293b;
--light: #f8fafc;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Inter', sans-serif;
}
body {
background-color: #f1f5f9;
color: #1e293b;
}
.post-card {
transition: all 0.3s ease;
border-bottom: 1px solid #e2e8f0;
}
.post-card:last-child {
border-bottom: none;
}
.post-card:hover {
background-color: #f8fafc;
}
.interaction-btn {
display: flex;
align-items: center;
gap: 6px;
padding: 6px 12px;
border-radius: 20px;
cursor: pointer;
transition: all 0.2s ease;
color: #64748b;
}
.interaction-btn:hover {
background-color: #e2e8f0;
color: #3b82f6;
}
.interaction-btn.active {
color: #ef4444;
}
.interaction-btn.active:hover {
background-color: #fee2e2;
}
/* Stories */
.story-ring {
background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}
.post-content {
line-height: 1.6;
}
/* Post form styling */
#post-form textarea {
resize: none;
}
/* Dropdown menu */
.group:hover .group-hover\:block {
display: block;
}
.user-avatar {
transition: transform 0.2s ease;
}
.user-avatar:hover {
transform: scale(1.05);
}
.trend-tag {
transition: all 0.2s ease;
}
.trend-tag:hover {
transform: scale(1.05);
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
/* Scrollbar styling */
::-webkit-scrollbar {
width: 8px;
}
::-webkit-scrollbar-track {
background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
background: #cbd5e1;
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background: #94a3b8;
}
/* Animation for new posts */
@keyframes fadeIn {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.fade-in {
animation: fadeIn 0.5s ease forwards;
} |