forked from markus/AMPERION_Webpage
juli25
This commit is contained in:
parent
861bb178f1
commit
9df489d983
33 changed files with 1067 additions and 240 deletions
|
|
@ -677,18 +677,20 @@ span.cloaked-e-mail:before {
|
|||
}
|
||||
/* copy from here */
|
||||
.scrolldown {
|
||||
--color: white;
|
||||
--sizeX: 30px;
|
||||
--sizeY: 50px;
|
||||
position: relative;
|
||||
width: var(--sizeX);
|
||||
height: var(--sizeY);
|
||||
margin-left: calc(50% - var(--sizeX) / 2); /* Korrigiert für Zentrierung */
|
||||
margin-left: calc(50% - var(--sizeX) / 2);
|
||||
margin-top: 100px;
|
||||
border: calc(var(--sizeX) / 10) solid var(--color);
|
||||
border: calc(var(--sizeX) / 10) solid currentColor;
|
||||
border-radius: 50px;
|
||||
box-sizing: border-box;
|
||||
margin-bottom: 16px;
|
||||
|
||||
color: white; /* Anfangsfarbe */
|
||||
transition: color 0.3s;
|
||||
}
|
||||
|
||||
.scrolldown::before {
|
||||
|
|
@ -699,13 +701,17 @@ span.cloaked-e-mail:before {
|
|||
width: 6px;
|
||||
height: 6px;
|
||||
margin-left: -3px;
|
||||
background-color: var(--color);
|
||||
background-color: currentColor;
|
||||
border-radius: 100%;
|
||||
animation: scrolldown-anim 2s infinite;
|
||||
box-sizing: border-box;
|
||||
box-shadow: 0px -5px 3px 1px #ffffff66;
|
||||
}
|
||||
|
||||
.scrolldown:hover {
|
||||
color: #F5A623; /* Neue Farbe beim Hover */
|
||||
}
|
||||
|
||||
@keyframes scrolldown-anim {
|
||||
0% {
|
||||
opacity: 0;
|
||||
|
|
@ -739,15 +745,20 @@ span.cloaked-e-mail:before {
|
|||
.chevrondown {
|
||||
margin-top: -6px;
|
||||
position: relative;
|
||||
border: solid var(--color);
|
||||
border: solid currentColor;
|
||||
border-width: 0 3px 3px 0;
|
||||
display: inline-block;
|
||||
padding: 0; /* Stellt sicher, dass kein zusätzliches Padding hinzugefügt wird */
|
||||
width: 10px;
|
||||
height: 10px;
|
||||
transform: rotate(45deg);
|
||||
|
||||
}
|
||||
|
||||
.chevrondown:hover {
|
||||
color: #F5A623;
|
||||
}
|
||||
|
||||
|
||||
.chevrondown:nth-child(odd) {
|
||||
animation: pulse 500ms ease infinite alternate;
|
||||
}
|
||||
|
|
@ -756,6 +767,16 @@ span.cloaked-e-mail:before {
|
|||
animation: pulse 500ms ease infinite alternate 250ms;
|
||||
}
|
||||
|
||||
|
||||
.scrolldown {
|
||||
color: rgb(0, 0, 0);
|
||||
transition: color 0.3s;
|
||||
}
|
||||
|
||||
.scrolldown:hover {
|
||||
color: #F5A623;
|
||||
}
|
||||
|
||||
@keyframes pulse {
|
||||
from {
|
||||
opacity: 0;
|
||||
|
|
|
|||
|
|
@ -186,3 +186,78 @@ html {
|
|||
}
|
||||
}
|
||||
|
||||
.custom-container {
|
||||
max-width: 1800px; /* oder was du möchtest */
|
||||
margin: 0 auto;
|
||||
padding-left: 30px;
|
||||
padding-right: 30px;
|
||||
}
|
||||
|
||||
|
||||
body {
|
||||
font-family: Arial, sans-serif;
|
||||
text-align: center;
|
||||
background-color: #ffffff;
|
||||
margin: 0;
|
||||
padding: 20px;
|
||||
}
|
||||
|
||||
.services-title {
|
||||
margin-top: 50px;
|
||||
color: #046e6e;
|
||||
}
|
||||
|
||||
.services-description {
|
||||
color: black;
|
||||
margin-bottom: 50px;
|
||||
}
|
||||
|
||||
/* Standard-Desktop-Layout */
|
||||
.services-section {
|
||||
background-color: #f1f1f1; /* Hintergrundfarbe der Sektion auf Schwarz setzen */
|
||||
padding: 40px 0; /* Padding für die Sektion */
|
||||
width: 100%; /* Volle Breite */
|
||||
box-sizing: border-box; /* Padding in der Breite berücksichtigen */
|
||||
}
|
||||
|
||||
.services-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(3, 1fr); /* Drei Spalten für Desktop */
|
||||
gap: 20px;
|
||||
max-width: 1200px;
|
||||
margin: 0 auto; /* Zentriert das Raster */
|
||||
padding: 0 20px; /* Optional: Padding für kleinere Bildschirme */
|
||||
}
|
||||
|
||||
.service-card {
|
||||
background-color: #f1f1f1; /* Hintergrundfarbe der Boxen auf Schwarz setzen */
|
||||
color: white; /* Textfarbe auf Weiß setzen für bessere Lesbarkeit */
|
||||
|
||||
border-radius: 10px;
|
||||
box-shadow: 0 4px 8px rgba(0, 0, 0, 0);
|
||||
padding: 20px;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.service-icon {
|
||||
width: 60px;
|
||||
height: 60px;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
|
||||
.service-card-title {
|
||||
color: black; /* Titel-Textfarbe auf Weiß setzen */
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.service-card-description {
|
||||
color: black; /* Hellgraue Farbe für den Beschreibungstext */
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
/* Anpassungen für Mobilgeräte */
|
||||
@media (max-width: 768px) {
|
||||
.services-grid {
|
||||
grid-template-columns: 1fr; /* Eine Spalte für Mobilgeräte */
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -20,7 +20,7 @@
|
|||
padding-bottom: 5px;
|
||||
|
||||
a {
|
||||
color: #7b7b7b;
|
||||
color: $black;
|
||||
padding: 10px 15px;
|
||||
|
||||
font : {
|
||||
|
|
@ -32,7 +32,7 @@
|
|||
|
||||
&:hover,
|
||||
&:focus {
|
||||
color: $black;
|
||||
color: #f5a623;
|
||||
background: transparent;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
.service {
|
||||
text-align: center;
|
||||
padding: 90px 0;
|
||||
padding: 30px 0;
|
||||
|
||||
@include tablet {
|
||||
padding-top: 20px;
|
||||
|
|
@ -8,7 +8,7 @@
|
|||
}
|
||||
|
||||
.service-item {
|
||||
padding-bottom: 30px;
|
||||
padding-bottom: 10px;
|
||||
|
||||
i {
|
||||
font-size: 50px;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue