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

SEO-Meta tags Updated, Font updated, Fixed UX issues, ScrollbarColor changed #15

Open
wants to merge 1 commit into
base: master
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
46 changes: 44 additions & 2 deletions css/style.css
Original file line number Diff line number Diff line change
@@ -1,22 +1,51 @@
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,700;0,900;1,900&display=swap");
body {
font-family: "Poppins", sans-serif !important;

overflow-x: hidden;
}

* {
margin: 0;
padding: 0;
font-family: "Poppins", sans-serif !important;
box-sizing: border-box;
scroll-behavior: smooth;
}

li {
list-style: none !important;
}
/******************SCROLLBAR***************/
::-webkit-scrollbar
{
background: #0e2431;
}

::-webkit-scrollbar-thumb
{
background: #3caea3;
border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover
{
background: #03423c;
border-radius: 10px;
}

/******************* HEADER ******************/
.landing
{
padding-left: 3vw;
padding-right: 3vw;
position: absolute;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
width: 100%;
height: 100vh;
color: whitesmoke;
}

header {
overflow: hidden;
Expand Down Expand Up @@ -511,4 +540,17 @@ hr {
.margin-top-mobile {
padding-top: 15px;
}
}
}
/* @media only screen and (min-width: 600px)
{
.landing
{
font-size: 0.5em imp !important;

}
#landingheader
{
font-size: 2em;
}

} */
22 changes: 16 additions & 6 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">

<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">

<meta content=images/icon.png property=og:image>
<meta name="theme-color" content="#0e2431" />
<meta name="description" content="Algo Phantoms| ">
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Add the proper description

<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
Expand All @@ -18,7 +20,7 @@
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.10.0/css/all.min.css">

<link rel="shortcut icon" href="images/icon.png" type="images/icon.png" />
<title>Algo Phantoms</title>
<title>Algo Phantoms is an Open Source organization focusses on Data Structure and Algorithms</title>
adithyapaib marked this conversation as resolved.
Show resolved Hide resolved

</head>

Expand Down Expand Up @@ -54,10 +56,18 @@
</div>
</nav>

<div class="banner-text text-center">
<p class="main-head">We are <span>Programmers</span></p>
<p> Algo Phantoms is an Open Source organization focusses on Data Structure and Algorithms</p>
</div>
<!-- <div class="banner-text text-center">
<ul>
<li><p class="main-head text-center">We are <span>Programmers</span></p></li>
<li><p > Algo Phantoms is an Open Source organization focusses on Data Structure and Algorithms</p></li>
</ul>
</div> -->
<div class="landing">
<ul>
<li><h1 id="landingheader">We are <span id="landingspan"style="color: #3caea3;">Programmers</span></h1></li>
<br><li><h4>Algo Phantoms is an Open Source organization focusses on Data Structure and Algorithms</h4></li>
</ul>
</div>

<a class="smoothscroll" href="#about">
<div class="mouse">
Expand Down