<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
/*\

text-widget

\*/

.text-widget {
	/* background-color:rgb(200,200,200);
	opacity:0.1; */
	box-sizing:border-box;
	padding:1em;
}
.text-widget div.handle {
	position:absolute;
	top:0;
	right:0;
	bottom:0;
	left:0;
}
.text-widget div.top {
	bottom:auto;
	height:1em;
}
.text-widget div.right {
	left:auto;
	width:1em;
}
.text-widget div.bottom {
	top:auto;
	height:1em;
}
.text-widget div.left {
	right:auto;
	width:1em;
}
.text-widget div.center {
	top:1em;
	right:1em;
	bottom:1em;
	left:1em;
}
.text-widget {
	cursor:move;
}
.text-widget div.top.left,
.text-widget div.right.bottom {
	cursor:nwse-resize;
}
.text-widget div.top,
.text-widget div.bottom {
	cursor:ns-resize;
}
.text-widget div.top.right,
.text-widget div.bottom.left {
	cursor:nesw-resize;
}
.text-widget div.right,
.text-widget div.left {
	cursor:ew-resize;
}
.text-widget div.top,
.text-widget div.right,
.text-widget div.bottom,
.text-widget div.left {
	/* background-color:rgba(250,250,250,0.9); */
	/* background-color:rgb(225,225,225); */
	background-color:rgb(175,225,75);
	/* background-color:#BADA55; */
}
.text-widget div.top.left,
.text-widget div.top.right,
.text-widget div.bottom.right,
.text-widget div.bottom.left {
	/* background-color:rgba(250,250,250,0.8); */
	/* background-color:rgb(200,200,200); */
	background-color:rgb(150,200,50);
	/* background-color:#BADA55; */
}

[contenteditable]:focus {
	/* border-color:rgb(200,200,250); */
	border-color:#BADA55;
	box-shadow:0px 0px 1px 2px #BADA55;
}

/*\

panel

\*/

.panel:focus-within {
	counter-reset:index;
}
.panel:focus-within [contenteditable] {
	counter-increment:index;
}
.panel:focus-within [contenteditable]:focus {
	/* border-radius:0; */
	/* background-color:rgb(250,250,250); */
}
.panel:focus-within [contenteditable]:before {
	position:absolute;
	left:50%;
	top:50%;
	width:2em;
	height:2em;
	transform:translate(-50%,-50%);
	display:flex;
	align-items:center;
	justify-content:center;
	content:counter(index);
	font-family:sans-serif;
	font-size:16pt;
	font-weight:bold;
	border-radius:50%;
	color:rgb(25,25,25);
	background-color:rgb(225,225,225);
	opacity:0.1;
	pointer-events:none;
}</pre></body></html>