Spaces:
Build error
Build error
Upload styles/globals.css with huggingface_hub
Browse files- styles/globals.css +49 -0
styles/globals.css
ADDED
|
@@ -0,0 +1,49 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
@tailwind base;
|
| 2 |
+
@tailwind components;
|
| 3 |
+
@tailwind utilities;
|
| 4 |
+
|
| 5 |
+
body {
|
| 6 |
+
background-color: #0e1621;
|
| 7 |
+
color: #f5f5f5;
|
| 8 |
+
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
|
| 9 |
+
overflow: hidden;
|
| 10 |
+
}
|
| 11 |
+
|
| 12 |
+
/* Custom Scrollbar for Telegram look */
|
| 13 |
+
::-webkit-scrollbar {
|
| 14 |
+
width: 6px;
|
| 15 |
+
}
|
| 16 |
+
::-webkit-scrollbar-track {
|
| 17 |
+
background: transparent;
|
| 18 |
+
}
|
| 19 |
+
::-webkit-scrollbar-thumb {
|
| 20 |
+
background: rgba(255, 255, 255, 0.1);
|
| 21 |
+
border-radius: 3px;
|
| 22 |
+
}
|
| 23 |
+
::-webkit-scrollbar-thumb:hover {
|
| 24 |
+
background: rgba(255, 255, 255, 0.2);
|
| 25 |
+
}
|
| 26 |
+
|
| 27 |
+
.message-bubble {
|
| 28 |
+
max-width: 80%;
|
| 29 |
+
word-wrap: break-word;
|
| 30 |
+
position: relative;
|
| 31 |
+
}
|
| 32 |
+
|
| 33 |
+
.message-bubble.incoming {
|
| 34 |
+
border-bottom-left-radius: 0;
|
| 35 |
+
}
|
| 36 |
+
|
| 37 |
+
.message-bubble.outgoing {
|
| 38 |
+
border-bottom-right-radius: 0;
|
| 39 |
+
}
|
| 40 |
+
|
| 41 |
+
.encrypted-icon {
|
| 42 |
+
animation: pulse 2s infinite;
|
| 43 |
+
}
|
| 44 |
+
|
| 45 |
+
@keyframes pulse {
|
| 46 |
+
0% { opacity: 0.7; }
|
| 47 |
+
50% { opacity: 1; }
|
| 48 |
+
100% { opacity: 0.7; }
|
| 49 |
+
}
|