view src/site.css @ 66:f067de76084c

minor
author Franklin Schmidt <fschmidt@gmail.com>
date Thu, 06 Mar 2025 03:09:24 -0700
parents 080eb027d93d
children cb2808b8b1ad
line wrap: on
line source

* {
	box-sizing: border-box;
}

body {
	font-family: Sans-Serif;
	margin: 0;
}

textarea, input {
	font-size: inherit !important;
}

a {
	text-decoration: none;
}
a:hover {
	text-decoration: underline;
}

button,
img[onclick],
label[clickable],
input[type="radio"],
input[type="submit"] {
	cursor: pointer;
}

div[header] {
	font-size: 14px;
	background-color: #ddd;
	padding: 8px 3%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

div[header] span[right] {
	display: flex;
	align-items: center;
	gap: 8px;
}

[content] {
	margin-left: auto;
	margin-right: auto;
	padding-left: 3%;
	padding-right: 3%;
	max-width: calc(700px + 6%);
	width: fit-content;
	margin-bottom: 2em;
}

label[prompt] {
	display: block;
	font-size: small;
	margin-top: 2px;
	margin-bottom: 4px;
}

dialog div[buttons] {
	text-align: right;
}