blob: 35b55e068ab02dbb227ef952f43158e37028fa73 (
plain)
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
|
@import url("https://cdn.xeiaso.net/static/pkg/iosevka/family.css");
@import url("https://cdn.xeiaso.net/static/pkg/podkova/family.css");
@import "tailwindcss";
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
h1,
h2,
h3,
h4,
h5,
h6 {
@apply font-serif;
}
.xe-hero-image {
background-image: url("/static/img/hero.avif");
background-size: cover;
background-position: center;
}
.frosted-glass {
backdrop-filter: blur(10px);
background-color: rgba(255, 255, 255, 0.7);
border-radius: 12px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
}
|