Initial commit

This commit is contained in:
Local Administrator
2025-04-18 10:32:42 +02:00
commit b83134aca3
29643 changed files with 3045897 additions and 0 deletions

36
header_css.css Normal file
View File

@@ -0,0 +1,36 @@
/* Reset default margin and padding */
body, html {
margin: 0;
padding: 0;
height: 100%;
width: 100%;
}
/* Slider section styling */
.slider {
position: relative;
width: 95%; /* Subtract 40px for 20px padding on each side */
height: 900px; /* Adjust height as needed */
overflow: hidden;
margin: 0 auto; /* Center the slider */
background: linear-gradient(to bottom, rgb(30, 30, 30), rgba(0, 0, 0, 0.2)),
url('assets/images/hero/hero.jpg') no-repeat center center;
background-size: cover;
border-radius: 20px; /* Rounded corners */
z-index: 0;
border: linear-gradient(to bottom, rgb(30, 30, 30), rgba(0, 0, 0, 0.2)),
1px solid rgba(255, 255, 255, 0.1);
}
/* Content within the slider */
.slider-content {
position: absolute;
width: 100%;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
text-align: center;
color: #fff; /* White text color */
z-index: 1; /* Ensure its above the slider images */
}