<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
html {
width: 100%;
height: 100%;
}

.boxHeader {
	cursor: default;
}

@keyframes glowBW {
	from{text-shadow: -1px -1px 0 #888, 1px -1px 0 #888, -1px  1px 0 #888, 1px  1px 0 #888;}
	to{text-shadow: -1px -1px 0 #ffa, 1px -1px 0 #ffa, -1px  1px 0 #ffa, 1px  1px 0 #ffa;}
}

@-webkit-keyframes glowBW {
	from{text-shadow: -1px -1px 0 #888, 1px -1px 0 #888, -1px  1px 0 #888, 1px  1px 0 #888;}
	to{text-shadow: -1px -1px 0 #ffa, 1px -1px 0 #ffa, -1px  1px 0 #ffa, 1px  1px 0 #ffa;}
}

.hoverGlow {
	vertical-align: middle;
}

.hoverGlow:hover {
	vertical-align: middle;
	animation-name: glowBW;
	-webkit-animation-name: glowBW;
	animation-duration: 1s;
	-webkit-animation-duration: 1s;
	animation-iteration-count: infinite;
	-webkit-animation-iteration-count: infinite;
	animation-direction: alternate;
	-webkit-animation-direction: alternate;
}

.strokeYellow:hover {
	text-shadow: 
	-1px -1px 2px #ffa,
	 1px -1px 2px #ffa,
	-1px  1px 2px #ffa,
	 1px  1px 2px #ffa;
}

.textBox {
position: absolute;
border-radius: 5px;
/* width: 100px;
height: 50px;*/
border: 1px outset #fcc;
background-color: #fcc;
}

.textBox textarea {
border-radius: 5px;
border: none;
font-family: sans-serif;
}

</pre></body></html>