Skip to content
Snippets Groups Projects
stylesheet.css 26.9 KiB
Newer Older
„Sophia's avatar
„Sophia committed
body {
    margin: 0;
„Sophia's avatar
„Sophia committed
    font-family: "DM Sans", sans-serif;
„Sophia's avatar
„Sophia committed
    color: #03355C;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;

„Sophia's avatar
„Sophia committed
header {
    background-color: #ffffff;
    color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Optional: Schatten für Abgrenzung */
}

Victoria Badeke's avatar
Victoria Badeke committed
/*Navbar*/

„Sophia's avatar
„Sophia committed
.nav {
    height: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    justify-items: center;
    padding: 20px 10%;

}
.logo img {
    height: 50px;
    align-items: center;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 100px;
    margin: 0;
    padding: 0;
    align-items: center;
    box-sizing: border-box;
„Sophia's avatar
„Sophia committed
    color: #03355C;
„Sophia's avatar
„Sophia committed
    cursor: pointer;
„Sophia's avatar
„Sophia committed
}

.nav-links li a {
    text-decoration: none;
    color: #03355c;
    font-size: 26px;
    font-weight: 500;
    align-items: center;
}

.nav-links li a:hover {
    color: #03355c; /* Hover-Farbe */
    opacity: 0.5;
}

„Sophia's avatar
„Sophia committed
#merkliste-navbar {
„Sophia's avatar
„Sophia committed
    font-size:40px;
    color: #03355c;

}
„Sophia's avatar
„Sophia committed
#merkliste-navbar:hover {
„Sophia's avatar
„Sophia committed
    color: #03355c; /* Hover-Farbe */
    opacity: 0.5;
}

.fa-circle-user {
    margin-right: 30px;
    color: #03355c;
    font-size: 40px;
„Sophia's avatar
„Sophia committed
    cursor: pointer;
„Sophia's avatar
„Sophia committed
}
.fa-circle-user:hover {
    color: #03355c;
    opacity: 0.5;
    border: none;
}

„Sophia's avatar
„Sophia committed
#dropdown-anmelden {
„Sophia's avatar
„Sophia committed
    border: none;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Optional: Schatten für Abgrenzung */
    color: #03355c;
}

„Sophia's avatar
„Sophia committed
#login-button {
„Sophia's avatar
„Sophia committed
    background-color: #fb7300;
    color: #ffffff;
    border: none;
    border-radius: 50px;
    margin-left: 10px;
„Sophia's avatar
„Sophia committed
    cursor: pointer;
„Sophia's avatar
„Sophia committed

„Sophia's avatar
„Sophia committed
}
„Sophia's avatar
„Sophia committed
#login-button:hover {
„Sophia's avatar
„Sophia committed
    background-color: #e36c20;
    color: #ffffff;
}
„Sophia's avatar
„Sophia committed
#exampleDropdownFormEmail2 {
„Sophia's avatar
„Sophia committed
    border-color: #03355c;
    border-radius: 50px;
}
„Sophia's avatar
„Sophia committed
#exampleDropdownFormPassword2 {
    border-color: #03355c;
    border-radius: 50px;
„Sophia's avatar
„Sophia committed
}

Victoria Badeke's avatar
Victoria Badeke committed
/*Footer*/
„Sophia's avatar
„Sophia committed
.footer {
    background-color: #03355C;
    color: #fff;
    padding: 20px 10%;
    font-size: 20px;
Victoria Badeke's avatar
Victoria Badeke committed

„Sophia's avatar
„Sophia committed
}

.footer-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.footer-logo img {
    max-width: 150px;
}


.footer-section h4 {
    margin-bottom: 20px;
}



.footer-section ul {
    list-style: none;
    font-size: 20px;
    padding: 0;
    margin: 0;
}

.footer-section ul li a {
    color: #fff;
    margin: 20px;
}

.footer-section ul li a:hover {
    opacity: 0.5;
}

.payment-icons img {
    max-height: 40px;
    margin-right: 20px;
}

.social-icons a {
    color: #fff;
    font-size: 45px;
    margin-right: 20px;
„Sophia's avatar
„Sophia committed
    cursor: pointer;
„Sophia's avatar
„Sophia committed
}

.social-icons a:hover {
    opacity: 0.5;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9em;
    border-top: 1px solid #fff;
    padding-top: 10px;
}

Victoria Badeke's avatar
Victoria Badeke committed
/*Landkarte*/

„Sophia's avatar
„Sophia committed
/* Überschrift mit eigener Schriftart */
„Sophia's avatar
„Sophia committed
#h1-landkarte {
„Sophia's avatar
„Sophia committed
    font-family: Cy Grotesk Wide;
„Sophia's avatar
„Sophia committed
    color: #03355C;
„Sophia's avatar
„Sophia committed
    font-size: 34px;
„Sophia's avatar
„Sophia committed
    margin: 0;
„Sophia's avatar
„Sophia committed
    display: flex;
    justify-content: center; /* Zentriert horizontal */
    align-items: center; /* Zentriert vertikal */
„Sophia's avatar
„Sophia committed
    padding-top: 200px;
„Sophia's avatar
„Sophia committed
}

/* Absatztext mit Standardschriftart */
„Sophia's avatar
„Sophia committed
#subtitle-landkarte {
„Sophia's avatar
„Sophia committed
    font-family: 'DM Sans', sans-serif; /* Schriftart für den Absatztext */
    color: #03355C;
„Sophia's avatar
„Sophia committed
    font-size: 20px; /* Schriftgröße */
„Sophia's avatar
„Sophia committed
    display: flex;
    justify-content: center; /* Zentriert horizontal */
    align-items: center; /* Zentriert vertikal */
„Sophia's avatar
„Sophia committed
}

Sarah Gloger's avatar
Sarah Gloger committed

„Sophia's avatar
„Sophia committed

Victoria Badeke's avatar
Victoria Badeke committed
/* Weltkarte mit Pins */
„Sophia's avatar
„Sophia committed
.map-container {
Loading full blame...