view src/site.css @ 2:78708fa556a0

add login
author Franklin Schmidt <fschmidt@gmail.com>
date Tue, 08 Jul 2025 15:55:34 -0600
parents 1c87f785eb42
children b1adec083e44
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%;
	display: flex;
	justify-content: space-between;
}

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

[waiting-ai-icon] {
	width: 100px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	z-index: 3000;
	display: none;
}

[ai_container] div[ask] {
	padding-top: 1em;
	padding-bottom: 1em;
	padding-left: 12px;
	padding-right: 12px;
	display: flex;
	gap: 8px;
	align-items: flex-end;
}
[ai_container] textarea {
	flex-grow: 1;
	max-height: 150px;
	resize: none;
}