2020-07-05 11:59:03 +00:00
|
|
|
.header {
|
2020-07-07 11:28:55 +00:00
|
|
|
/* border-bottom: 2px solid #C28100; */
|
2020-07-05 11:59:03 +00:00
|
|
|
padding-bottom: 1.5em;
|
|
|
|
padding-top: 1.5em;
|
2020-07-07 11:28:55 +00:00
|
|
|
background-color: #d35400;
|
2020-07-05 11:59:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.header-container {
|
2020-07-18 10:43:13 +00:00
|
|
|
position: relative;
|
2020-07-05 11:59:03 +00:00
|
|
|
display: flex;
|
2020-07-07 11:28:55 +00:00
|
|
|
justify-content: space-between;
|
|
|
|
}
|
|
|
|
|
|
|
|
.header-left {
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
|
|
|
.header-menu {
|
2020-07-18 10:43:13 +00:00
|
|
|
position: absolute;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
2020-07-07 11:28:55 +00:00
|
|
|
display: flex;
|
|
|
|
align-items: flex-end;
|
|
|
|
}
|
|
|
|
|
|
|
|
.header-menu a {
|
|
|
|
color: white;
|
|
|
|
margin-right: 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.header-menu a:last-of-type {
|
|
|
|
margin-right: 0;
|
2020-07-05 11:59:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.header-image {
|
|
|
|
margin-right: 3em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.header-image img {
|
|
|
|
width: 7em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.header-content {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: space-between;
|
|
|
|
padding-top: 1em;
|
|
|
|
padding-bottom: 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.header-title {
|
|
|
|
font-family: 'Roboto Slab', serif;
|
|
|
|
margin: 0;
|
2020-07-07 11:28:55 +00:00
|
|
|
color: white;
|
2020-07-05 11:59:03 +00:00
|
|
|
font-weight: 500;
|
|
|
|
font-size: 2.5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.header-sub-title {
|
|
|
|
margin: 0;
|
|
|
|
text-decoration: underline;
|
|
|
|
font-weight: 100;
|
2020-07-07 11:28:55 +00:00
|
|
|
color: #ecf0f1;
|
|
|
|
transition: opacity 0.2s;
|
2020-07-05 11:59:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.header-sub-title:hover {
|
2020-07-07 11:28:55 +00:00
|
|
|
opacity: 0.9;
|
|
|
|
color: #ecf0f1;
|
2020-07-05 11:59:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.header-description {
|
2020-07-07 11:28:55 +00:00
|
|
|
color: #ecf0f1;
|
2020-07-05 11:59:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.content {
|
|
|
|
margin-top: 1.5em;
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.nav {
|
|
|
|
margin-right: 2em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.nav-item {
|
|
|
|
width: 15em;
|
|
|
|
padding: 1em;
|
|
|
|
border-radius: 4px;
|
|
|
|
margin-bottom: 0.7em;
|
|
|
|
border: 3px solid rgba(255, 111, 10, 0.7);
|
|
|
|
display: flex;
|
|
|
|
cursor: pointer;
|
|
|
|
transition: ease-in-out 0.1s;
|
|
|
|
height: 1.2em;
|
|
|
|
}
|
|
|
|
|
2020-07-15 20:32:42 +00:00
|
|
|
.nav-item svg {
|
|
|
|
width: .75em;
|
|
|
|
height: .75em;
|
|
|
|
}
|
|
|
|
|
2020-07-05 11:59:03 +00:00
|
|
|
.nav-icon {
|
|
|
|
width: 3em;
|
|
|
|
padding-left: .5em;
|
|
|
|
display: flex;
|
|
|
|
justify-content: start;
|
|
|
|
align-items: center;
|
|
|
|
color: #C28200;
|
|
|
|
font-size: 1.5em;
|
|
|
|
opacity: 0.7;
|
|
|
|
}
|
|
|
|
|
|
|
|
.nav-item-content {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.nav-title {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
2020-07-15 20:32:42 +00:00
|
|
|
opacity: 0.7;
|
2020-07-05 11:59:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.nav-access {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
color: #FF6F0A;
|
|
|
|
opacity: 0.7;
|
|
|
|
}
|
|
|
|
|
|
|
|
.nav-item.enabled {
|
|
|
|
border-color: rgba(255, 111, 10, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
.nav-item.enabled .nav-access {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.nav-item.enabled .nav-icon {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.nav-item.enabled .nav-title {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.nav-item:hover {
|
|
|
|
transform: scale(1.05);
|
|
|
|
}
|
|
|
|
|
|
|
|
#nav-enabler {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mosaic {
|
|
|
|
background: white;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mosaic-header {
|
|
|
|
width: 100%;
|
|
|
|
opacity: 0.8;
|
|
|
|
text-align: right;
|
|
|
|
margin-bottom: 1.5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.card-container {
|
|
|
|
margin: 0 auto;
|
|
|
|
width: 85%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.card {
|
2020-07-07 11:28:55 +00:00
|
|
|
cursor: pointer;
|
2020-07-05 11:59:03 +00:00
|
|
|
display: flex;
|
|
|
|
border: 1px solid #bdc3c7;
|
|
|
|
border-radius: 4px;
|
|
|
|
margin-bottom: 1em;
|
|
|
|
box-shadow: 0 0 8px 0px rgba(0,0,0,0.1);
|
2020-07-19 13:26:57 +00:00
|
|
|
overflow: hidden;
|
2020-07-21 14:41:07 +00:00
|
|
|
text-decoration: none;
|
2020-07-23 10:43:20 +00:00
|
|
|
transition: transform 0.2s ease-in-out;
|
2020-07-07 11:28:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.card:hover {
|
2020-07-21 14:41:07 +00:00
|
|
|
text-decoration: none;
|
2020-07-05 11:59:03 +00:00
|
|
|
}
|
|
|
|
|
2020-07-21 14:41:07 +00:00
|
|
|
.card-image-container {
|
2020-07-05 11:59:03 +00:00
|
|
|
border-right: 1px solid #C4C4C4;
|
|
|
|
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
padding: 1em;
|
|
|
|
}
|
|
|
|
|
2020-07-21 14:41:07 +00:00
|
|
|
.card-image {
|
|
|
|
height: 12em;
|
2020-07-05 11:59:03 +00:00
|
|
|
width: 12em;
|
2020-07-21 14:41:07 +00:00
|
|
|
|
|
|
|
background-position: center;
|
|
|
|
background-size: cover;
|
2020-07-23 10:43:20 +00:00
|
|
|
transition: all 0.2s ease-in-out;
|
|
|
|
border: 0;
|
|
|
|
outline: 0;
|
|
|
|
box-shadow: 0;
|
2020-07-05 11:59:03 +00:00
|
|
|
}
|
|
|
|
|
2020-07-23 10:43:20 +00:00
|
|
|
.card-image:hover {
|
|
|
|
transform: scale(1.1);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-07-05 11:59:03 +00:00
|
|
|
.card-content {
|
2020-07-19 13:26:57 +00:00
|
|
|
width: 100%;
|
2020-07-05 11:59:03 +00:00
|
|
|
padding: 1.5em;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: space-between;
|
|
|
|
}
|
|
|
|
|
|
|
|
.card-title-container {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
}
|
|
|
|
|
|
|
|
.card-icon {
|
|
|
|
color: #C28200;
|
|
|
|
opacity: 0.85;
|
|
|
|
margin-top: -.5em;
|
|
|
|
margin-right: -.5em;
|
|
|
|
font-size: 1.4em;
|
|
|
|
}
|
|
|
|
|
2020-07-15 20:32:42 +00:00
|
|
|
.card-icon svg {
|
|
|
|
width: 1em;
|
|
|
|
height: 1em;
|
|
|
|
}
|
|
|
|
|
2020-07-05 11:59:03 +00:00
|
|
|
.card-title {
|
|
|
|
color: #B12008;
|
|
|
|
margin: 0;
|
|
|
|
margin-bottom: 0.5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.card-description {
|
|
|
|
color: #34495E;
|
|
|
|
margin: 0;
|
|
|
|
line-height: 1.6em;
|
2020-07-19 13:26:57 +00:00
|
|
|
position: relative;
|
2020-07-05 11:59:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.card-link {
|
2020-07-19 13:26:57 +00:00
|
|
|
position: absolute;
|
|
|
|
right: .5em;
|
|
|
|
bottom: 0;
|
|
|
|
margin-bottom: -.5em;
|
2020-07-05 11:59:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@media (max-width: 1350px) {
|
|
|
|
.card-container {
|
|
|
|
width: 100%;
|
|
|
|
}
|
2020-07-18 10:43:13 +00:00
|
|
|
.header-left {
|
|
|
|
padding-bottom: 1em;
|
|
|
|
}
|
2020-07-05 11:59:03 +00:00
|
|
|
}
|
|
|
|
|
2020-07-07 11:28:55 +00:00
|
|
|
@media (max-width: 1000px) {
|
2020-07-05 11:59:03 +00:00
|
|
|
.header {
|
|
|
|
padding-top: 1em;
|
|
|
|
padding-bottom: 1em;
|
|
|
|
}
|
|
|
|
.header-container {
|
|
|
|
display: block;
|
|
|
|
}
|
2020-07-07 11:28:55 +00:00
|
|
|
.header-left {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
.header-menu {
|
|
|
|
justify-content: center;
|
2020-07-18 10:43:13 +00:00
|
|
|
position: relative;
|
|
|
|
margin-top: 0;
|
2020-07-07 11:28:55 +00:00
|
|
|
}
|
2020-07-05 11:59:03 +00:00
|
|
|
.header-content {
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
.header-image {
|
|
|
|
margin: 0;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
.header-image img {
|
|
|
|
width: 6em;
|
|
|
|
}
|
|
|
|
.header-sub-title {
|
|
|
|
margin-top: 1em;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
.header-title {
|
|
|
|
text-align: center;
|
|
|
|
margin-bottom: .25em;
|
|
|
|
}
|
|
|
|
.header-description {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.content {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
.nav {
|
|
|
|
margin-right: 0;
|
|
|
|
user-select: none;
|
|
|
|
}
|
|
|
|
#nav-enabler {
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
#nav-enabler-icon {
|
|
|
|
transform: rotate(-90deg)
|
|
|
|
}
|
|
|
|
#nav-content {
|
|
|
|
max-height: 0;
|
|
|
|
transition: max-height 0.1s ease-out;
|
|
|
|
}
|
|
|
|
.nav-item {
|
|
|
|
width: auto;
|
|
|
|
}
|
|
|
|
.nav-mobile-enabler #nav-enabler-icon {
|
|
|
|
transition: all 0.1s ease;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mosaic {
|
|
|
|
position: relative;
|
|
|
|
border-top: 1px solid #C4C4C4;
|
|
|
|
padding-top: 1em;
|
|
|
|
}
|
|
|
|
.mosaic-header {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
.card {
|
|
|
|
display: block;
|
|
|
|
}
|
2020-07-21 14:41:07 +00:00
|
|
|
.card-image-container {
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
2020-07-05 11:59:03 +00:00
|
|
|
border-right: 0;
|
|
|
|
border-bottom: 1px solid #C4C4C4;
|
2020-07-21 14:41:07 +00:00
|
|
|
}
|
|
|
|
.card-content {
|
|
|
|
width: auto;
|
2020-07-05 11:59:03 +00:00
|
|
|
}
|
|
|
|
}
|