67 lines
1.2 KiB
CSS
67 lines
1.2 KiB
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
@import url("https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap");
|
|
@import url("https://fonts.googleapis.com/css2?family=Long+Cang&display=swap");
|
|
|
|
.ubuntu-regular {
|
|
font-family: "Ubuntu", sans-serif;
|
|
font-weight: 400;
|
|
font-style: normal;
|
|
}
|
|
|
|
.ubuntu-bold {
|
|
font-family: "Ubuntu", sans-serif;
|
|
font-weight: 700;
|
|
font-style: normal;
|
|
}
|
|
|
|
.ubuntu-regular-italic {
|
|
font-family: "Ubuntu", sans-serif;
|
|
font-weight: 400;
|
|
font-style: italic;
|
|
}
|
|
|
|
.long-cang-regular {
|
|
font-family: "Long Cang", cursive;
|
|
font-weight: 400;
|
|
font-style: normal;
|
|
}
|
|
|
|
.gradient {
|
|
background: radial-gradient(circle at bottom, #2b2200 0%, #000 30%);
|
|
background-repeat: no-repeat;
|
|
}
|
|
|
|
.glow {
|
|
position: relative;
|
|
}
|
|
|
|
.glow::before {
|
|
position: absolute;
|
|
content: "banana";
|
|
background-color: #ffce00;
|
|
width: 0px;
|
|
height: 0px;
|
|
filter: blur(30px);
|
|
z-index: -1;
|
|
top: -6px;
|
|
left: -4px;
|
|
border-radius: 50%;
|
|
transition: all 0.5s;
|
|
}
|
|
|
|
.glow:hover::before {
|
|
position: absolute;
|
|
content: "banana";
|
|
background-color: #ffce00;
|
|
width: 40px;
|
|
height: 40px;
|
|
filter: blur(30px);
|
|
z-index: -1;
|
|
top: -6px;
|
|
left: -4px;
|
|
border-radius: 50%;
|
|
}
|