view src/site.css @ 20:3ea49246d6a7

bbcode work
author Franklin Schmidt <fschmidt@gmail.com>
date Wed, 13 Jul 2022 22:00:00 -0600
parents da006d1c1eba
children 66fd3784e60e
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;
}

div[contenteditable] {
	padding: 7px;
	border: 1px solid #777;
	white-space: pre-wrap;
}

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;
}