Skip to content
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
57 changes: 23 additions & 34 deletions docs/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -73,31 +73,24 @@
left:50%;
}

.navbar {
header nav ul{
display: flex;
justify-content: space-between;
z-index: 0;
background-color: black;
color: white;
justify-content: flex-end;
align-items: center;
padding: 10px 0px;
}

.r-nav ul {
margin: 0;
padding: 0;
display: flex;
font-family: 'Nunito',sans-serif;
header nav ul li{
list-style-type: none;
font-size: x-large;
margin: 14px;
padding: 8px;
font-family: 'Nunito',sans-serif;
}

.r-nav li {
list-style:none;
margin:10px;
}

.r-nav a {
text-decoration: none;
padding:1rem;
color: #000;
font-size: 20px;
display: block;
header nav ul li:hover{
color: blue;
cursor: pointer;
}

.toggle-button {
Expand All @@ -118,23 +111,22 @@
background-color: white;
}

.r-nav li a:hover {
color: #208A5E;
transition: all .3s ease;
}

.download {
border-radius: 20px;
padding:12px 8px;
font-family: 'Nunito', sans-serif;
border:none;
background-color: #208A5E;
color:white;
width:250px;
width:260px;
font-size:20px;
margin-bottom: 20px;
cursor: pointer;
}
.download:hover {
background-color: blue;
background: linear-gradient(to right, blue, purple);
}

.download-parent {
display: flex;
Expand All @@ -143,8 +135,9 @@
}

.download {
margin-top: 40px;
margin-left: 10px;
margin-top: 50px;
margin-left: 30px;
margin-right: 30px;
}

.download-parent a {
Expand All @@ -154,12 +147,8 @@
color:black;
}

.hero,
.navbar {
.hero{
background-color: #b4ddf0;
}

.hero {
height: 100vh;
}

Expand Down
86 changes: 42 additions & 44 deletions docs/index.html
Original file line number Diff line number Diff line change
@@ -1,62 +1,60 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>tabsMonster</title>
<link rel="stylesheet" href="css/style.css">
<script src="https://kit.fontawesome.com/64fdbfc31c.js" crossorigin="anonymous"></script>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>tabsMonster</title>
<link rel="stylesheet" href="css/style.css">
<script src="https://kit.fontawesome.com/64fdbfc31c.js" crossorigin="anonymous"></script>
</head>

<body>
<nav class="navbar">
<div class="brand"></div>

<a href="#" class="toggle-button">
<span class="bar"></span>
<span class="bar"></span>
<span class="bar"></span>
</a>
<header>
<nav class="navbar">
<ul>
<li>Idea</li>
<li>Features</li>
<li>Support</li>
</ul>
</nav>
</header>

<div class="r-nav">
<main>
<div class="hero">

<ul>
<li><a href="#">Idea</a></li>
<li><a href="#">Features</a></li>
<li><a href="#">Support</a></li>

</ul>
<div class="monster-logo">
<div class="logo">
tabsM<span class="removeO">o</span>nster
<div class="eye">
<div class="eye-ball-space">
<div class="eye-ball">
<div class="inner-eye-ball">

</div>
</nav>
<div class="hero">

<div class = "monster-logo">
<div class= "logo">
tabsM<span class = "removeO">o</span>nster
<div class= "eye">
<div class = "eye-ball-space">
<div class = "eye-ball">
<div class="inner-eye-ball">

</div>
</div>
</div>
</div>
</div>

</div>
</div>
</div>

</div>
<br>
<p class="tagline">A Chrome Extension to keep a tab on your Browser Tabs</p>
<div class="download-parent">

<button class="download chrome"><i class="fas fa-download"></i>&nbsp;&nbsp;Download for chrome</button><button class="download firefox"><i class="fas fa-download"></i>&nbsp;&nbsp;Download for firefox</button>
</div>
<!-- <div class="download-parent">
<br>
<p class="tagline">A Chrome Extension to keep a tab on your Browser Tabs</p>
<div class="download-parent">

<button class="download chrome"><i class="fas fa-download"></i>&nbsp;&nbsp;Download For Chrome</button><button
class="download firefox"><i class="fas fa-download"></i>&nbsp;&nbsp;Download For FireFox</button>
</div>
<!-- <div class="download-parent">
<small><a href="#">⭳ Download for chrome</a> <a href="#"> ⭳ Download for firefox</a></small>
</div> -->

</div>
</div>
</main>

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

</html>