20 lines
388 B
CSS
20 lines
388 B
CSS
/* Write your global styles here, in PostCSS syntax */
|
|
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
@fontsource /marck-script;
|
|
|
|
.marck-script {
|
|
font-family: 'Marck Script';
|
|
}
|
|
|
|
.link-hover {
|
|
transition: all 0.3s;
|
|
}
|
|
|
|
.link-hover:hover {
|
|
background: linear-gradient(90deg, #009444, #39b54a, #8dc63f);
|
|
-webkit-background-clip: text;
|
|
-webkit-text-fill-color: transparent;
|
|
}
|