81 lines
705 B
SCSS
Vendored
81 lines
705 B
SCSS
Vendored
h1,
|
|
h2,
|
|
h3,
|
|
h4 {
|
|
@apply font-bold;
|
|
}
|
|
|
|
h1 {
|
|
@apply text-4xl;
|
|
}
|
|
|
|
h2 {
|
|
@apply text-3xl;
|
|
}
|
|
|
|
h3 {
|
|
@apply text-2xl;
|
|
}
|
|
|
|
h4 {
|
|
@apply text-xl;
|
|
}
|
|
|
|
p {
|
|
@apply mb-2 mt-1;
|
|
text-indent: 2rem;
|
|
}
|
|
|
|
input,
|
|
textarea {
|
|
@apply border py-2 px-4 rounded;
|
|
}
|
|
|
|
textarea {
|
|
@apply ;
|
|
}
|
|
|
|
.text-shadow {
|
|
text-shadow: 1px 1px 2px #000;
|
|
}
|
|
|
|
.left-8 {
|
|
left: 2rem;
|
|
}
|
|
|
|
.left-80 {
|
|
left: 20rem;
|
|
}
|
|
|
|
.-bottom-12 {
|
|
bottom: -3rem;
|
|
}
|
|
|
|
.max-h-64 {
|
|
max-height: 16rem;
|
|
}
|
|
|
|
.max-w-64 {
|
|
max-width: 16rem;
|
|
}
|
|
|
|
.max-h-48 {
|
|
max-height: 12rem;
|
|
}
|
|
|
|
.max-w-48 {
|
|
max-width: 12rem;
|
|
}
|
|
|
|
.min-h-16 {
|
|
min-height: 4rem;
|
|
}
|
|
|
|
.indent {
|
|
text-indent: 2rem;
|
|
}
|
|
|
|
.no-indent {
|
|
text-indent: unset;
|
|
}
|