<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*@import url('reset.css');*/

/*\

layout

\*/

html {
	width:100%;
	height:100%;
}
body {
	display:flex;
	/**/
	width:100%;
	/*height:100%;*/
	margin:0;
}
aside {
	width:350px;
}
main {
	width:calc(100% - 350px);
	overflow:auto;
}

/*\

form

\*/

form {
}
form label {
	float:left;
	width:150px;
}
form input[type='text'],
form input[type='date'],
form input[type='password'] {
	float:left;
	width:200px;
	box-sizing:border-box;
}
form textarea {
	float:left;
	width:350px;
	box-sizing:border-box;
}

/*\

table

\*/

table {
	width:100%;
}
th, td {
	padding:0.25rem;
	text-align: left;
}
th {
	font-weight:600;
}
td {
	border-bottom:1px solid;
}</pre></body></html>