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
95 changes: 95 additions & 0 deletions css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,102 @@ body {
font-family: 'Roboto', sans-serif;
-webkit-font-smoothing: antialiased;
}
h1 {
font-weight:lighter;
text-align: center;
}
h3 {
font-weight: lighter;
}
.navbar {
align-items: center;
background-color: white;
color: grey;
display: flex;
flex-direction: row;
justify-content: space-around;
padding-top: 30px;

}
.logo-img {
width: 40px;
}

.list {
list-style-type: none;
display: inline-block;
}
.list :hover {
color: #E67E22;
}
.list-items {
display: inline-block;
padding: 20px;
}
.navbar a {
color: grey;
text-decoration:none
}
.picture {
text-align: center;
background-image: url('');
background-repeat: no-repeat;
background-position: center;
background-size: cover;
padding: 200px;
margin: 100px;
color: white;
}

.button {
background-color: #E67E22;
border-color: #E67E22;
border-style: solid;
border-radius: 5px;
color: white;
padding: 8px;
justify-content: center;
}
.promotion-logos {
align-items: center;
display: flex;
flex-direction: row;
justify-content: space-around;
padding: 50px;
}
.promo-img {
width: 100px;
height: 100px;
}
.promotion {
text-align: center;
}
.fa {
text-decoration: none;
margin: 20px;
}
.fa-twitter {
color: #00acee;
}
.fa-facebook {
color: #3b5998;
}
.fa-instagram {
color: #f09433;
}
.social-icons {
align-items: center;
display: flex;
justify-content: center;
}
.socials {
text-align: center;
padding: 50px;
}
.copy-right {
color: grey;
font-weight: lighter;
}
/**
* Add your custom styles below
*
Expand Down
51 changes: 51 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,60 @@
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/style.css">
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<!-- NAV BAR -->
<nav class="navbar">
<a class="navbar-brand" href="">
<div class="logo-img">
<img src = "img/karma-logo.svg" alt="Logo image"/>
</div>
</a>

<ul class="list">
<li class="list-items"><a href=""> Meet Karma</a></li>
<li class="list-items"><a href="">How it works</a></li>
<li class="list-items"><a href="">Store</a></li>
<li class="list-items"><a href="">Blog</a></li>
<li class="list-items"><a href="">Help</a></li>
<li class="list-items"><a href="">Login</a></li>
</ul>
</nav>
<!-- BACKGROUND -->
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

This comment seems to be not giving a meaningful sense here

<div class="picture">
<div class="picture-content">
<h1>Introducing Karma</h1>
<h3>Bring WIFI with you, everywhere you go.</h3>
<button class="button" type="button">Learn More</button>
</div>
</div>
<!-- PROMOTION -->
<h1>Everyone needs a little Karma.</h1>
<div class="promotion-logos">
<div class="promotion">
<img class="promo-img" src="img/icon-devices.svg" alt="device igm"/>
<h3>Internet for all devices</h3>
</div>
<div class="promotion">
<img class="promo-img" src="img/icon-coffee.svg" alt="productivity img"/>
<h3>Boost your productivity</h3>
</div>
<div class="promotion">
<img class="promo-img" src="img/icon-refill.svg" alt="pay img"/>
<h3>Pay as You Go</h3>
</div>
<!-- SOCIALS -->
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

This comment stands offside

</div>
<footer class="socials">
<p>Join us on</p>
<div class="social-icons">
<a href="#" class="fa fa-twitter"></a>
<a href="#" class="fa fa-facebook"></a>
<a href="#" class="fa fa-instagram"></a>
</div>
<p class="copy-right">© Karma Mobility. Ink</p>
</footer>
<!-- 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 -->
Expand Down