mirror of
https://github.com/vectras-team/as3.github.io.git
synced 2024-11-23 07:01:53 +00:00
393 lines
7.0 KiB
CSS
393 lines
7.0 KiB
CSS
@font-face {
|
|
font-family: myFirstFont;
|
|
src: url(font.otf);
|
|
}
|
|
@font-face{
|
|
font-family: ph2;
|
|
src: url(Roboto-Regular.ttf);
|
|
}
|
|
|
|
body {
|
|
background-color: black;
|
|
font-family: ph2;
|
|
min-width: fit-content;
|
|
}
|
|
h1 {
|
|
font-family: myFirstFont;
|
|
color : white;
|
|
}
|
|
h3 {
|
|
font-family: myFirstFont;
|
|
color : white;
|
|
text-shadow:
|
|
0 0 5px #ffffff,
|
|
0 0 25px #ffffff,
|
|
0 0 30px #ffffff,
|
|
0 0 35px #ffffff;
|
|
}
|
|
h2 {
|
|
font-family: ph2;
|
|
color : white;
|
|
}
|
|
p{
|
|
font-family: ph2;
|
|
color : white;
|
|
}
|
|
a{
|
|
color:white;
|
|
text-decoration: none;
|
|
}
|
|
a:hover{
|
|
opacity: 3;
|
|
text-decoration: none;
|
|
transition: 0.7s;
|
|
}
|
|
hr{
|
|
color:#ffffff;
|
|
}
|
|
.header{
|
|
text-align :center;
|
|
}
|
|
#c911c{
|
|
width: 100%;
|
|
height: 70%; /* Maintain aspect ratio */
|
|
opacity: 0.35;
|
|
display: block; /* Remove default margin/padding */
|
|
}
|
|
.centershow{
|
|
position: relative;
|
|
width: 100%;
|
|
max-width: 1900px; /* Adjust as needed */
|
|
margin: 0 auto; /* Center the container */
|
|
}
|
|
.text911{
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
transform: translate(-50%, -50%);
|
|
color: white; /* Ensure text is visible against video */
|
|
font-size: 1.5em; /* Adjust as needed */
|
|
padding: 10px; /* Optional: Add padding */
|
|
text-align: center; /* Center text alignment */
|
|
|
|
}
|
|
.h2911{
|
|
position: absolute;
|
|
bottom: 60px;
|
|
left: 50px;
|
|
color:white;
|
|
}
|
|
.btn911{
|
|
position: absolute;
|
|
bottom: 90px;
|
|
left: 370px;
|
|
color:white;
|
|
}
|
|
#btn911{
|
|
color:white;
|
|
background-color:#272a2e;
|
|
border:solid 0px;
|
|
width:140px;
|
|
height:40px;
|
|
font-family: ph2;
|
|
}
|
|
.container {
|
|
max-width: 50000px;
|
|
position: relative;
|
|
margin: auto;
|
|
width: 100%;
|
|
z-index: 0;
|
|
}
|
|
.prev, .next {
|
|
cursor: pointer;
|
|
position: absolute;
|
|
top: 50%;
|
|
width: auto;
|
|
margin-top: -22px;
|
|
padding: 16px;
|
|
color: white;
|
|
font-weight: bold;
|
|
font-size: 18px;
|
|
transition: 0.6s ease;
|
|
border-radius: 0 3px 3px 0;
|
|
user-select: none;
|
|
}
|
|
.next {
|
|
right: 0;
|
|
border-radius: 3px 0 0 3px;
|
|
}
|
|
.prev {
|
|
left: 0;
|
|
border-radius: 3px 0 0 3px;
|
|
}
|
|
.prev:hover, .next:hover {
|
|
background-color: rgba(0,0,0,0.8);
|
|
}
|
|
.fade {
|
|
animation-name: fade;
|
|
animation-duration: 1.5s;
|
|
}
|
|
|
|
@keyframes fade {
|
|
from {opacity: .4}
|
|
to {opacity: 1}
|
|
}
|
|
.btnleman{
|
|
position: absolute;
|
|
bottom: 70px;
|
|
left: 400px;
|
|
color:white;
|
|
}
|
|
.card {
|
|
width: 300px;
|
|
border-radius: 8px;
|
|
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
|
|
background-color: #111111;
|
|
overflow: hidden;
|
|
transition: transform 0.3s, box-shadow 0.3s;
|
|
display: inline-block;
|
|
margin: 10px;
|
|
}
|
|
.card1 {
|
|
width: 800px;
|
|
border-radius: 8px;
|
|
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
|
|
background-color: #111111;
|
|
overflow: hidden;
|
|
transition: transform 0.3s, box-shadow 0.3s;
|
|
display: inline-block;
|
|
margin: 10px;
|
|
}
|
|
|
|
.card:hover {
|
|
transform: scale(1.05);
|
|
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
|
|
}
|
|
|
|
.card-image {
|
|
width: 100%;
|
|
height: auto;
|
|
}
|
|
|
|
.card-content {
|
|
padding: 16px;
|
|
}
|
|
|
|
.card-title {
|
|
margin: 0;
|
|
font-size: 1.5em;
|
|
color: #ffffff;
|
|
}
|
|
|
|
.card-description {
|
|
margin: 8px 0 0;
|
|
font-size: 1em;
|
|
color: #666;
|
|
}
|
|
/* width */
|
|
::-webkit-scrollbar {
|
|
width: 7px;
|
|
}
|
|
|
|
/* Track */
|
|
::-webkit-scrollbar-track {
|
|
background: black;
|
|
}
|
|
|
|
/* Handle */
|
|
::-webkit-scrollbar-thumb {
|
|
background: white;
|
|
border-radius:20px;
|
|
}
|
|
|
|
/* Handle on hover */
|
|
::-webkit-scrollbar-thumb:hover {
|
|
background: #555;
|
|
}
|
|
.textlist{
|
|
position: absolute;
|
|
bottom: 30px;
|
|
left: 16px;
|
|
color:white;
|
|
}
|
|
#btn911:hover {
|
|
box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
|
|
opacity: 0.6;
|
|
transition: 0.7s;
|
|
cursor: pointer;
|
|
}
|
|
#lemanp{
|
|
max-width:800px;
|
|
float:left;
|
|
margin: 10px;
|
|
width:90%
|
|
}
|
|
#shop{
|
|
max-width:500px;
|
|
width:90%;
|
|
cursor: pointer;
|
|
}
|
|
#shop1{
|
|
max-width:500px;
|
|
width:70%;
|
|
height:313px;
|
|
cursor: pointer;
|
|
}
|
|
#shop:hover {
|
|
box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
|
|
opacity: 0.6;
|
|
transition: 0.7s;
|
|
}
|
|
#shop1:hover {
|
|
box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
|
|
opacity: 0.6;
|
|
transition: 0.7s;
|
|
}
|
|
.textlist1{
|
|
position: absolute;
|
|
bottom: 10px;
|
|
left: 16px;
|
|
color:white;
|
|
}
|
|
.sidenav {
|
|
height: 100%;
|
|
width: 0;
|
|
position: fixed;
|
|
z-index: 1;
|
|
top: 0;
|
|
right: 0;
|
|
background-color: #111;
|
|
overflow-x: hidden;
|
|
transition: 0.5s;
|
|
padding-top: 60px;
|
|
}
|
|
|
|
.sidenav a {
|
|
padding: 8px 8px 8px 32px;
|
|
text-decoration: none;
|
|
font-size: 25px;
|
|
color: #818181;
|
|
display: block;
|
|
transition: 0.3s;
|
|
}
|
|
|
|
.sidenav a:hover {
|
|
color: #f1f1f1;
|
|
}
|
|
|
|
.sidenav .closebtn {
|
|
position: absolute;
|
|
top: 0;
|
|
right: 25px;
|
|
font-size: 36px;
|
|
margin-left: 50px;
|
|
}
|
|
|
|
@media screen and (max-height: 450px) {
|
|
.sidenav {padding-top: 15px;}
|
|
.sidenav a {font-size: 18px;}
|
|
}
|
|
|
|
/* Page content */
|
|
.main {
|
|
margin-left: 200px; /* Same as the width of the sidenav */
|
|
}
|
|
#menu2{
|
|
float:right;
|
|
margin-top: -43px;
|
|
margin-right:50px;
|
|
width:0px;
|
|
height:0px;
|
|
border:solid black;
|
|
background-color: black;
|
|
}
|
|
.reveal{
|
|
position: relative;
|
|
transform: translateY(150px);
|
|
opacity: 0;
|
|
transition: 1s all ease;
|
|
}
|
|
|
|
.reveal.active{
|
|
transform: translateY(0);
|
|
opacity: 1;
|
|
}
|
|
.endpage{
|
|
border:solid black;
|
|
width: 100%;
|
|
z-index: 0;
|
|
max-width: 90000000px;
|
|
}
|
|
#endpic{
|
|
width:200px;
|
|
float:left;
|
|
margin:50px;
|
|
margin-top:70px;
|
|
}
|
|
#apppic{
|
|
width:200px;
|
|
border-radius: 20px;
|
|
}
|
|
.btn9112{
|
|
position: absolute;
|
|
bottom: 30px;
|
|
left: 430px;
|
|
color:white;
|
|
}
|
|
#ahmed{
|
|
width: 190px;
|
|
border-radius:10px;
|
|
}
|
|
#follow{
|
|
margin:40px;
|
|
}
|
|
.footer {
|
|
background-color: #000000; /* Dark background for the footer */
|
|
color: #fff; /* White text color */
|
|
padding: 20px;
|
|
}
|
|
|
|
.footer-content {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
gap: 20px; /* Space between social links and the logo */
|
|
position: relative;
|
|
}
|
|
|
|
.social-links {
|
|
display: flex;
|
|
gap: 20px; /* Space between social links */
|
|
}
|
|
|
|
.footer-link {
|
|
color: #fff; /* White text color */
|
|
text-decoration: none; /* Remove underline from links */
|
|
font-size: 1.2em; /* Font size for icons and text */
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px; /* Space between icon and text */
|
|
}
|
|
|
|
.footer-link:hover {
|
|
color: #ffcc00; /* Color change on hover */
|
|
}
|
|
|
|
.footer-link i {
|
|
font-size: 1.5em; /* Icon size */
|
|
}
|
|
|
|
.logo {
|
|
position: absolute;
|
|
left: 20px; /* Distance from the right edge */
|
|
top: 50%;
|
|
transform: translateY(-50%); /* Center vertically relative to the footer */
|
|
width: 80px;
|
|
}
|
|
|
|
.logo img {
|
|
display: block;
|
|
max-width: 100%;
|
|
height: auto;
|
|
}
|