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
142 changes: 142 additions & 0 deletions css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,145 @@ body {
*/



/* nav and logo styles*/
.logo {
width: 25px;
display: flex;
cursor: pointer;


}
nav {
display: flex;
padding: 10px 50px;

}

.nav-bar {
width: 100%;
}

.nav-bar-list {
display: flex;
justify-content: space-between;
align-items: center;
list-style-type: none;
}



.nav-list {
font-size: 20px;
font-weight: 500;
color: gray;
text-decoration: none;
}

.nav-list:hover {
color: #E16337;
}

.strong {
color: #02050b;
}


/* karma styles*/
.intro-karma{
height: 100%;
width: 100%;
background-image: url('../img/first-background.jpg');
background-size: cover;
color: white;
font-weight: 400;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;

}

.karma-title {
font-size: 55px;
font-weight: inherit;
margin-bottom: -10px;
}

.karma-slogan {
font-weight: inherit;
font-size: 25px;
}

.btn-karma {
text-decoration: none;
color: inherit;
background-color: #E16337;
font-size: 20px;
padding: 20px 50px;
border-radius: 10px;
margin-top: 20px;
cursor: pointer;
}
/* section info styles*/
.section-karma{
text-align: center;
font-weight: 300;
padding: 50px 0px;
}

.section-karma-title {
font-size: 35px;
font-weight: inherit;
margin-bottom: 55px;
}

.menu-container {
display: flex;
justify-content: space-between;
width: 50%;
margin: 0 auto;
cursor: pointer;
}

.menu img {
width: 75px;
}

.manu p {
font-size: 25px;
font-weight: 400;
}
/*footer styles*/
.footer {
text-align: center;
padding: 30px 0px 40px 0px;
}

.social-contact {
display: flex;
justify-content: space-between;
width: 10%;
margin: 0 auto;
list-style-type: none;
cursor: pointer;
}

.menu-social {
border: 1px solid #bdc3c7;
border-radius: 100%;
padding: 10px 12px;
}

.menu-social img {
width: 15px;
}

.footer-h {
font-size: 15px;
}

.footer-copyright-text {
color: #bdc3c7;
margin-top: 15px;
}
69 changes: 66 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,73 @@
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico">
</head>
<body>
<header>
<!--start navigation bar-->
<nav>
<div class="nav-bar">
<img class="logo" src="img/karma-logo.svg">
</div>
<ul class="nav-bar nav-bar-list">
<li></li><a class="nav-list strong" href="#">Meet Karma</a></li>
<li></li><a class="nav-list" href="#">How It Works</a></li>
<li></li><a class="nav-list" href="#">Store</a></li>
<li></li><a class="nav-list" href="#">Blog</a></li>
<li></li><a class="nav-list" href="#">Help</a></li>
<li></li><a class="nav-list" href="#">Login</a></li>
</ul>
</nav>
</header>

<main>
<!--start main content-->

<!-- Add your HTML markup here -->
<!-- Remember: Use semantic HTML tags like <header>, <main>, <nav>, <footer>, <section> etc -->
<!-- All the images you need are in the 'img' folder -->
<section class="intro-karma">
<h1 class="karma-title">Introducing Karma</h1>
<h2 class="karma-slogan">Bring WiFi with you, everywhere you go.</h2>
<a class="btn-karma" href="#">Learn More</a>
</section>

<section class="section-karma">
<h2 class="section-karma-title">Everyone needs a little Karma.</h2>
<div class="menu-container">
<div class="menu">
<img src="img/icon-devices.svg" />
<p>Internet for all devices</p>
</div>

<div class="menu">
<img src="img/icon-coffee.svg" />
<p>Boost your productivity</p>
</div>

<div class="menu">
<img src="img/icon-refill.svg" />
<p>Pay as You Go</p>
</div>
</div>
</section>

</main>

<!--start footer section-->
<footer class="footer">
<p class="footer-h">Join us on</p>
<ul class="social-contact">
<li class="menu-social">
<img src="img/twitter-icon.svg" />
</li>
<li class="menu-social">
<img src="img/facebook-icon.svg" />
</li>
<li class="menu-social">
<img src="img/instagram-icon.svg" />
</li>
</ul>
<p class="footer-copyright-text">&copy; Karma Mobility, Inc.</p>
</footer>




</body>
</html>