Add files via upload
This commit is contained in:
parent
ecb24e371b
commit
8170e7d7ae
20
100_projects/87-video-game-valorant/index.html
Normal file
20
100_projects/87-video-game-valorant/index.html
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<title>document</title>
|
||||||
|
<link rel="stylesheet" href="style.css">
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class="full-screen">
|
||||||
|
<video src="valorant.mp4" autoplay muted loop></video>
|
||||||
|
<div class="line"></div>
|
||||||
|
<div class="content">
|
||||||
|
<p> 5v5 <bdi> لعبة تصويب تكتيكي تعتمد على الشخصيات بنمط </bdi></p>
|
||||||
|
<img src="valorant.png" alt="">
|
||||||
|
<a href="https://playvalorant.com/ar-ae/">العب مجانًا</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
103
100_projects/87-video-game-valorant/style.css
Normal file
103
100_projects/87-video-game-valorant/style.css
Normal file
@ -0,0 +1,103 @@
|
|||||||
|
*{
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
font-family: "Open Sans";
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
.full-screen{
|
||||||
|
width: 100%;
|
||||||
|
height: 100vh;
|
||||||
|
overflow: hidden;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
.full-screen::before{
|
||||||
|
content: '';
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
left: 100px;
|
||||||
|
width: 1px;
|
||||||
|
height: 100%;
|
||||||
|
background-color: hsla(38,22%,90%,.5);
|
||||||
|
}
|
||||||
|
.full-screen::after{
|
||||||
|
content: '';
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
right: 33%;
|
||||||
|
width: 1px;
|
||||||
|
height: 100%;
|
||||||
|
background-color: hsla(38,22%,90%,.5);
|
||||||
|
}
|
||||||
|
.full-screen .line{
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
right: 100px;
|
||||||
|
width: 1px;
|
||||||
|
height: 100%;
|
||||||
|
background-color: hsla(38,22%,90%,.5);
|
||||||
|
}
|
||||||
|
.full-screen video{
|
||||||
|
position: absolute;
|
||||||
|
left: 0;
|
||||||
|
top: 0;
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
object-fit: cover;
|
||||||
|
z-index: -1;
|
||||||
|
}
|
||||||
|
.content p{
|
||||||
|
font-family: HelveticaNeueLTWArabic-Bold,DINNextW05-Bold,arial,georgia,sans-serif;
|
||||||
|
text-align: center;
|
||||||
|
text-shadow: 0 0 .75em rgba(0,0,0,.5);
|
||||||
|
font-size: 18px;
|
||||||
|
font-weight: 600;
|
||||||
|
color: #ECE8E1;
|
||||||
|
margin-bottom: 15px;
|
||||||
|
}
|
||||||
|
.content img{
|
||||||
|
max-width: 100%;
|
||||||
|
}
|
||||||
|
.content a{
|
||||||
|
display: block;
|
||||||
|
margin: 50px auto;
|
||||||
|
width: 250px;
|
||||||
|
height: 65px;
|
||||||
|
line-height: 65px;
|
||||||
|
background: #ff4655;
|
||||||
|
text-align: center;
|
||||||
|
color: #ececec;
|
||||||
|
text-transform: uppercase;
|
||||||
|
font-weight: 500;
|
||||||
|
transition: .4s linear;
|
||||||
|
font-size: 16px;
|
||||||
|
font-weight: 600;
|
||||||
|
position: relative;
|
||||||
|
z-index: 9;
|
||||||
|
}
|
||||||
|
.content a::before{
|
||||||
|
content: '';
|
||||||
|
width: 0;
|
||||||
|
height: 100%;
|
||||||
|
background: #0f1923;
|
||||||
|
position: absolute;
|
||||||
|
right: 0;
|
||||||
|
transition: .5s;
|
||||||
|
z-index: -1;
|
||||||
|
}
|
||||||
|
.content a:hover::before{
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
.content a::after{
|
||||||
|
content: '';
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
background: transparent;
|
||||||
|
position: absolute;
|
||||||
|
top: -6px;
|
||||||
|
left: -6px;
|
||||||
|
border: 1px solid hsla(38,22%,90%,.5);
|
||||||
|
padding: 5px;
|
||||||
|
}
|
BIN
100_projects/87-video-game-valorant/valorant.mp4
Normal file
BIN
100_projects/87-video-game-valorant/valorant.mp4
Normal file
Binary file not shown.
BIN
100_projects/87-video-game-valorant/valorant.png
Normal file
BIN
100_projects/87-video-game-valorant/valorant.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 27 KiB |
Loading…
Reference in New Issue
Block a user