Skip to content
Snippets Groups Projects
stylesheet.css 32.6 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;

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

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

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

    }
    .logo img {
        height: 50px;
        align-items: center;
    }
„Sophia's avatar
„Sophia committed

    .nav-links {
        list-style: none;
        display: flex;
        gap: 100px;
        margin: 0;
        padding: 0;
        align-items: center;
        box-sizing: border-box;
        color: #03355C;
        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;
    }
„Sophia's avatar
„Sophia committed

    .nav-links li a:hover {
        color: #03355c; /* Hover-Farbe */
        opacity: 0.5;
    }
„Sophia's avatar
„Sophia committed

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

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

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

    #dropdown-anmelden {
        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 {
        background-color: #fb7300;
        color: #ffffff;
        border: none;
        border-radius: 50px;
        margin-left: 10px;
        cursor: pointer;
„Sophia's avatar
„Sophia committed

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

    /*Footer*/
    .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;
    }
„Sophia's avatar
„Sophia committed

    .footer-logo img {
        max-width: 150px;
    }
„Sophia's avatar
„Sophia committed


    .footer-section h4 {
        margin-bottom: 20px;
    }
„Sophia's avatar
„Sophia committed



    .footer-section ul {
        list-style: none;
        font-size: 20px;
        padding: 0;
        margin: 0;
    }
„Sophia's avatar
„Sophia committed

    .footer-section ul li a {
        color: #fff;
        margin: 20px;
    }
„Sophia's avatar
„Sophia committed

    .footer-section ul li a:hover {
        opacity: 0.5;
    }
„Sophia's avatar
„Sophia committed

    .payment-icons img {
        max-height: 40px;
        margin-right: 20px;
    }
„Sophia's avatar
„Sophia committed

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

    .social-icons a:hover {
        opacity: 0.5;
    }
„Sophia's avatar
„Sophia committed

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

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

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

    /* Absatztext mit Standardschriftart */
    #subtitle-landkarte {
        font-family: 'DM Sans', sans-serif; /* Schriftart für den Absatztext */
        color: #03355C;
        font-size: 20px; /* Schriftgröße */
        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

    /* Weltkarte mit Pins */
    .map-container {
        display: flex;
        justify-content: center; /* Zentriert horizontal */
        align-items: center; /* Zentriert vertikal */
    }
    /*Bild der Karte*/
    .map {
        max-width: 100%; /* Karte passt sich der Bildschirmbreite an */
        height: auto;
    }
„Sophia's avatar
„Sophia committed

    /*Karusell Startseite Reisen*/
Loading full blame...