/* Colors */
.yellow {
	color: #ffcb6b;
}
.purple {
	color: #c792ea;
}
.white {
	color: #e6e9f0;
}
.red {
	color: #ff5370;
}
.green {
	color: #c3e88d;
}
.deadlink {
	color: red;
	cursor: default;
}

/* Fonts */
@import url("https://nixmagic.com/css/jetbrains.css");
body {
	font-family: "JetBrains Mono", monospace;
}
h1 {
	font-size: 1.8rem;
}
h2 {
	font-size: 1.25rem;
}
a {
	color: inherit;
	font-weight: bold;
	color: #89ddff;
}
a:hover {
	color: #e6e9f0;
}

/* Main */
* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	scrollbar-width: 0;
}
*::-webkit-scrollbar {
	display: none;
}
::selection {
	background-color: rgba(255, 255, 255, 0.24);
}
body {
	background-color: #242836;
	color: white;
}
/* Rounded corners are in vogue aye */
img{
	border-radius: 20px;
}
.main-content {
	max-width: 1024px;
	margin-left: auto;
	margin-right: auto;
	padding: 12px;
	outline: none;
}
.caret {
	animation: caret-frames 1s step-end infinite;
}
@keyframes caret-frames {
	0%, 100% {
		background-color: transparent;
		color: #ffcb6b;
	}
	50% {
		background-color: #ffcb6b;
		color: #121212;
	}
}
.underline-yellow {
	margin-top: 8px;
	border: 0;
	border-bottom: 2px dashed rgba(255, 203, 107, 0.84);
}
.mt-1 {
	margin-top: 4px;
	margin: 0.5em;
}
.mt-2 {
	margin-top: 8px;
}
ul {
	list-style-type: "-";
	padding-left: 12px;
}
li:not(:last-child) {
	margin-bottom: 2px;
}
li {
	padding-left: 12px;
}
.spacer-hr {
	border: 0;
}
.statusline-minibuf {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	background-color: #1a1d25;
	user-select: none;
}
.statusline {
	height: 40px;
	background-color: #0f1016;
	border-left: 6px solid #c792ea;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: start;
	padding-left: 16px;
	padding-right: 20px;
	font-weight: bold;
}
.mr-1 {
	margin-right: 8px;
}
.mr-2 {
	margin-right: 12px;
}
.statusline-end {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: row-reverse;
	align-items: center;
	justify-content: start;
	color: rgba(255, 255, 255, 0.72);
	font-weight: normal;
}
.spacer-bottom {
	margin-top: 5rem;
}
.minibuf {
	height: 32px;
	font-size: 0.84rem;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: start;
	padding-left: 8px;
	padding-right: 8px;
}
.statusline-hover {
	cursor: pointer;
	height: 100%;
	display: flex;
	align-items: center;
}
.statusline-hover:hover {
	background-color: #c792ea;
	color: #121212;
	text-decoration: underline;
}
.float-left, .float-right {
	width: 50%;
}
.float-left {
	float: left;
	text-align: left;
}
.float-right {
	float: right;
	text-align: right;
}
td {
	padding-top: 0.5em;
	padding-bottom: 0.5em;
	padding-right: 2em;
}
