mirror of
https://github.com/Clortox/tylerperkins.xyz.git
synced 2026-03-07 10:37:58 +00:00
Add base index page
This commit is contained in:
57
static/css/footer.css
Normal file
57
static/css/footer.css
Normal file
@@ -0,0 +1,57 @@
|
||||
/* Footer */
|
||||
|
||||
footer {
|
||||
background-color: rgba(11,11,11,0.9);
|
||||
color: white;
|
||||
padding: 15px;
|
||||
text-align: center;
|
||||
padding-top: 3vh;
|
||||
}
|
||||
|
||||
.footer-fade {
|
||||
background: linear-gradient(rgba(11,11,12,0.2) 0%, rgba(11,11,12,1) 35%);
|
||||
}
|
||||
|
||||
.footer-sections {
|
||||
display: grid;
|
||||
align-content: center;
|
||||
justify-content: center;
|
||||
align-items: start;
|
||||
justify-items: center;
|
||||
grid-template-columns: 1fr 1fr 1fr;
|
||||
}
|
||||
|
||||
.footer-list {
|
||||
width: 100%;
|
||||
margin: 0;
|
||||
display: grid;
|
||||
grid-template-columns: 1fr;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.footer-list a {
|
||||
width: calc(100% - 30px);
|
||||
background: rgba(22,22,24,1);
|
||||
border: grey;
|
||||
text-decoration: underline 0.1em rgba(255,255,255,0);
|
||||
transition: 300ms;
|
||||
margin: 1px 0px;
|
||||
padding: 15px;
|
||||
|
||||
}
|
||||
|
||||
.footer-list a:hover {
|
||||
text-decoration: underline 0.1em rgba(255,255,255,1);
|
||||
background: rgba(33,33,36,1);
|
||||
|
||||
}
|
||||
|
||||
.footer-header {
|
||||
margin-top: 5px;
|
||||
|
||||
}
|
||||
|
||||
small {
|
||||
font-size: 0.8em;
|
||||
color: rgba(255,255,255,0.5);
|
||||
}
|
||||
Reference in New Issue
Block a user