2020-05-18 17:49:56 +00:00
|
|
|
:root {
|
|
|
|
--main-bg-color: #E7D9D1; /*#F0E4D1; #E8D5B5; #e7d9d1;*/
|
|
|
|
--main-accent-color: #302b44;
|
|
|
|
--light-accent-color: #686283;
|
2020-05-18 22:58:54 +00:00
|
|
|
--alt-accent-color: #B05C71;
|
2020-05-18 17:49:56 +00:00
|
|
|
--dark-alt-accent-color: #913A50;
|
|
|
|
--title-font: 'Cinzel', serif;
|
|
|
|
--body-font: 'Raleway', sans-serif;
|
|
|
|
}
|
|
|
|
|
2020-05-15 22:34:40 +00:00
|
|
|
html, body { height: 100%; }
|
|
|
|
|
|
|
|
body {
|
2020-05-18 17:49:56 +00:00
|
|
|
background-color: var(--main-bg-color);
|
|
|
|
font-family: var(--body-font);
|
|
|
|
font-weight: 500;
|
|
|
|
color: var(--main-accent-color);
|
2020-05-15 22:34:40 +00:00
|
|
|
}
|
|
|
|
|
2020-05-18 22:58:54 +00:00
|
|
|
header {
|
|
|
|
margin-bottom: 30px; /* Is there a better way to do this? */
|
|
|
|
}
|
|
|
|
|
|
|
|
header, header nav {
|
|
|
|
min-height: 91px; /* 75px for the logo, plus 16px padding */
|
|
|
|
}
|
|
|
|
|
2020-05-15 22:34:40 +00:00
|
|
|
#page-content {
|
|
|
|
flex: 1 0 auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
footer {
|
|
|
|
flex-shrink: 0;
|
2020-05-18 17:49:56 +00:00
|
|
|
background-color: var(--main-accent-color);
|
2020-05-15 22:34:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
footer p, footer ul li {
|
2020-05-18 17:49:56 +00:00
|
|
|
color: var(--light-accent-color);
|
2020-05-15 22:34:40 +00:00
|
|
|
font-size: 0.8rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
footer ul {
|
|
|
|
margin-top: -16px;
|
|
|
|
padding-left: 20px;
|
|
|
|
}
|
|
|
|
|
2020-05-18 17:49:56 +00:00
|
|
|
h1, h2, h3, h4 {
|
|
|
|
font-weight: 500;
|
|
|
|
}
|
|
|
|
|
2020-05-15 22:34:40 +00:00
|
|
|
.container-fluid {
|
|
|
|
padding-left: 5%;
|
|
|
|
padding-right: 5%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.navbar {
|
|
|
|
padding-left: 5%;
|
|
|
|
padding-right: 5%;
|
|
|
|
}
|
|
|
|
|
2020-05-18 22:58:54 +00:00
|
|
|
#mainNav .navbar-brand {
|
2020-05-16 15:53:45 +00:00
|
|
|
height: 75px;
|
2020-05-15 22:34:40 +00:00
|
|
|
padding-left: 100px;
|
2020-05-18 17:49:56 +00:00
|
|
|
font-family: var(--title-font);
|
2020-05-15 22:34:40 +00:00
|
|
|
font-size: 2.5rem;
|
2020-05-18 17:49:56 +00:00
|
|
|
background-image: url('../images/jwlogo.svg');
|
2020-05-15 22:34:40 +00:00
|
|
|
background-repeat: no-repeat;
|
2020-05-18 17:49:56 +00:00
|
|
|
color: var(--main-accent-color);
|
|
|
|
}
|
|
|
|
|
|
|
|
.navbar-light .navbar-nav .nav-link {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.navbar-light .navbar-nav .nav-link:hover {
|
|
|
|
color: var(--alt-accent-color);
|
|
|
|
}
|
|
|
|
|
|
|
|
.social-icons {
|
|
|
|
font-size: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.social-icons a {
|
|
|
|
display: inline-block;
|
|
|
|
height: 3.5rem;
|
|
|
|
width: 3.5rem;
|
|
|
|
background-color: var(--main-accent-color);
|
|
|
|
color: var(--main-bg-color);
|
|
|
|
text-align: center;
|
|
|
|
font-size: 1.5rem;
|
|
|
|
line-height: 3.5rem;
|
|
|
|
margin-right: 0.25rem;
|
|
|
|
margin-bottom: 0.25rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.social-icons a:last-child {
|
|
|
|
margin-right: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.social-icons a:hover {
|
|
|
|
background-color: var(--dark-alt-accent-color);
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
color: var(--alt-accent-color);
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
|
|
|
|
a:hover {
|
|
|
|
color: var(--dark-alt-accent-color);
|
|
|
|
text-decoration: none;
|