server/static/assets/home.css

341 lines
4.7 KiB
CSS
Raw Normal View History

.header {
2020-07-07 11:28:55 +00:00
/* border-bottom: 2px solid #C28100; */
padding-bottom: 1.5em;
padding-top: 1.5em;
2020-07-07 11:28:55 +00:00
background-color: #d35400;
}
.header-container {
2020-07-18 10:43:13 +00:00
position: relative;
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;
}
.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;
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;
}
.header-sub-title:hover {
2020-07-07 11:28:55 +00:00
opacity: 0.9;
color: #ecf0f1;
}
.header-description {
2020-07-07 11:28:55 +00:00
color: #ecf0f1;
}
.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;
}
.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;
}
.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;
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-07 11:28:55 +00:00
transition: all 0.2s;
2020-07-19 13:26:57 +00:00
height: 12em;
overflow: hidden;
2020-07-07 11:28:55 +00:00
}
.card:hover {
transform: scale(1.02);
}
.card-image {
border-right: 1px solid #C4C4C4;
display: flex;
justify-content: center;
align-items: center;
padding: 1em;
}
.card-image img {
width: 12em;
}
.card-content {
2020-07-19 13:26:57 +00:00
width: 100%;
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;
}
.card-title {
font-size: 1.6em;
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;
}
.card-link {
2020-07-19 13:26:57 +00:00
position: absolute;
right: .5em;
bottom: 0;
margin-bottom: -.5em;
}
@media (max-width: 1350px) {
.card-container {
width: 100%;
}
2020-07-18 10:43:13 +00:00
.header-left {
padding-bottom: 1em;
}
}
2020-07-07 11:28:55 +00:00
@media (max-width: 1000px) {
.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
}
.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;
}
.card-image {
border-right: 0;
border-bottom: 1px solid #C4C4C4;
margin: 0;
}
}