view src/site.css @ 54:260abd8f8565

login and register
author Franklin Schmidt <fschmidt@gmail.com>
date Sun, 27 Nov 2022 23:46:27 -0700
parents 289718f121e4
children
line wrap: on
line source

* {
 	box-sizing: border-box;
}

body {
	font-family: Sans-Serif;
	margin: 0;
	background-color: #F8F8F8;
}

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

textarea {
	font: inherit;
	padding: 7px;
	border-color: #DDDDDD;
}

div[header], div[footer] {
	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;
}

[hidden] {
	display: none;
}

input[type="checkbox"],
input[type="submit"],
label[clickable] {
	cursor: pointer;
}

[error] {
	color: red;
}