view src/site.css @ 1:1c87f785eb42

start chat
author Franklin Schmidt <fschmidt@gmail.com>
date Tue, 08 Jul 2025 14:18:25 -0600
parents 9845dcb9f5fc
children 78708fa556a0
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;
}

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