32 lines
641 B
CSS
32 lines
641 B
CSS
|
|
@import "./base.css";
|
||
|
|
@import "./colors.css";
|
||
|
|
@import "./nprogress.css";
|
||
|
|
@import "./vant-theme.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;
|
||
|
|
}
|
||
|
|
.ltitle {
|
||
|
|
@apply mx-auto mt-2 w-64 border rounded-3xl bg-gradient-to-r from-blue-400 via-green-500 to-teal-500 py-2 text-center text-white font-bold;
|
||
|
|
}
|