Files
portal/resources/sass/components/_base.scss
2020-08-24 07:55:32 +02:00

93 lines
844 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 ;
}
select {
@apply border py-2 px-4 rounded bg-white;
option {
@apply bg-white;
}
}
.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-w-24 {
min-width: 8rem;
}
.min-h-16 {
min-height: 4rem;
}
.indent {
text-indent: 2rem;
}
.no-indent {
text-indent: unset;
}