-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
33 lines (27 loc) · 633 Bytes
/
styles.css
File metadata and controls
33 lines (27 loc) · 633 Bytes
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
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap");
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
:root {
color-scheme: light;
}
body {
@apply font-sans text-slate-800 antialiased;
background-color: #ffffff;
min-height: 100vh;
}
::selection {
background: rgba(251, 146, 60, 0.25);
}
}
@layer base {
*:focus-visible {
@apply outline-2 outline-offset-2 outline-[#d85530];
}
}
@layer utilities {
.backdrop-card {
@apply border border-white/60 bg-white/70 shadow-xl shadow-slate-200/60 backdrop-blur;
}
}