2022-01-13 17:07:44 +00:00
|
|
|
@tailwind base;
|
|
|
|
|
@tailwind components;
|
|
|
|
|
@tailwind utilities;
|
|
|
|
|
|
2022-02-18 08:56:42 +00:00
|
|
|
.theme-default {
|
|
|
|
|
--color-primary: 37 194 160;
|
|
|
|
|
--color-secondary: 48 56 70;
|
|
|
|
|
}
|
|
|
|
|
|
2022-01-08 15:11:13 +00:00
|
|
|
html,
|
|
|
|
|
body {
|
|
|
|
|
padding: 0;
|
|
|
|
|
margin: 0;
|
2022-02-24 04:16:49 +00:00
|
|
|
font-family: 'Manrope', sans-serif;
|
2022-02-18 12:52:24 +00:00
|
|
|
height: 100%;
|
|
|
|
|
}
|
|
|
|
|
#__next {
|
|
|
|
|
height: 100%;
|
2022-01-08 15:11:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
a {
|
|
|
|
|
color: inherit;
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
* {
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
}
|
2022-02-18 18:12:45 +00:00
|
|
|
|
|
|
|
|
@layer components {
|
|
|
|
|
.button {
|
2022-02-24 06:20:21 +00:00
|
|
|
@apply block px-4 py-2 font-semibold leading-8 text-white rounded-lg shadow-md bg-indigo-500 hover:bg-indigo-600 focus:outline-none focus:ring-4 focus:ring-indigo-300 focus:ring-opacity-100;
|
2022-02-18 18:12:45 +00:00
|
|
|
}
|
|
|
|
|
.input {
|
2022-02-24 06:20:21 +00:00
|
|
|
@apply border-2 border-solid border-[#8b8a8b] leading-10 px-4 py-2 rounded-md focus:border-[#5a5dbb] focus:outline-none;
|
2022-02-18 18:12:45 +00:00
|
|
|
}
|
|
|
|
|
}
|