57 lines
980 B
CSS
57 lines
980 B
CSS
@import "tailwindcss";
|
|
@import "./theme.css";
|
|
@import './base.css';
|
|
|
|
@plugin "tailwindcss-primeui";
|
|
|
|
|
|
#app {
|
|
width: 100%;
|
|
margin: 0 auto;
|
|
font-weight: normal;
|
|
background-color: var(--primary-color);
|
|
}
|
|
|
|
body {
|
|
background-color: var(--primary-color);
|
|
}
|
|
|
|
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);*/
|
|
}
|
|
}
|
|
|
|
@media (min-width: 1024px) {
|
|
body {
|
|
display: flex;
|
|
place-items: center;
|
|
}
|
|
|
|
#app {
|
|
width: 100%;
|
|
height: 100%;
|
|
padding: 0 2rem;
|
|
}
|
|
}
|
|
|
|
.card {
|
|
display: flex;
|
|
flex-direction: column;
|
|
width: 100%;
|
|
height: fit-content;
|
|
justify-content: center;
|
|
justify-items: center;
|
|
align-items: center;
|
|
border-radius: var(--radius-4xl);
|
|
background-color: var(--color-white);
|
|
padding: calc(var(--spacing) * 2);
|
|
} |