Refactor/Css #41
6 changed files with 8 additions and 6 deletions
|
@ -12,8 +12,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.home,
|
.home,
|
||||||
.about,
|
.about {
|
||||||
.sign-up {
|
|
||||||
display: flex;
|
display: flex;
|
||||||
height: 90vh;
|
height: 90vh;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
@ -35,6 +34,7 @@
|
||||||
align-content: center;
|
align-content: center;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
background-color: var(--secondary);
|
background-color: var(--secondary);
|
||||||
|
color: var(--primary);
|
||||||
}
|
}
|
||||||
.sitePage h1 {
|
.sitePage h1 {
|
||||||
font-size: 80px;
|
font-size: 80px;
|
||||||
|
|
|
@ -10,7 +10,7 @@ function Footer() {
|
||||||
<div className="footer-link-wrapper">
|
<div className="footer-link-wrapper">
|
||||||
<div className="footer-link-items">
|
<div className="footer-link-items">
|
||||||
<h2>Informationen</h2>
|
<h2>Informationen</h2>
|
||||||
<Link to="/">Hintergrund</Link>
|
<Link to="/ueber">Hintergrund</Link>
|
||||||
<Link to="/manual">Wie funktioniert das?</Link>
|
<Link to="/manual">Wie funktioniert das?</Link>
|
||||||
</div>
|
</div>
|
||||||
<div className="footer-link-items">
|
<div className="footer-link-items">
|
||||||
|
|
Binary file not shown.
Binary file not shown.
|
@ -48,7 +48,7 @@ function Navbar() {
|
||||||
</li>
|
</li>
|
||||||
<li className="nav-item">
|
<li className="nav-item">
|
||||||
<Link
|
<Link
|
||||||
to="/services"
|
to="/Ueber"
|
||||||
className="nav-links"
|
className="nav-links"
|
||||||
onClick={closeMobileMenu}
|
onClick={closeMobileMenu}
|
||||||
>
|
>
|
||||||
|
@ -57,7 +57,7 @@ function Navbar() {
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<Link
|
<Link
|
||||||
to="/sign-up"
|
to="/manual"
|
||||||
className="nav-links"
|
className="nav-links"
|
||||||
onClick={closeMobileMenu}
|
onClick={closeMobileMenu}
|
||||||
>
|
>
|
||||||
|
|
|
@ -5,7 +5,9 @@ import Footer from "../../Footer";
|
||||||
export default function Ueber() {
|
export default function Ueber() {
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<h2 className="about">Über das Projekt</h2>
|
<div className="sitePage">
|
||||||
|
<h1>Über das Projekt</h1>
|
||||||
|
</div>
|
||||||
<Footer />
|
<Footer />
|
||||||
</>
|
</>
|
||||||
);
|
);
|
||||||
|
|
Loading…
Reference in a new issue