59 lines
698 B
SCSS
Vendored
59 lines
698 B
SCSS
Vendored
|
|
.memo-style {
|
|
|
|
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;
|
|
}
|
|
|
|
pre,
|
|
code {
|
|
@apply text-white p-1;
|
|
background-color: #4A5568;
|
|
//color: #ffffff;
|
|
}
|
|
|
|
pre {
|
|
@apply my-2;
|
|
}
|
|
|
|
blockquote {
|
|
@apply bg-gray-300 italic p-2 mx-4 my-2;
|
|
}
|
|
|
|
ul {
|
|
@apply list-disc ml-8;
|
|
}
|
|
|
|
ol {
|
|
@apply list-decimal ml-8;
|
|
}
|
|
|
|
input[type="checkbox"] {
|
|
width: 2rem;
|
|
}
|
|
}
|