18 lines
459 B
CSS
18 lines
459 B
CSS
@tailwind base;
|
|
|
|
@tailwind components;
|
|
|
|
@tailwind utilities;
|
|
|
|
|
|
@layer components {
|
|
.intermate-navbar {
|
|
@apply navbar bg-intermate-yellow shadow-md shadow-intermate-shadow;
|
|
}
|
|
.intermate-footer {
|
|
@apply footer p-10 bg-intermate-yellow text-white justify-around;
|
|
}
|
|
.intermate-navbutton-effect {
|
|
@apply block hover:text-intermate-yellow-hover transition-all hover:scale-110 ease-in-out;
|
|
}
|
|
} |