view src/site.css @ 0:dfc36e7ed22c

init
author Vadim Filimonov <fffilimonov@yandex.ru>
date Thu, 12 May 2022 13:51:59 +0400
parents
children
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;
}

div[header] {
	font-size: 14px;
	background-color: #ddd;
	padding: 8px 3%;
}

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

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

label[prompt] {
	display: block;
	font-size: small;
	margin-top: 2px;
	margin-bottom: 4px;
}
input[type=text], input[type=email], select, textarea {
	font: inherit;
}
select {
	padding: 1px;
}
[error] {
	color: red;
}