2021-08-09 08:48:23 +00:00
|
|
|
/* This file is for your main application css. */
|
2021-08-11 08:16:02 +00:00
|
|
|
@import "tailwindcss/base";
|
|
|
|
@import "tailwindcss/components";
|
|
|
|
@import "tailwindcss/utilities";
|
2021-08-21 12:40:24 +00:00
|
|
|
@import "./highlight.css";
|
2021-08-11 08:16:02 +00:00
|
|
|
|
2021-08-21 12:31:27 +00:00
|
|
|
@font-face {
|
|
|
|
font-family: "JetBrains Mono";
|
|
|
|
src: url(/fonts/jetbrains_mono_variable.ttf);
|
|
|
|
font-weight: 100 1000;
|
|
|
|
font-stretch: 25% 151%;
|
|
|
|
}
|
|
|
|
|
2021-08-11 21:17:23 +00:00
|
|
|
* {
|
2021-08-13 06:43:59 +00:00
|
|
|
font-family: "JetBrains Mono", monospace;
|
|
|
|
color: white;
|
2021-08-21 12:31:27 +00:00
|
|
|
font-size: 14px;
|
|
|
|
font-weight: bold;
|
2021-08-11 21:17:23 +00:00
|
|
|
}
|
|
|
|
|
2021-08-13 06:43:59 +00:00
|
|
|
html,
|
|
|
|
body {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
2021-08-11 21:17:23 +00:00
|
|
|
}
|
|
|
|
|
2021-08-13 06:43:59 +00:00
|
|
|
a:hover {
|
2021-08-21 12:31:27 +00:00
|
|
|
color: #ff9800;
|
2021-08-13 00:17:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
header {
|
2021-08-13 06:43:59 +00:00
|
|
|
background-color: #1a1a1a;
|
2021-08-13 00:17:13 +00:00
|
|
|
}
|
2021-08-11 21:17:23 +00:00
|
|
|
|
2021-08-13 02:16:10 +00:00
|
|
|
code {
|
2021-08-13 06:43:59 +00:00
|
|
|
font-family: "JetBrains Mono", monospace;
|
2021-08-09 08:48:23 +00:00
|
|
|
}
|
2021-08-14 19:55:18 +00:00
|
|
|
|
|
|
|
code {
|
2021-08-21 12:31:27 +00:00
|
|
|
white-space: pre;
|
|
|
|
font-size: 14px;
|
|
|
|
font-weight: bold;
|
2021-08-14 22:42:26 +00:00
|
|
|
}
|
|
|
|
|
2021-08-14 23:23:50 +00:00
|
|
|
textarea {
|
2021-08-21 12:31:27 +00:00
|
|
|
font-size: 14px;
|
|
|
|
font-weight: bold;
|
2021-08-14 23:23:50 +00:00
|
|
|
}
|
|
|
|
|
2021-08-14 22:42:26 +00:00
|
|
|
.alert {
|
2021-08-21 12:31:27 +00:00
|
|
|
width: 100%;
|
|
|
|
text-align: center;
|
2021-08-14 22:42:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.alert-info {
|
2021-08-21 12:31:27 +00:00
|
|
|
background-color: #1ed98e;
|
|
|
|
color: black;
|
|
|
|
font-weight: bold;
|
2021-08-14 22:42:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.alert-danger {
|
2021-08-21 12:31:27 +00:00
|
|
|
background-color: #ff9800;
|
|
|
|
color: black;
|
|
|
|
font-weight: bold;
|
2021-08-16 20:35:58 +00:00
|
|
|
}
|