You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
103 lines
1.6 KiB
103 lines
1.6 KiB
/* |
|
* DO NOT EDIT THIS FILE. |
|
* See the following change record for more information, |
|
* https://www.drupal.org/node/3084859 |
|
* @preserve |
|
*/ |
|
|
|
/** |
|
* @file |
|
* Footer regions. |
|
*/ |
|
|
|
.site-footer { |
|
position: relative; /* stack above left social bar */ |
|
color: var(--color--gray-65); |
|
background: linear-gradient( |
|
180deg, |
|
var(--color--gray-5) 0%, |
|
var(--color--gray-10) 100% |
|
); |
|
/*background: #33210D;*/ |
|
background: #574938; |
|
/*height: 500px;*/ |
|
} |
|
.site-footer__inner.container { |
|
/*height: 350px;*/ |
|
} |
|
.site-footer .menu { |
|
margin-inline-start: 0; |
|
list-style: none; |
|
} |
|
|
|
.site-footer .menu ul { |
|
margin-inline-start: var(--sp); |
|
} |
|
|
|
.site-footer .menu li { |
|
margin-block-end: var(--sp0-5); |
|
} |
|
|
|
.site-footer a { |
|
color: inherit; |
|
} |
|
|
|
.site-footer a:hover { |
|
-webkit-text-decoration: none; |
|
text-decoration: none; |
|
} |
|
|
|
@media ((((min-width: 60rem)))) { |
|
body:not(.is-always-mobile-nav) .site-footer { |
|
border-inline-start: solid var(--content-left) #382f24; |
|
} |
|
} |
|
|
|
footer svg { |
|
width: 100%; |
|
height: auto; |
|
} |
|
|
|
footer svg * { |
|
fill: #f6dbbb; |
|
} |
|
|
|
footer svg * #Oval, |
|
footer svg * #Oval use { |
|
stroke: #f6dbbb; |
|
} |
|
.footer-logo svg { |
|
width: 9rem; |
|
/* stroke: aqua; */ |
|
/* color: bisque; */ |
|
} |
|
|
|
#prov_govt { |
|
text-align: center; |
|
} |
|
|
|
#museum { |
|
text-align: center; |
|
} |
|
|
|
#upei_logo svg { |
|
padding-top: 1rem; |
|
width: 11rem; |
|
} |
|
div#upei_logo { |
|
display: flex; |
|
justify-content: space-around; |
|
} |
|
.subfooter { |
|
color: #f6dbbb !important; |
|
display: flex; |
|
justify-content: space-between; |
|
font-family: var(--font-sans); |
|
font-size: 0.8em; |
|
align-items: center; |
|
border-top: 4px double #f6dbbb; |
|
padding-top: 1em; |
|
} |
|
.subfooter__image { |
|
width: 300px; |
|
}
|
|
|