57 lines
830 B
CSS
57 lines
830 B
CSS
|
|
@tailwind base;
|
||
|
|
@tailwind components;
|
||
|
|
@tailwind utilities;
|
||
|
|
|
||
|
|
@font-face {
|
||
|
|
font-family: 'Bebas Neue';
|
||
|
|
src: url('/fonts/BebasNeue.ttf');
|
||
|
|
}
|
||
|
|
|
||
|
|
@font-face {
|
||
|
|
font-family: 'Digital-7';
|
||
|
|
src: url('/fonts/digital-7.ttf');
|
||
|
|
}
|
||
|
|
|
||
|
|
:root {
|
||
|
|
--logo-kuning1: #f4b12c;
|
||
|
|
--logo-pink1: #ed3f5a;
|
||
|
|
}
|
||
|
|
|
||
|
|
html {
|
||
|
|
font-family: 'Poppins', sans-serif;
|
||
|
|
}
|
||
|
|
|
||
|
|
.font-bebas {
|
||
|
|
font-family: 'Bebas Neue', sans-serif;
|
||
|
|
}
|
||
|
|
|
||
|
|
.font-digital {
|
||
|
|
font-family: 'Digital-7', sans-serif;
|
||
|
|
}
|
||
|
|
|
||
|
|
.logout-pop {
|
||
|
|
visibility: hidden;
|
||
|
|
}
|
||
|
|
|
||
|
|
.logout:hover .logout-pop {
|
||
|
|
visibility: visible;
|
||
|
|
opacity: 1;
|
||
|
|
}
|
||
|
|
|
||
|
|
.bg-overlay {
|
||
|
|
position: fixed;
|
||
|
|
z-index: -10;
|
||
|
|
will-change: opacity;
|
||
|
|
transform: translate3d(0px, 0px, 0px);
|
||
|
|
transition: opacity 200ms ease 0ms;
|
||
|
|
width: 100vw;
|
||
|
|
height: 100vh;
|
||
|
|
background-color: rgba(0, 0, 0, 0.2);
|
||
|
|
left: 0;
|
||
|
|
top: 150px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.bg-overlay:hover {
|
||
|
|
visibility: hidden;
|
||
|
|
}
|