231 lines
4.9 KiB
CSS
Vendored
231 lines
4.9 KiB
CSS
Vendored
/***color definitions***/
|
|
:root{
|
|
/***light/dark determined from here: https://www.hexcolortool.com/ - convert css to sass files at later date and use built in tools***/
|
|
--primary-bg: #eae4da;/*light blue*/
|
|
--primary-bg-offset: #ccbca4;/*20% darker*/
|
|
--primary-bg-dark: #dbd0bf;/*10% darker*/
|
|
--primary-bg-light: #f9f8f5;/*10% lighter*/
|
|
--primary-font: #000;/*black*/
|
|
--primary-highlight: #0006d4;/*red*/
|
|
--primary-highlight-dark: #00013f;/*20% darker*/
|
|
--secondary-highlight: #d40074;/*orange*/
|
|
}
|
|
|
|
/***this is background***/
|
|
html {
|
|
height:100%;
|
|
}
|
|
|
|
body {
|
|
background-color: var(--primary-bg);
|
|
margin: 0;
|
|
min-height:100%;
|
|
padding-bottom:75px;
|
|
position: relative;
|
|
}
|
|
|
|
/***this is for page heading***/
|
|
|
|
h1 {
|
|
color: black;
|
|
font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
|
|
font-size: 26px;
|
|
margin:0;
|
|
text-align: center;
|
|
}
|
|
|
|
/***this is for subheading***/
|
|
|
|
h2 {
|
|
color: black;
|
|
font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
|
|
font-size: 22px;
|
|
}
|
|
|
|
/***this is the paragraph text***/
|
|
|
|
p, .panel-body {
|
|
color: black;
|
|
font-family: Garamond, Baskerville, Baskerville Old Face, Hoefler Text, Times New Roman, serif;
|
|
font-size: 18px;
|
|
}
|
|
|
|
.mail,.tel,.question,.dark-link {font-weight:bold;
|
|
color: var(--primary-highlight);
|
|
}
|
|
|
|
/***this is the banner/logo placement***/
|
|
|
|
header {
|
|
left: 10px;
|
|
|
|
top: 10px;
|
|
}
|
|
|
|
/***this is placement/style for the right menu***/
|
|
|
|
.right-nav{
|
|
background-color:var(--primary-bg-offset);
|
|
font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
|
|
font-size: 15px;
|
|
border:none;
|
|
padding-right:10px;
|
|
}
|
|
|
|
/***this is style for links in the right menu***/
|
|
.right-nav .navbar-brand, .right-nav .navbar-nav>li>a,.right-nav .navbar-text{
|
|
color:var(--primary-highlight);
|
|
}
|
|
/***hover style for links***/
|
|
.right-nav .navbar-nav>li>a:focus,.right-nav .navbar-nav>li>a:hover{
|
|
color:var(--primary-highlight-dark);
|
|
}
|
|
|
|
/***this is placement/style for left menu***/
|
|
|
|
.left-nav{
|
|
background-color:var(--primary-bg-offset);
|
|
font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
|
|
font-size: 18px;
|
|
border:none;
|
|
margin-bottom:0;
|
|
padding-left:10 px;
|
|
}
|
|
|
|
/***this is style for links in the left menu***/
|
|
.left-nav .navbar-brand, .left-nav .navbar-nav>li>a,.left-nav .navbar-text{
|
|
color:var(--primary-highlight);
|
|
}
|
|
|
|
/***hover style for links***/
|
|
.left-nav .navbar-nav>li>a:focus,.left-nav .navbar-nav>li>a:hover{
|
|
color:var(--primary-highlight-dark);
|
|
}
|
|
|
|
/***active page style for navigation***/
|
|
.left-nav .navbar-nav>li>.active-page,.left-nav .navbar-nav>li>.active-page:focus,.left-nav .navbar-nav>li>.active-page:hover,
|
|
.right-nav .navbar-nav>li>.active-page,.right-nav .navbar-nav>li>.active-page:focus,.right-nav .navbar-nav>li>.active-page:hover{
|
|
color: var(--secondary-highlight);/*orange*/
|
|
}
|
|
|
|
container {
|
|
background-color:var(--primary-bg);
|
|
}
|
|
|
|
.font {color:var(--primary-highlight);
|
|
|
|
}
|
|
|
|
.form_name {
|
|
color:var(--primary-highlight);
|
|
}
|
|
|
|
nav {
|
|
text-align: center;
|
|
}
|
|
|
|
section {
|
|
text-align: left;
|
|
}
|
|
|
|
aside {
|
|
float:right;
|
|
}
|
|
|
|
list {
|
|
float:left;
|
|
margin:20px;
|
|
width:250px
|
|
}
|
|
|
|
.pic {
|
|
float:right;
|
|
width:350px
|
|
margin:10px;
|
|
width:30%;;
|
|
}
|
|
|
|
.list {
|
|
color: black;
|
|
font-family: Garamond, Baskerville, Baskerville Old Face, Hoefler Text, Times New Roman, serif;
|
|
font-size: 16px;
|
|
}
|
|
|
|
.footer_black {
|
|
color: black;
|
|
font-family: Garamond, Baskerville, Baskerville Old Face, Hoefler Text, Times New Roman, serif;
|
|
font-size: 14px;
|
|
}
|
|
|
|
/***.footer_red{
|
|
color: var(--primary-highlight);
|
|
font-family: Garamond, Baskerville, Baskerville Old Face, Hoefler Text, Times New Roman, serif;
|
|
font-size: 14px;
|
|
} ***/
|
|
|
|
/***push footer to bottom of page***/
|
|
.footer{
|
|
background-color:var(--primary-bg-offset);
|
|
bottom: 0;
|
|
left:auto;
|
|
padding:5px;
|
|
position: absolute;
|
|
right:auto;
|
|
text-align: center;
|
|
width:100%;
|
|
}
|
|
|
|
.panel-default>.pannel-body,.panel-default>.panel-heading,.panel-default{
|
|
background-color: var(--primary-bg);
|
|
border:none;
|
|
box-shadow:none;
|
|
}
|
|
|
|
/***apply to every other table row***/
|
|
.table-striped > tbody > tr:nth-of-type(2n+1){
|
|
background-color: var(--primary-bg-dark);
|
|
}
|
|
|
|
/***apply to every other table row***/
|
|
.table-striped > tbody > tr:nth-of-type(2n){
|
|
background-color: var(--primary-bg-light);
|
|
}
|
|
|
|
/***apply highlight style***/
|
|
.primary-highlight{
|
|
color:var(--primary-highlight-dark);
|
|
}
|
|
|
|
.header-section{
|
|
background-color: var(--primary-bg-offset)
|
|
}
|
|
|
|
|
|
.hideOverflow{
|
|
overflow:hidden
|
|
}
|
|
|
|
.faq-title{
|
|
font-weight: bold;
|
|
}
|
|
.faq-body{
|
|
background-color: var(--primary-bg-light);
|
|
}
|
|
|
|
.bottomRight{
|
|
display:none;
|
|
}
|
|
|
|
.back-to-top{
|
|
color: var(--secondary-highlight);
|
|
display:none;
|
|
}
|
|
.nav-tabs{
|
|
border-bottom-color:var(--primary-bg-offset);
|
|
}
|
|
.tab-divider{
|
|
border-color: var(--primary-bg-offset);
|
|
}
|
|
.fix-spacing{
|
|
padding-top: 30px;
|
|
}
|