27 lines
433 B
CSS
27 lines
433 B
CSS
|
@import "./base.css";
|
||
|
@import "./nprogress.css";
|
||
|
@tailwind base;
|
||
|
@tailwind components;
|
||
|
@tailwind utilities;
|
||
|
#app {
|
||
|
margin: 0 auto;
|
||
|
font-weight: normal;
|
||
|
}
|
||
|
|
||
|
a,
|
||
|
.green {
|
||
|
text-decoration: none;
|
||
|
color: hsla(160, 100%, 37%, 1);
|
||
|
transition: 0.4s;
|
||
|
padding: 3px;
|
||
|
}
|
||
|
|
||
|
@media (hover: hover) {
|
||
|
a:hover {
|
||
|
background-color: hsla(160, 100%, 37%, 0.2);
|
||
|
}
|
||
|
}
|
||
|
.card {
|
||
|
@apply shadow rounded-xl bg-white p-6;
|
||
|
}
|