File size: 1,499 Bytes
1e92f2d |
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 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 |
@tailwind base;
@tailwind components;
@tailwind utilities;
:root {
--mainBlue:#2a2a72;
--lightBlue:#009ffd;
--mainWhite:#f3f3f3;
--mainDark:#232528;
--mainYellow:#ffa400;
}
.bg-slate-900{
background-color: #1F2937;
}
.bg-slate-800{
background-color: #2D3748;
}
.themes{
font-size:x-large;
}
.cardbg{
background-color: #2D3748;
}
.paddinglr{
width: 100%;
}
.h-full{
height: 100vh;
}
.h-fit{
height: fit-content;
}
.hover:hover{
color: #009ffd;
}
.menubar{
border:#979393 1px solid;
padding-left: 3px;
padding-right: 3px;
border-radius: 6px;
font-size: x-large;
}
.bg-slate-200{
background-color: #b1bac4;
}
.resmenu{
display: flex;
flex-direction: column;
gap: 5px;
justify-content: flex-start;
}
.w-100{
width: 100%;
}
.w-50{
width: 50%;
}
.menu{
display: flex;
justify-content: flex-end;
}
.mainmenu{
margin-left: 20px;
}
body{
font-family:"Anton", sans-serif !important;
color:var(--mainDark) !important;
}
.text-title{
font-family: 'Anton', cursive;
letter-spacing:0.3rem;
text-transform: uppercase;
}
.text-blue{
color:var(--mainBlue);
}
.text-bright{
color:var(--lightBlue);
}
.btn-black{
background:transparent;
text-transform:capitalize;
font-size:0.8rem;
color:var(--mainDark);
border-radius: 0;
border:0.1rem solid var(--mainDark);
}
.btn-black:hover{
background:var(--mainDark) !important;
color:var(--mainWhite) !important;
}
.cart-icon{
cursor:pointer;
font-size:1.2rem;
color:var(--mainYellow);
} |