/* Style sheet for scarabaeus.org */

/* Enable table height element */
html, body{
	height: 99%;
}

/* Default colors and fonts */
body {
	color: #000000; 
	/*background-image: url("img/bode13l.png");*/
	background-color: #FFFFFF;
	font-family: Helvetica, "Trebuchet MS", Verdana, Arial, sans-serif;
}

/* Don't underline links! (Firefox removed this option from their preferences UI in 2024, relying on websites to do the right thing.) */
:any-link {
	text-decoration: none;
}

/* Day/light mode and default link colors */
a:link    {color: #0000EE; text-decoration: none; } /* Classic: #0000C0 */
a:visited {color: #551A8B; text-decoration: none; } /* Classic: #C00000 */
a:hover   {color: #C01A55; text-decoration: none; } /* Classic: #0000FF */
a:active  {color: #EE0000; text-decoration: none; } /* Classic: #FF0000 */

/* Night/dark mode link and body colors */
@media (prefers-color-scheme: dark) {
	a{} /* workaround for joe syntax coloring bug */
	body {
		color: #FBFBFE;
		/*background-image: url("img/bode13d.png");*/
		background-color: #1C1B22;
	}
	a:link    {color: #8C8CFF; }
	a:visited {color: #AD50FF; } /* Alt: #FFADFF */
	a:hover   {color: #C050AD; }
	a:active  {color: #FF4444; } /* Alt: #FF6666 */
}

