File size: 561 Bytes
d092f57 | 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 | @tailwind base;
@tailwind components;
@tailwind utilities;
:root {
--primary: #2ca73c;
--accent: #4d7ea8;
--dark-700: #313131;
}
html,
body {
margin: 0;
padding: 0;
min-height: 100vh;
color: white;
@apply stroke-white fill-white bg-dark-1000;
}
.action {
@apply outline-none;
@apply hover:bg-dark-700 hover:drop-shadow-lg;
@apply active:bg-dark-600;
}
.action > * {
@apply outline-none;
}
.action:hover > * {
@apply bg-dark-700;
}
.action:active > * {
@apply bg-dark-600;
}
.hide-below-sm {
@apply hidden sm:inline-block;
}
|