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

/* general style */
* {
  box-sizing: border-box;
}

body {
position: relative;
background-color: #e6ffe6;
font-family: Veranda, sans-serif;
padding-top: 10px;
padding-bottom: 10px;
padding-right: 10px;
padding-left: 10px;
}

h1 {
color:#003300;
text-align: left;
font-family: Verdana, sans-serif;
}

h1.hide {
	display: none;
}

h2 {
color:#003300;
text-align:left;
font-family: Verdana, sans-serif;
}

p {
font-family: Veranda, sans-serif;
color: #003300;
text-align: left;
margin: 10px;
margin-top:30px;
}

/* footer styling */

footer {
  padding: 15px;
  font-size: 80%;
  clear: both;
  background-color: #157429;
  color: white;
  text-align: center;
  }
  
/* media query for footer */
@media screen and (max-width: 600px){
footer {
  margin-top: 200px;
} 
} 

/* styles the text on the homepage */
#welcome {
color: #264d00;
font-weight: bold;
font-size: 20px;
}

/* styles the title information for picture books */
#title {
color: #264d00;
font-weight: bold;
font-size: 20px;
}

/* styles the text box on the homepage */
.frontpage {
background-color: white;
border-radius: 25px;
border: 2px solid white;
margin-top: 50px;
margin-right: 10px;
margin-bottom: 50px;
margin-left: 500px;
padding: 20px; 
width: 50%; 
}

/* media query .frontpage */
@media screen and (max-width: 600px){

.frontpage {
border-radius: 25px;
border: 2px solid white;
padding: 20px; 
width: 80%;
margin-top: 20px;    
margin-right: 10px;
margin-left: 10px;
}

}

/* different images */

.imgleft {
	float: left;
	margin: 10px 10px 30px 10px;
	width: 300px;
	border-radius: 50%
	
}

#floatleft {
	float: left;
	margin: 20px 20px 30px 30px;
	width: 300px;
	border-radius: 50%;
}

.imgright {
	float: right;
	margin: 10px;
	margin-top: 20px;
	width: 400px;
	border-radius: 50%;
}

#frontimg {
	float: left;
	margin: 20px;
	margin-top: 30px;
	margin-bottom: 100px;
	margin-left: 50px;
	width: 400px;
	border-radius: 50%;
}

#librarian {
	float: right;
	margin: 10px;
	margin-top: -20px;
	margin-bottom: 100px;
	width: 400px;
	border-radius: 50%;
}

/* media query for frontimg */

@media screen and (max-width: 600px){
#frontimg {
	float: none;
	width: 90%;
	border-radius: 50%;
}	
}

/* media query for #librarian */

@media screen and (max-width: 600px){
#frontimg {
	float: none;
	margin: 20px;
	width: 90%;
	border-radius: 50%;
}	
}


/* embedded video */

iframe {
	float: right;
	margin: 10px;
	margin-bottom: 50px;
	margin-left: 20px;
	width: 640px ;
	height: 360px;
}

/* media query for embedded video */
@media screen and (max-width: 600px) {
iframe {
	float: none;
	margin: 10px;
	margin-bottom: 20px;
	width: 90%;
}
}


/* unvisited link */
a:link {
  color: #153074;
  text-decoration: none;
}

/* visited link */
a:visited {
  color: #291574;
  text-decoration: none;
}

/* mouse over link */
a:hover {
  color: #581574;
  text-decoration: none;
}

/* selected link */
a:active {
  color: #581574;
  text-decoration: none;
}

/* logo image */

#logo {
	display: block;
	margin-right: auto;
	margin-left: auto;
	width: 20%;
	min-width: 20%;
}

/* logo media query so it does not get too small */

@media screen and (max-width: 600px) {
#logo {
	display: block;
	margin-right: auto;
	margin-left: auto;
	min-width: 50%;
}
}

/* navigation bar */
.topnav {
  overflow: hidden;
  background-color: #157429;
}

.topnav a {
  float: left;
  font-size: 16px;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

.topnav a.active {
   background-color: white;
   color: #157429;
}

/* dropdown menu on navigation bar */

.dropdown {
  float: left;
  overflow: hidden;
}

.dropdown .dropbtn {
  font-size: 16px;  
  border: none;
  outline: none;
  color: white;
  padding: 14px 16px;
  background-color: #157429;
  font-family: inherit;
  margin: 0;
}

.topnav a:hover {
  background-color: white;
  color: #157429;
}

.dropdown:hover .dropbtn {
  background-color:white;
  color: #157429;
  cursor: pointer;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown-content a:hover {
  background-color: #ddd;
  color: #157429;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown .dropbtn.active {
  background-color: white;
  color: #157429;
}

/* navigation bar responsive css */

@media screen and (max-width: 600px){
.topav {
	display: block;
	width: 100%;
}
}

/* Picture Book Cover Grids */

.row {
  display: flex;
  flex-wrap: wrap;
  padding: 3px 3px 5px 3px;
  margin-bottom: 200px;
}

/* Create three equal columns that sit next to each other */
.column {
  flex: 33%;
  max-width: 33%;
  padding: 0 3px;
}

.column img {
  margin-top: 8px;
  vertical-align: middle;
  width: 300px;
  height: auto;
  border-radius: 50%
  
}

/* Responsive layout - makes a two column-layout instead of three columns */
@media screen and (max-width: 800px) {
  .column {
    flex: 50%;
    max-width: 50%;
  }
}

/* Responsive layout - makes the two columns stack on top of each other 
instead of next to each other */
@media screen and (max-width: 600px) {
  .column {
    flex: 100%;
    max-width: 100%;
  }
}

/* Picture book cover pages */

.picture_book h1 {
	display: none;
}

.book {
	float: left;
	margin: 10px 10px 10px 10px;
	position: relative;
}

.bookinfo {
	border-radius: 25px;
    border: 2px solid white;
    background-color: white;
    margin-top: 50px;
    margin-right: 10px;
    margin-bottom: 50px;
    margin-left: 500px;
    padding: 20px; 
    width: 50%; 
    position: absolute;
    
}

.pbfooter {
	float: left;
	clear: left;
	margin-bottom: 100px;
}

.pbfooter a:link, .pbfooter a:visited {
  background-color: #157458;
  color: white;
  padding: 10px 15px;
  font-family: Veranda, sans-serif;
  font-size: 15px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  border-radius: 8px;
}

.pbfooter a:hover, a:active {
  background-color: #156074;
} 	

/* make picture book info stack for mobile */

 @media screen and (max-width: 600px) {
 
 .book {
	float: none;
	margin: 10px;
	width: 80%;
}

.bookinfo {
	border-radius: 25px;
    border: 2px solid white;
    background-color: white;
    padding: 20px; 
    width: 90%;
    margin: auto;
    position: relative;
    
}

.pbfooter {
	float: none;
	position: absolute;
	margin-top: 20px;
}

 }


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