<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
/*
   IS301
   Final Project, Week 8

   Tom's Universal Template CSS File (theme 2)
   Author: Thomas Travers
   Date:   11/20/19

   Filename:         universaltemplate.css


*/
@font-family{
    font-family: Tahoma, Geneva, sans-serif;

}

body {
    font-family: Tahoma, Geneva, sans-serif;
}

.center-image {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 40%;
  background-color: #dbd5ba;

}

.center-object {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 40%;
}

/* navigation section */
.nav-bar {
    background-color: #4f6d86;
    line-height:1em;
    list-style-type:none;
    font-style:none;
}

.nav-bar-ul{
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #4f6d86;
}

.nav-bar-li{
    float: left;
}

.nav-bar-li-a{
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}
.nav-bar-li:hover{
  background-color: #bd8a3f;
}


nav ul {
	padding: 0;
	margin-top: 0.5em;
	margin-bottom: 0.5em;
}

nav li {
	list-style-type: none;
	margin: 0.3em;
	padding: 0.4em;
}




.slides {
    width: 240px;
    height: 240px;
}
/* footer section */
.footer-bar {
    background-color: #4f6d86;
    line-height:1em;
    list-style-type:none;
    font-style:none;
    overflow: hidden;

}

.footer-bar-ul{
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #4f6d86;
}

.footer-bar-li{
    float: left;
}
.footer-bar-icon{
    float: left;
}


.footer-bar-li-a{
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

.footer-bar-li:hover{
  background-color: #bd8a3f;
}

#totopbutton {
    content: url(../resources/totop.png);
    margin-left: 50%;
    margin-right: 50%;
}

#totopbutton:hover{
    background-color: #2e506d;
    content: url(../resources/totop.png);
    /* content: url(../resources/totop-active.png); */
    margin-left: 50%;
    margin-right: 50%;
    border-radius: 50%;

}


#searchbox {
    width:250px;
    border:1px solid #cccccc;
    border-radius:7px 7px 7px 7px;
    padding:5px 5px 5px 5px;
    margin-top:10px;
    margin-bottom: 10px;
    margin-left:5px;
    height:28px;
    background-image: url(../resources/search.png);
    background-repeat: no-repeat;
    background-position: right center;
    background-origin: content-box;
    background-size: 18px 18px;

}

/* eCommerce */
.product {
    width: auto;
    max-width: 300px;
    height: auto;
    max-height: 300px;
    object-fit: cover;
}

/* Landing Page Image and Button */
.container {
  position: relative;
  width: 50%;
}

.buttoncontainer {
  position: relative;
  display:block;

}

.buttoncontainer img {
  background-size: 100%;
  width: 100%;
  height: 700px;
  display:block;

}

.buttoncontainer .btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  background-color: transparent;
  font: bold;
  color: rgb(235, 137, 52);
  font-size: 16px;
  padding: 12px 24px;
  cursor: pointer;
  border-radius: 25px;
  border: 2px solid rgb(235, 137, 52);
  padding: 20px;
}

.buttoncontainer .btn:hover {
  background-color: rgb(59, 102, 125);
  color: white;
}

/* blog section */
.article-class h1 {
    text-align: center;
}

.blog-button {
    background-color: #dbd5ba;
    border: 2px solid grey;
    padding: 10px;
    border-radius: 15px;
    margin-left: auto;
    margin-right: auto;
    color: #304043;
}
.blog-button:hover {
    border: 2px solid white;
    color: white;
}
.buttonDiv{
    text-align: center;
}
.single-article{
    /* background-color: rgb(146, 150, 150); */
    background-color: white;
    border: 2px solid black;
    padding: 10px;
    border-radius: 15px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
    margin-bottom: 10px;
}
.single-article h2 {
    color: rgb(59, 102, 125);
    font-weight: bold;
}
.article-class {
    background-color: rgb(59, 102, 125);
    overflow: hidden;
    padding: 10px;
}

#comment {
    width: 100%;
    height: 400px;
    padding: 10px;

}
.submitbutton {
    margin-left: 50%;
    margin-right: 50%;
}

/* main */
.main{
        overflow: hidden;

}

/* About Page Elements */
.circle-image{
  width:300px;
  height:300px;
  object-fit:cover;
  border-radius:50%;
}
</pre></body></html>