iiiypuk
/
mySite
Archived
1
0
Fork 0
This repository has been archived on 2022-09-03. You can view files and clone it, but cannot push or open issues or pull requests.
mySite/styles/styles.css

42 lines
766 B
CSS

@import url(chota.min.css);
:root {
--bg-color: #181818;
--bg-secondary-color: #f3f3f6;
--bg-footer: #dadada;
--color-text: #d1dce0;
--color-primary: #6190ff; /* #14854F */
--color-lightGrey: #d2d6dd;
--color-grey: #747681;
--color-darkGrey: #3f4144;
--color-error: #d43939;
--color-success: #28bd14;
--grid-maxWidth: 120rem;
--grid-gutter: 2rem;
--font-size: 1.7rem;
--font-color: #333333;
--font-family-sans: 'ABeeZee', sans-serif;
--font-family-mono: monaco, 'Consolas', 'Lucida Console', monospace;
}
body {
color: var(--color-text);
}
footer {
background-color: var(--bg-footer);
position: fixed;
left: 0;
bottom: 0;
width: 100%;
color: #d1dce0;
opacity: 0.9;
padding: 1em;
}
footer img {
width: 1.2em;
vertical-align: middle;
}