Skip to content

Commit

Permalink
V4
Browse files Browse the repository at this point in the history
V4
  • Loading branch information
YagYz committed Feb 20, 2024
1 parent 86063c9 commit b14ac04
Show file tree
Hide file tree
Showing 10 changed files with 677 additions and 12 deletions.
5 changes: 5 additions & 0 deletions home.css → assets/css/home.css
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,11 @@ section .header{
font-weight: 600;
}

.ap-btn{
padding: 50px;
margin-left: 40%;
}

.features{
margin-top: 4rem;
display: grid;
Expand Down
248 changes: 248 additions & 0 deletions assets/css/pilots.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,248 @@
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

*{
padding: 0;
margin: 0;
outline: none;
border: none;
box-sizing: border-box;
}

img{
width: 100%;
display: flex;
}

a{
text-decoration: none;
}

body{
font-family: 'Poppins', sans-serif;
background-color: #18181B;
}

nav{
max-width: 1200px;
margin: auto;
padding: 2rem 1rem;
display: flex;
align-items: center;
justify-content: space-between;
gap: 2rem;
}

.nav-logo{
max-width: 150px;
}

.nav-links{
list-style: none;
display: flex;
align-items: center;
gap: 3rem;
}

.link a{
position: relative;
padding-bottom: 0.75rem;
color: #fff;
}

.link a::after{
content: "";
position: absolute;
height: 2px;
width: 0;
bottom: 0;
left: 0;
background-color: #ffba14;
transition: all 0.3s ease;
}

.link a:hover::after{
width: 70%;
}

.btn{
padding: 1rem 2rem;
font-size: 1rem;
color: #fff;
background-color: #ffba14;
border-radius: 5px;
cursor: pointer;
transition: all 0.3s ease;
}

.btn:hover{
background-color: #ffba14;
}

.container{
max-width: 1200px;
margin: auto;
padding: 5rem 2rem;
}

.features{
margin-top: 4rem;
display: grid;
grid-template-columns: repeat(3, 2fr);
gap: 2rem;
}

.features .card{
background-color: #27272a;
padding: 1rem;
border: 2.5px solid transparent;
border-radius: 15px;
transition: all 0.3s ease;
}

.features .card:hover{
background-color: #323232;
border-color: #fff;
}

.features .card span{
display: inline-block;
background-color: #ffba14;
padding: 2px 9px;
margin-bottom: 1rem;
font-size: 1.75rem;
color: #fff;
border-radius: 5px;
}

.features .card h4{
margin-bottom: 0.5rem;
color: #fff;
font-size: 1.2rem;
font-weight: 600;
}

.features .card p{
color: #ccc;
margin-bottom: 1rem;
}

.features .card a{
color: #fff;
transition: all 0.3s ease;
}

.features .card a:hover{
color: #ffba14;
}

section .header{
margin-bottom: 1rem;
color: #fff;
text-align: center;
font-size: 2.25rem;
font-weight: 600;
}

footer{
position: relative;
display: grid;
grid-template-columns: 400px repeat(1, 1fr);
gap: 2rem;
}

footer .column .logo{
max-width: 100px;
margin-bottom: 2rem;
}

footer .column p{
color: #ccc;
margin-bottom: 2rem;
}

footer .column .socials{
display: flex;
align-items: center;
gap: 1rem;
}

footer .column .socials a{
color: #ccc;
border: 1px solid #ccc;
padding: 5px 10px;
font-size: 1.25rem;
border-radius: 100%;
transition: all 0.3s ease;
}

footer .column .socials a:hover{
color: #fff;
background-color: #ffba14;
border-color: #ffba14;
}

footer .column h4{
color: #fff;
margin-bottom: 2rem;
font-size: 1.2rem;
font-weight: 500;
}

footer .column > a{
display: block;
color: #ccc;
margin-bottom: 1rem;
transition: all 0.3s ease;
}

footer .column > a:hover{
color: #ffba14;
}

.copyright{
max-width: 1200px;
margin: auto;
padding: 1rem;
color: #fff;
font-size: 0.8rem;
text-align: center;
}

@media (width < 900px){
.nav-links{
display: none;
}
header{
grid-template-columns: repeat(1, 1fr);
}
header .image{
grid-area: 1/1/2/2;
}
.features{
grid-template-columns: repeat(2, 1fr);
}
.pricing{
grid-template-columns: repeat(2, 1fr);
}
footer{
grid-template-columns: 1fr 200px;
}
}

@media (width < 600px){
header .image::before{
display: none;
}

.features{
grid-template-columns: repeat(1, 1fr);
}

.pricing{
grid-template-columns: repeat(1, 1fr);
}

footer{
grid-template-columns: 1fr 150px;
}
}
2 changes: 1 addition & 1 deletion teaminformation.css → assets/css/teaminformation.css
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ section .header{
.pilotinformation{
margin-top: 4rem;
display: grid;
grid-template-columns: repeat(6, 2fr);
grid-template-columns: repeat(5, 2fr);
gap: 2rem;
}

Expand Down
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
18 changes: 12 additions & 6 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/remixicon/3.5.0/remixicon.min.css">
<link rel="stylesheet" href="home.css">
<link rel="Website Icon" type="ico" href="image/hurlogo.png">
<link rel="stylesheet" href="assets/css/home.css">
<link rel="Website Icon" type="ico" href="assets/image/hurlogo.png">
<title>110.Virtual Hur Squadron</title>
</head>

Expand All @@ -15,7 +15,7 @@
<nav>
<div class="nav-logo">
<a href="#">
<img src="image/hurlogo.png">
<img src="assets/image/hurlogo.png">
</a>
</div>

Expand Down Expand Up @@ -47,7 +47,7 @@ <H1>Welcome to 110. Virtual <span>HUR</span> Squadron</H1>
</a>
</div>
<div class="image">
<img src="image/f-16-4x.png">
<img src="assets/image/f-16-4x.png">
</div>
</header>

Expand Down Expand Up @@ -97,6 +97,11 @@ <h4>Çağan</h4>
</p>
</div>
</div>
<div class="content ap-btn">
<a href="pilots.html">
<button class="btn">All Pilots</button>
</a>
</div>
</section>

<section class="container">
Expand Down Expand Up @@ -169,7 +174,7 @@ <h2 class="header">ABOUT</h2>
<span class="blur"></span>
<div class="column">
<div class="logo">
<img src="image/hurlogo.png">
<img src="assets/image/hurlogo.png">
</div>
<p>
Digital Combat Simulator Flight Team
Expand All @@ -186,7 +191,8 @@ <h2 class="header">ABOUT</h2>
</div>


<script src="script.js"></script>
<script src="assets/js/script.js"></script>
</body>

</html>

Loading

0 comments on commit b14ac04

Please sign in to comment.