23 lines
No EOL
451 B
CSS
Executable file
23 lines
No EOL
451 B
CSS
Executable file
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;700&display=swap');
|
|
|
|
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
body {
|
|
@apply bg-white text-black text-sm;
|
|
|
|
font-family: 'Quicksand', sans-serif;
|
|
font-size: 16px;
|
|
}
|
|
|
|
:root {
|
|
--color-primary: #28527a;
|
|
--color-focus: theme('colors.gray.100');
|
|
--color-active: #70a7db;
|
|
--color-timeline: #F4E06D;
|
|
}
|
|
|
|
a {
|
|
color: var(--color-active)
|
|
} |