77 lines
1.3 KiB
CSS
Executable file
77 lines
1.3 KiB
CSS
Executable file
/* == REGION: FOOTER is #4 of the 4 regions shown on every page
|
|
https://otwcode.github.io/docs/patterns/regions.html#footer-region
|
|
*/
|
|
|
|
#footer {
|
|
background: linear-gradient(90deg,rgba(255, 140, 0, 1) 0%, rgba(197, 185, 92, 1) 25%, rgba(199, 87, 171, 1) 50%, rgba(0, 0, 105, 1) 100%);
|
|
border-top: 2px solid;
|
|
color: #000;
|
|
float: left;
|
|
font-size: 0.75em;
|
|
position: relative;
|
|
padding: 0;
|
|
width: 100%;
|
|
}
|
|
|
|
#footer ul {
|
|
border: 0;
|
|
clear: both;
|
|
margin: 1.5em 0;
|
|
padding: 1em 5%;
|
|
float: left;
|
|
text-align: left;
|
|
width: 90%;
|
|
}
|
|
|
|
#footer li {
|
|
position: relative;
|
|
display: block;
|
|
}
|
|
|
|
#footer a, #footer button {
|
|
background: transparent;
|
|
border: 0;
|
|
font-weight: 400;
|
|
margin: auto;
|
|
outline: 0;
|
|
padding: 0;
|
|
vertical-align: baseline;
|
|
box-shadow: none;
|
|
border-radius: 0;
|
|
}
|
|
|
|
#footer a, #footer button {
|
|
color: #000;
|
|
display: inline;
|
|
text-decoration: underline;
|
|
line-height: 1.5;
|
|
white-space: normal;
|
|
text-underline-position: under;
|
|
}
|
|
|
|
#footer button {
|
|
cursor: pointer;
|
|
text-align: start;
|
|
height: unset;
|
|
}
|
|
|
|
#footer a:focus, #footer button:focus {
|
|
outline: 1px dotted;
|
|
}
|
|
|
|
#footer .module {
|
|
max-width: 20%;
|
|
padding: 0 2%;
|
|
}
|
|
|
|
#footer .menu {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
#footer .heading {
|
|
display: block;
|
|
color: #000;
|
|
}
|
|
|
|
/* END == */
|