-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
45 lines (40 loc) · 910 Bytes
/
index.css
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
@tailwind base;
@tailwind components;
@tailwind utilities;
/* Chrome, Edge, and Safari */
*::-webkit-scrollbar {
width: 4px;
}
*::-webkit-scrollbar-track {
background: rbga(255, 255, 255, 0.3);
border-radius: 5px;
}
*::-webkit-scrollbar-thumb {
background-color: rgba(255, 255, 255, 0.4);
border-radius: 14px;
}
body {
width: 100%;
min-height: 100vh;
/* overflow-y: hidden; */
background: linear-gradient(
to bottom right,
rgba(0, 0, 0, 0.3),
rgba(255, 255, 255, 0)
),
url("./assets/SMBG.jpg");
background-attachment: fixed;
background-size: cover;
background-position: center;
}
@layer components {
.bg-blur-primary {
@apply backdrop-blur-lg bg-clip-padding backdrop-filter bg-opacity-10;
}
.bg-blur-secondary {
@apply backdrop-blur-xl bg-white bg-opacity-10;
}
.bg-blur-dark {
@apply bg-black bg-opacity-80 backdrop-blur-md;
}
}