Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /* Globales dunkles, aber farbenfrohes Theme */
- body {
- background-color: #121212; /* sehr dunkel */
- color: #e0e0e0; /* helle Schrift */
- }
- main{
- padding-top: 80px;
- }
- /* Custom Button, inspiriert von der Portfolio-Seite */
- .btn-custom {
- color: #0dcaf0; /* Akzentfarbe Blau (Bootstrap Info-Farbe) */
- border: 2px solid #0dcaf0;
- background-color: transparent;
- transition: background-color 0.3s, color 0.3s;
- }
- .btn-custom:hover {
- background-color: #0dcaf0;
- color: #fff;
- }
- /* Weitere Dekorationen */
- a {
- transition: color 0.3s;
- }
- a:hover {
- color: #0dcaf0;
- }
- /* Alternative Akzentfarben */
- .accent-blue {
- color: #0dcaf0;
- }
- .accent-pink {
- color: #ff1177;
- }
- .accent-green {
- color: #28a745;
- }
- .limegreen {
- color: #c4ff00;
- }
- .red{
- color: #ff0000;
- }
- .blue{
- color: #0000ff;
- }
- .nav-link {
- cursor: pointer;
- padding: 0;
- }
- .nav-link:hover,
- .nav-link:active {
- color: limegreen !important;
- }
- .icon-link:active i, .icon-link:hover i {
- color: limegreen;
- }
- .navbar-brand {
- font-size: 1.2rem; /* Kleinere Schriftgröße für das Logo */
- }
- .navbar-nav .nav-link {
- font-size: 1rem; /* Kleinere Menü-Links */
- padding: 5px 10px;
- }
- .team-img {
- width: 120px;
- height: 120px;
- object-fit: cover;
- border-radius: 50%;
- display: block;
- margin: 10px auto;
- box-shadow: 0 0 8px rgba(0,0,0,0.1);
- }
- /* Kontakt */
- form {
- background: darkslategray
- padding: 30px;
- border-radius: 12px;
- box-shadow: 0 5px 20px rgba(0,0,0,0.05);
- }
- .form-label {
- font-weight: 600;
- color: #cce4f6;
- }
- .form-control,
- .form-select {
- background-color: rgba(255, 255, 255, 0.05);
- border: 1px solid rgba(255, 255, 255, 0.2);
- color: #fff;
- border-radius: 8px;
- padding: 12px;
- transition: all 0.3s ease-in-out;
- }
- .form-select option {
- background-color: #1e1e1e;
- color: #ffffff;
- }
- .form-control:focus,
- .form-select:focus {
- background-color: rgba(255, 255, 255, 0.1);
- border-color: #1abc9c;
- box-shadow: 0 0 5px rgba(26, 188, 156, 0.5);
- }
- textarea.form-control {
- color: #ffffff !important;
- background-color: rgba(255, 255, 255, 0.05);
- border: 1px solid rgba(255, 255, 255, 0.2);
- }
- input.form-control,
- textarea.form-control {
- color: #ffffff !important;
- background-color: rgba(255, 255, 255, 0.05);
- border: 1px solid rgba(255, 255, 255, 0.2);
- }
- .btn-primary {
- background-color: #0d7377;
- border: none;
- padding: 12px;
- font-weight: bold;
- color: #fff;
- border-radius: 8px;
- transition: all 0.3s ease-in-out;
- box-shadow: 0 4px 12px rgba(13, 115, 119, 0.3);
- }
- .btn-primary:hover {
- background-color: #14ffec;
- color: #000;
- box-shadow: 0 6px 16px rgba(20, 255, 236, 0.45);
- transform: scale(1.05);
- }
- /* Wrapper um das Formular – hier wird der Hintergrund definiert */
- .form-wrapper {
- background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
- padding: 40px;
- border-radius: 16px;
- box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
- color: #fff;
- margin-bottom: 80px;
- }
- /* Hintergrundbilder */
- .about {
- background: url('../images/about.jpg') no-repeat center center fixed;
- background-size: cover;
- }
- .portfolio {
- background: url('../images/portfolio.jpg') no-repeat center center fixed;
- background-size: cover;
- }
- .index {
- background: url('../images/bgindex.png') no-repeat center center fixed;
- background-size: cover;
- }
- .contact {
- background: url('../images/contact.jpg') no-repeat center center fixed;
- background-size: cover;
- }
- .team_detail-member1{
- background: url('../images/bgindex.png') no-repeat center center fixed;
- background-size: cover;
- }
- .team_detail-member2{
- background: url('../images/sozialmedia.png') no-repeat center center fixed;
- background-size: cover;
- }
- .project_alpha_gallery {
- background: url('../images/paracord_bg.jpg') no-repeat center center fixed;
- background-size: cover;
- }
- .project_beta_gallery{
- background: url('../images/gaming_bg.jpg') no-repeat center center fixed;
- background-size: cover;
- }
- .project_gamma_gallery{
- background: url('../images/holiday_bg.jpg') no-repeat center center fixed;
- background-size: cover;
- }
- .info{
- background: url('../images/info/information.jpg') no-repeat center center fixed;
- background-size: cover;
- }
- .impressum{
- background: url('../images/impressum.png') no-repeat center center fixed;
- background-size: cover;
- }
- .privacy{
- background: url('../images/datenschutz.png') no-repeat center center fixed;
- background-size: cover;
- }
- .heviz2025 {
- background: url('../images/heviz_bg.jpg') no-repeat center center fixed;
- background-size: cover;
- }
- .holiday_hu {
- background: url('../images/holiday_hu_bg.jpg') no-repeat center center fixed;
- background-size: cover;
- }
- /* Fixierter Header oben */
- .fixed-header {
- position: fixed;
- height: 60px; /* Gleiche Höhe wie dein Footer */
- top: 0;
- left: 0;
- width: 100%;
- background: #000; /* Beispiel-Farbe */
- color: white;
- padding: 15px;
- box-shadow: 0 2px 10px rgba(0,0,0,0.1);
- z-index: 1000;
- padding: 0;
- }
- /* Hauptinhalt mit Platz für den Header */
- .content {
- flex: 1;
- padding-top: 60px; /* Platz für Header einberechnen */
- padding-bottom: 50px;
- }
- /* Fixierter Footer unten */
- .fixed-footer {
- position: fixed;
- bottom: 0;
- left: 0;
- width: 100%;
- background: #000; /* Beispiel-Farbe */
- color: white;
- padding: 15px;
- text-align: center;
- box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
- z-index: 1000;
- }
- .card{
- background: rgba(0, 0, 0, 0.7); /* Leichter dunkler Hintergrund mit Transparenz */
- border: 2px solid rgba(255, 255, 255, 0.3); /* Weißer, leicht transparenter Rahmen */
- border-radius: 10px; /* Abgerundete Ecken für einen sanften Look */
- padding: 20px;
- box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); /* Sanfte Schatten für mehr Tiefe */
- }
- .custom-card{
- background: rgba(0,0,0,0.7);
- border: 2px solid rgba(255,255,255,0.3);
- border-radius: 10px;
- padding: 20px;
- box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
- transition: 0.3s ease;
- }
- .rounded-circle {
- width: 200px; /* Größe anpassen */
- height: 200px;
- object-fit: cover; /* Verhindert Verzerrungen und schneidet das Bild korrekt zu */
- border-radius: 50%; /* Macht das Bild wirklich rund */
- border: 4px solid rgba(255, 255, 255, 0.3); /* Optional: Leichter, transparenter Rahmen */
- box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); /* Optional: Schatten für einen edlen Effekt */
- }
- .team-profile-card {
- max-width: 500px;
- background: rgba(0, 0, 0, 0.4);
- border: 1px solid rgba(255, 255, 255, 0.2);
- border-radius: 20px;
- backdrop-filter: blur(8px);
- box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
- transition: 0.3s ease;
- }
- .team-profile-card:hover{
- transform: scale(1.03);
- }
- .team-profile-img {
- width: 180px;
- height: 180px;
- object-fit: cover;
- border-radius: 50%;
- border: 4px solid rgba(255, 255, 255, 0.3);
- box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
- }
- .about-card {
- background: rgba(0, 0, 0, 0.4);
- border: 2px solid rgba(255, 255, 255, 0.2);
- border-radius: 20px;
- backdrop-filter: blur(8px);
- box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
- transition: transform 0.3s ease, box-shadow 0.3s ease;
- }
- .about-card:hover {
- transform: scale(1.03);
- box-shadow: 0 12px 28px rgba(0, 0, 0, 0.5);
- }
- body.team_detail-member1 main {
- margin-top: 0px;
- }
- .info-card {
- background: rgba(255, 255, 255, 0.06);
- border: 2px solid rgba(255, 255, 255, 0.2);
- border-radius: 16px;
- box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
- transition: transform 0.3s ease;
- }
- .info-card:hover {
- transform: scale(1.03);
- }
- .img-fluid {
- border: 2px solid #ddd !important;
- box-shadow: none !important;
- }
- .img-fluid:hover {
- border-color: #f39c12; /* Schöner Orange-Ton beim Hover */
- transform: scale(1.03);
- transition: 0.3s ease;
- }
- body.info .card:last-of-type {
- margin-bottom: 120px !important;
- }
- .info-card ul li {
- margin-bottom: 10px;
- font-size: 1rem;
- }
- .info-card strong {
- color: #ffc107;
- }
- .card-title-para{
- color:#ffc107;
- text-align: center;
- }
- .custom-card {
- border: 2px solid rgba(255, 255, 255, 0.2); /* Eleganter Rahmen */
- border-radius: 12px;
- box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
- transition: transform 0.3s ease, box-shadow 0.3s ease;
- height: 400px; /* Fixierte Kartenhöhe */
- }
- .custom-card:hover {
- transform: scale(1.05);
- box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
- }
- .card:last-of-type {
- margin-bottom: 80px !important; /* Sicherer Abstand zum Footer */
- margin-top: 20px !important; /* Sicherer Abstand zum oberen Inhalt */
- }
- .card-img-top {
- height: 200px; /* Verhindert zu hohe Bilder */
- object-fit: cover;
- border-radius: 10px;
- }
- .card-title {
- font-size: 1.1rem;
- font-weight: 500;
- background: rgba(0, 0, 0, 0.25);
- padding: 6px 12px;
- border-radius: 8px;
- display: inline-block;
- color:#ffc107;
- }
- .back-btn-wrapper {
- margin-top : 40px;
- margin-bottom: 120px;
- }
- .paracord-card {
- border: 3px solid rgba(255, 255, 255, 0.2);
- border-radius: 12px;
- box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
- transition: transform 0.3s ease, box-shadow 0.3s ease;
- height: 300px; /* Fixierte Kartenhöhe */
- background: rgba(255, 255, 255, 0.07);
- }
- .paracord-text{
- color: #ffc107; /* Helle Akzentfarbe für den Text */
- font-weight: bold;
- text-align: center;
- margin-top: 10px;
- font-size: 1.2rem; /* Größere Schriftgröße für bessere Lesbarkeit */
- background: rgba(255, 255, 255, 0.07);
- border: 3px solid rgba(255, 255, 255, 0.2);
- border-radius: 12px;
- }
- .paracord-card:hover {
- transform: scale(1.05);
- box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
- }
- .paracord-img {
- height: 200px;
- object-fit: cover;
- border-radius: 10px;
- }
- .paracord-body {
- text-align: center;
- min-height: 50px;
- }
- .back-btn-wrapper {
- margin-top: 40px;
- margin-bottom: 80px; /* Sicherer Abstand zum Footer */
- }
- .paracord-gallery .col {
- margin-bottom: -70px !important; /* Verringert den Abstand zwischen Reihen */
- }
- .custom-card-style {
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- align-items: center;
- height: 400px !important; /* Erzwingt gleiche Höhe */
- border: 3px solid rgba(255, 255, 255, 0.2);
- border-radius: 12px;
- background: #222; /* Neutraler, stilvoller Hintergrund */
- box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
- transition: 0.3s ease;
- }
- .gaming-gallery .col {
- margin-bottom: -70px !important;
- padding-bottom: 5px;
- }
- .gaming-gallery {
- row-gap: 0px !important;
- }
- .custom-card-style:hover{
- transform: scale(1.05);
- box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
- }
- .card-img-top-gal {
- height: 160px;
- object-fit: cover;
- width: 100%;
- border-radius: 10px;
- }
- .game-text{
- color: #ffc107; /* Helle Akzentfarbe für den Text */
- font-weight: bold;
- text-align: center;
- margin-top: 10px;
- font-size: 1.2rem; /* Größere Schriftgröße für bessere Lesbarkeit */
- border: 3px solid rgba(255, 255, 255, 0.2);
- border-radius: 12px;
- background: #222; /* Neutraler, stilvoller Hintergrund */
- }
- .impressum-container {
- display: flex;
- justify-content: space-between;
- flex-wrap: wrap;
- gap: 20px;
- padding: 20px;
- background: rgba(255, 255, 255, 0.05);
- border-radius: 12px;
- border: 3px solid rgba(255, 255, 255, 0.2);
- box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
- opacity: 0;
- transform: translateY(20px);
- animation: fadeIn 1s ease-out forwards;
- }
- @keyframes fadeIn {
- from {
- opacity: 0;
- transform: translateY(20px);
- }
- to {
- opacity: 1;
- transform: translateY(0);
- }
- }
- .company-info, .legal-info {
- flex: 1;
- min-width: 280px;
- }
- .company-info h3, .legal-info h4 {
- color: #f8f9fa;
- font-weight: 600;
- }
- p,li {
- color: #dcdcdc;
- font-size: 16px;
- }
- .datenschutz-container {
- display: flex;
- justify-content: space-between;
- flex-wrap: wrap;
- gap: 20px;
- padding: 20px;
- background: rgba(255, 255, 255, 0.05);
- border: 3px solid rgba(255, 255, 255, 0.2);
- border-radius: 12px;
- box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
- opacity: 0;
- transform: translateY(20px);
- animation: fadeIn 1s ease-out forwards;
- }
- @keyframes fadeIn {
- from {
- opacity: 0;
- transform: translateY(20px);
- }
- to {
- opacity: 1;
- transform: translateY(0);
- }
- }
- .privacy-info, .cookie-info {
- flex: 1;
- min-width: 280px;
- }
- .privacy-info h3, .cookie-info h4 {
- color: #f8f9fa;
- font-weight: 600;
- }
- .text-center.mt-4 {
- margin-bottom: 80px; /* Sicherer Abstand nach dem Button */
- }
- .heviz-wrapper {
- display: flex;
- flex-wrap: wrap;
- justify-content: center;
- gap: 2rem;
- padding: 30px;
- margin: 60px 0;
- border: 2px solid rgba(255, 255, 255, 0.3);
- border-radius: 12px;
- background-color: rgba(255, 255, 255, 0.05);
- box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
- }
- .heviz-card {
- width: 500px;
- flex-grow: 1;
- display: flex;
- flex-direction: column;
- }
- /* Slideshow */
- .carousel-inner {
- aspect-ratio: 16 / 9;
- width: 100%;
- overflow: hidden;
- border-radius: 8px;
- }
- .carousel-inner img {
- width: 100%;
- height: 100%;
- object-fit: cover;
- }
- /* Beschreibungskarte */
- .card-heviz {
- background: rgba(0, 0, 0, 0.5);
- border: 2px solid rgba(255, 255, 255, 0.3);
- border-radius: 10px;
- padding: 20px;
- box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
- transition: transform 0.3s ease, box-shadow 0.3s ease;
- }
- .card-heviz:hover {
- transform: scale(1.03);
- box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
- }
- .footer-link {
- color: #fff;
- transition: color 0.3s ease;
- }
- .footer-link:hover {
- color: #f0c040;
- text-decoration: underline;
- }
Add Comment
Please, Sign In to add comment