Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: url bugs are fixed #3

Open
wants to merge 10 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions img/one.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/transparent-logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
25 changes: 12 additions & 13 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,33 +21,32 @@
<body>
<!-- Landing Page -->
<div class="landing">
<div class="landing-logo">
<a href="#landing"><img src="img/logo.png" alt="logo"></a>
</div>
<div class="header">
<ul>
<li><a href=""><img class="youtube-img" src="img/youtube.png" alt="discord"> Beyond The Binary</a>
</li>
<!-- <li>Instagram</li> -->
</ul>
<div class="top">
<div class="landing-logo">
<a href="#landing"><img src="img/transparent-logo.png" alt="logo"></a>
</div>
<div class="header">
<a href="https://hackerabad.hackclub.com/btb"><img class="youtube-img" src="img/youtube.png"
alt="youtube"> Beyond The Binary</a>
</div>
</div>
<div class="main">
<div class="register">
<p class="abcd-text"><span>A</span>ny <span>B</span>ody <span>C</span>an <span>D</span>evelop</p>
<a href="https://forms.gle/V9YDu31shBBF21tL8" target="_blank"><button class="register-btn">Register
Here</button></a>
</div>
<div class="remote">
<!-- <div class="remote">
<img src="img/favpng_remote-life-tech-life.png" alt="">
</div>
</div> -->
</div>
<div class="socials">
<a href="https://www.instagram.com/hackclub_hackerabad"><button class="socials-btn">Instagram <img
src="img/insta.png" alt=""></button></a>
<a href="https://www.twitter.com/hackerabad"><button class="socials-btn">Twitter <img src="img/twitter.png"
alt="twitter"></button></a>
<a href="https://www.twitter.com/hackerabad"><button class="socials-btn">Discord <img
src="img/discord-neg.png" alt="twitter"></button></a>
<a href="https://discord.gg/xr8XrrzeFn"><button class="socials-btn">Discord <img src="img/discord-neg.png"
alt="discord"></button></a>
</div>
</div>

Expand Down
62 changes: 37 additions & 25 deletions styles/landing.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,10 @@ button{
}
.landing{
position: absolute;
width: 100%;
height: 100%;
min-width: 100vw;
width: auto;
/* height: auto; */
min-height: 100vh;
left: 0px;
top: 0px;
display: flex;
Expand All @@ -17,17 +19,14 @@ background: #FFCF42;
background-color: #FFCF42;
margin-left: 2%;
}
.landing .header{
.top .header{
display: flex;
position: absolute;
right: 50px;
top: 16px;
}
.landing .header ul
{
display: flex;
}
.landing .header li{

.top .header {
list-style: none;
margin: 12px;
font-family: 'Inter';
Expand All @@ -36,20 +35,21 @@ font-weight: 600;
font-size: 16px;
line-height: 150%;
}
.header li a{
.top .header a{
color: black;
text-decoration: none;
font-size: large;
font-weight: 800;
}
.youtube-img{
.top .youtube-img{
width: 40px;
height: auto;
}

/* MAIN */
.main{
position: relative;
margin-top: 90px;
margin: 90px 0 90px 0;
height: 50%;
}
.main .abcd-text span{
Expand All @@ -61,17 +61,17 @@ line-height: 150%;
font: 'Inter';
}
.main .register{
position: absolute;
position: relative;
top: 18%;
left: 12%;
margin-left: 15%;
}
.register-btn{
width: 288px;
height: 64px;
background-color: black;
color: rgb(229, 226, 226);
cursor: pointer;
font-family: 'Inter';
font-family: 'source code pro';
font-style: normal;
font-weight: 800;
font-size: 24px;
Expand All @@ -82,30 +82,42 @@ line-height: 150%;
}
.main .remote{
position: absolute;
/* top: -9%; */
bottom: 20%;
right: 15%;
}
.remote img{
width: 400px;
height: auto;
}

/* SOCIALS */
.socials{
margin-top: 40px;
padding-top:3%;
margin-top: 7%;
text-align: center;
display: flex;
flex-flow: wrap;
justify-content: space-around;
}
.socials-btn{
width: 188px;
width: 190px;
height: 64px;
background-color: black;
color: rgb(229, 226, 226);

margin: 2%;

cursor: pointer;
font-family: 'Inter';
font-style: normal;
font-weight: 700;
font-size: 16px;
line-height: 32px;
/* identical to box height, or 200% */
text-align: center;
}
font-style: normal;
font-weight: 700;
font-size: 16px;
line-height: 32px;

text-align: center;
}

@media screen and (max-width: 720px) {
.top .header{
display: none;
}
}