theme/src/style.css

28 lines
358 B
CSS
Raw Normal View History

2022-08-03 15:57:19 +00:00
@import url('../static/fonts/fonts.css');
2022-01-26 21:49:09 +00:00
/* Setting a base font size */
body {
2022-01-29 17:53:15 +00:00
font-size: 16px;
2022-01-26 21:49:09 +00:00
}
2022-01-26 20:58:18 +00:00
@tailwind base;
@tailwind components;
@tailwind utilities;
2022-01-26 21:49:09 +00:00
.prose h1,
.prose h2,
.prose h3,
.prose h4,
.prose h5,
.prose h6 {
2022-01-29 17:53:15 +00:00
@apply font-title font-semibold;
2022-01-26 21:49:09 +00:00
}
2022-01-29 16:28:06 +00:00
.notification {
2022-01-29 17:53:15 +00:00
@apply rounded p-4;
2022-01-29 16:28:06 +00:00
}
.notification.is-warning {
2022-01-29 17:53:15 +00:00
@apply bg-yellow-300;
2022-01-29 16:28:06 +00:00
}