This commit is contained in:
xds
2025-10-27 15:12:00 +03:00
commit a198c703ef
47 changed files with 2141 additions and 0 deletions

57
src/assets/main.css Normal file
View File

@@ -0,0 +1,57 @@
@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);
}