mirror of
https://github.com/hazemKrimi/personal-website.git
synced 2026-05-01 18:00:26 +00:00
22 lines
361 B
CSS
22 lines
361 B
CSS
:root {
|
|
--footer-light-background: #ECECEC;
|
|
--footer-dark-background: #131212;
|
|
}
|
|
|
|
footer {
|
|
width: 100%;
|
|
min-height: 25rem;
|
|
padding: 3rem 5rem;
|
|
margin-top: 2.5rem;
|
|
|
|
display: flex;
|
|
align-items: start;
|
|
column-gap: 6rem;
|
|
|
|
background-color: var(--footer-background);
|
|
color: var(--text);
|
|
}
|
|
|
|
footer div {
|
|
width: 20rem;
|
|
} |