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

body {
  background-color: lightyellow;
  color: darkblue;  /* text color */
  margin-left: 4%;
}

h1 {
  background-color: #5555ff;  /* a bit of red, green, lots of blue */
  color: white;
  font: normal bold 1.8em / 2.4em sans-serif;
  margin-left: -2%;
  text-indent: 2%;
}

h2 {
  background-color: #5555ff;
  color: white;
  font: normal bold 1.4em / 1.8em sans-serif;
  margin-left: -2%;
  margin-top: -2%;
  text-indent: 2%;
}

input {
   color: blue;    /* text color */
   font: normal bold 1.2em/1.4em sans-serif;
}
</pre></body></html>