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

* {
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
}

body {
  background-color: white;
  font: 1em arial, clean, sans-serif;
  font-size: 85%;
  text-align: center;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
}

/*h1 {
  margin-bottom: 1em;
}*/

p {
  margin: 1em 0;
}

a {
  color: blue;
  text-decoration: none;
}

a:hover {
  color: blue;
  text-decoration: underline;
}

table {
  font-size: inherit;
  font: 100%;
}


/* Home */

ul.posts {
  list-style-type: none;
  padding: 1em 0.5em 1em 0.5em;
}

  ul.posts li {
    line-height: 1.5em;
    padding: 0.4em 0.5em 0.4em 0.5em;
    border-radius: 0.3em;
  }

  ul.posts li:nth-child(even){
  background: #FFF;
  }
  ul.posts li:nth-child(odd){
  background: #EEE;
  }

/* Site */

.site {
  font-size: 110%;
  text-align: justify;
  max-width: 45em;
  margin: 0em auto 0em auto;
  line-height: 1.5em;
}

.title {
  font-size: 2em;
  margin-bottom: 0.5em;
  background: white;
  line-height: 2.2em;
  text-align: center;
}

.title a {
    color: blue;
}

.title a:hover {
    text-decoration: underline;
}

.site h2 {
	font-size: 120%;
}

.site h3 {
	font-size: 110%;
	font-style:italic;
}

#page_number {
	color: #777;
	padding-left: 0.5em;
	margin-bottom: 0em;
	text-align: center;
}

#post &gt; *:not(#ad) {
    padding: 0em 0.5em 0em 0.5em;
}

#post h2 {
  margin-bottom: 1em;
}

@media screen and (min-width: 37em) {
	#ad {
		float:left;
		margin-right: 0.7em;
		padding-left: 0.5em;
	}
}

.navmenu {
	list-style: none;
	text-align: center;
}

.navmenu &gt; li {
	padding-right: 1em;
	display: inline;
}

.navmenu &gt; li &gt; p {
	display: inline;
	font-weight: bold;
}

.footer {
    font: 1em helvetica, arial, clean, sans-serif;
    margin-top: 2em;
    overflow: hidden;
    text-align: center;
    background: white;
    line-height: 1.5em;
    border-top-left-radius: 0.6em;
    border-top-right-radius: 0.6em;
}

.contact {
    color: black;
}
.contact a {
      color: blue;
}

.contact a:hover {
    text-decoration: underline;
}
</pre></body></html>