view src/site.css @ 22:949914955bfe

add menu
author Franklin Schmidt <fschmidt@gmail.com>
date Tue, 05 Nov 2024 14:29:16 -0700
parents dade6a560494
children 62d04ca486dd
line wrap: on
line source

* {
 	box-sizing: border-box;
}

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

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

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

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

[content] {
	margin-left: 3%;
	margin-right: 3%;
	margin-bottom: 2em;
}

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

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