main
|
Last change
on this file since acf690c was b62cefc, checked in by kikisrbinoska <srbinoskakristina07@…>, 4 months ago |
|
Added frontend and imporoved AI Suggestions service
|
-
Property mode
set to
100644
|
|
File size:
726 bytes
|
| Line | |
|---|
| 1 | @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600&display=swap');
|
|---|
| 2 | @tailwind base;
|
|---|
| 3 | @tailwind components;
|
|---|
| 4 | @tailwind utilities;
|
|---|
| 5 |
|
|---|
| 6 | * { box-sizing: border-box; }
|
|---|
| 7 | body {
|
|---|
| 8 | background-color: #0F172A;
|
|---|
| 9 | color: #F8FAFC;
|
|---|
| 10 | font-family: 'Inter', sans-serif;
|
|---|
| 11 | margin: 0;
|
|---|
| 12 | }
|
|---|
| 13 |
|
|---|
| 14 | #root {
|
|---|
| 15 | width: 100%;
|
|---|
| 16 | min-height: 100vh;
|
|---|
| 17 | }
|
|---|
| 18 |
|
|---|
| 19 | .glass {
|
|---|
| 20 | background: rgba(255,255,255,0.05);
|
|---|
| 21 | backdrop-filter: blur(12px);
|
|---|
| 22 | border: 1px solid rgba(255,255,255,0.1);
|
|---|
| 23 | }
|
|---|
| 24 |
|
|---|
| 25 | .glow-indigo {
|
|---|
| 26 | box-shadow: 0 0 20px rgba(79,70,229,0.25);
|
|---|
| 27 | }
|
|---|
| 28 |
|
|---|
| 29 | ::-webkit-scrollbar { width: 6px; }
|
|---|
| 30 | ::-webkit-scrollbar-track { background: #0F172A; }
|
|---|
| 31 | ::-webkit-scrollbar-thumb { background: #334155; border-radius: 3px; }
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.