<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Simple style sheet for one page, defining styles that demonstrate
 * how CSS use can make it harder to read a page, not easier.
 *
 * Mark L. Irons, 2002-01-24
 */

@import "../../../base-style.css";

div.example {
  margin-left: 2em;
  margin-right: 2em;
  padding: 1em;
  border: solid 1px;
  background-color: #FFFFFB;
}

h4, h5 {
  background-color: #A0CFFF;
  font-weight: bold;
  padding-left: 5px;
}

.badCSSexample-attribute, .badCSSexample-text {
  padding-left: 1.5em;
}

.goodCSSexample-attribute, .goodCSSexample-text {
  padding-left: 1.5em;
}

h5.goodCSSexample-attribute {
  background-color: #FFDFB0;
}

.subheading {
  background-color: #FFDFB0;
}

.heading {
  background-color: #A0CFFF;
}

.invisible {
  display: none;
}

code {
  font-family: monospace;
  /* color: #800000; */
}
</pre></body></html>