SMK_Kelulusan/resources/sass/main.scss
Gregorio Chiko Putra b1ab965f11 Improving view
2019-05-09 13:27:37 +07:00

115 lines
2.0 KiB
SCSS
Vendored

@tailwind base;
@tailwind components;
@tailwind utilities;
html, body {
@apply bg-gray-300 text-teal-800 tracking-wide leading-snug;
font-family: 'Source Sans Pro', sans-serif;
font-size: calc(.75rem + 1vmin);
}
.header {
h1 {
@apply text-3xl font-bold mb-6 mt-4;
}
}
.container {
@apply bg-white mx-auto h-full p-12;
}
@screen md {
.header {
h1 {
@apply text-5xl;
}
}
.container {
@apply w-3/4 mt-8;
}
}
.form {
@apply w-full mt-6;
.form-grid {
@apply flex flex-wrap justify-center -mx-3 mb-6;
.form-group {
@apply w-full px-3 mb-6;
.form-label {
@apply block uppercase tracking-wide text-sm font-bold mb-2;
}
.form-input {
@apply appearance-none block w-full bg-gray-200 border rounded py-3 px-4 leading-tight;
&:focus {
@apply outline-none bg-white border-gray-500;
}
}
.input-helper {
@apply text-gray-600 text-sm italic;
}
}
.form-submit {
@apply bg-gray-400 border rounded py-3 px-4 leading-tight uppercase self-center;
&:hover {
@apply border-gray-500 bg-white;
}
&:focus {
@apply outline-none;
}
}
}
}
.print-button {
@apply text-xs text-white bg-indigo-400 px-2 py-1 rounded;
&:hover {
@apply bg-indigo-500;
}
&:focus {
@apply outline-none bg-indigo-600
}
}
.letter {
@apply mx-auto p-1;
max-width: 66ch;
.letter__header {
@apply text-center;
}
p {
@apply my-2;
}
ol {
@apply list-decimal list-inside;
}
table {
@apply w-full;
}
}
@screen print {
.container > .header, .container > .form, .print-button {
@apply hidden;
}
.container {
@apply w-full max-w-full m-0 p-0;
}
}