color update
This commit is contained in:
parent
f538f7b844
commit
279b5ad3d0
11
src/App.css
11
src/App.css
@ -11,9 +11,7 @@
|
|||||||
.nav {
|
.nav {
|
||||||
background-color: rgb(47, 46, 58);
|
background-color: rgb(47, 46, 58);
|
||||||
height: 3em;
|
height: 3em;
|
||||||
-webkit-box-shadow: 0px 3px 10px 1px rgba(122, 122, 122, 0.59);
|
box-shadow: inset 0px 3px 20px 10px rgba(0, 0, 0, 0.3);
|
||||||
-moz-box-shadow: 0px 3px 10px 1px rgba(122, 122, 122, 0.59);
|
|
||||||
box-shadow: 0px 3px 10px 1px rgba(122, 122, 122, 0.59);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.nav a {
|
.nav a {
|
||||||
@ -51,8 +49,13 @@
|
|||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.copyright {
|
||||||
|
font-size: 0.7em;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
.hamburger-menu {
|
.hamburger-menu {
|
||||||
background-color: rgba(84, 84, 84, 0.9);
|
background-color: rgba(47, 46, 58, 0.9);
|
||||||
z-index: 100;
|
z-index: 100;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
right: 0;
|
right: 0;
|
||||||
|
|||||||
@ -1,5 +1,12 @@
|
|||||||
function Footer() {
|
function Footer() {
|
||||||
return <div className="container">Footer</div>;
|
const fullYear = new Date().getFullYear();
|
||||||
|
return (
|
||||||
|
<div className="container">
|
||||||
|
<div className="copyright">
|
||||||
|
© {fullYear} Mariia Shabelnik, all rights reserved
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
export default Footer;
|
export default Footer;
|
||||||
|
|||||||
@ -1,4 +1,6 @@
|
|||||||
body {
|
body {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
font-family: "Roboto Mono", monospace;
|
font-family: "Roboto Mono", monospace;
|
||||||
|
background-color: #302f39;
|
||||||
|
color: white;
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user