2023-01-25 19:44:39 -03:00

29 lines
459 B
CSS

@import './base.css';
@tailwind base;
@tailwind components;
@tailwind utilities;
#app {
width: 100%;
margin: 0 auto;
padding: 2rem;
height: fit-content;
min-height: 100vh;
background-image: url( './bg.svg' );
background-size: cover;
font-weight: normal;
}
a,
.green {
text-decoration: none;
color: hsla(160, 100%, 37%, 1);
transition: 0.4s;
}
@media (hover: hover) {
a:hover {
background-color: hsla(160, 100%, 37%, 0.2);
}
}