mirror of
https://github.com/ArthurDanjou/website-old.git
synced 2026-01-14 12:14:42 +01:00
63 lines
928 B
SCSS
Executable File
63 lines
928 B
SCSS
Executable File
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@500&display=swap');
|
|
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@900&display=swap');
|
|
|
|
.icon {
|
|
transform: translate(3px, -3px);
|
|
z-index: 1;
|
|
}
|
|
|
|
img, svg {
|
|
position: static;
|
|
}
|
|
|
|
body {
|
|
@apply dark:bg-black dark:text-white
|
|
}
|
|
|
|
.nuxt-content-editor {
|
|
@apply dark:(bg-dark-800 text-white) border dark:border-white border-black border-solid;
|
|
}
|
|
|
|
.nuxt-content-container, .nuxt-content {
|
|
p {
|
|
@apply text-gray-700 dark:text-gray-400
|
|
}
|
|
|
|
h1, h2, h3, h4, h5, h6 {
|
|
@apply font-bold text-black dark:text-white mt-8 mb-4
|
|
}
|
|
|
|
ul {
|
|
@apply list-inside list-disc my-4 text-gray-700 dark:text-gray-400
|
|
}
|
|
|
|
p, li {
|
|
@apply text-lg
|
|
}
|
|
|
|
h1 {
|
|
@apply text-4xl
|
|
}
|
|
|
|
h2 {
|
|
@apply text-3xl
|
|
}
|
|
|
|
h3 {
|
|
@apply text-2xl
|
|
}
|
|
|
|
h4 {
|
|
@apply text-xl
|
|
}
|
|
|
|
h5 {
|
|
@apply text-lg
|
|
}
|
|
|
|
h6 {
|
|
@apply text-sm
|
|
}
|
|
|
|
}
|