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
180 changes: 179 additions & 1 deletion css/style.css
Original file line number Diff line number Diff line change
@@ -1,9 +1,18 @@

/* We are using the 'Roboto' font from Google. This has already been added to your HTML header */
:root {
--grey-dark: #292b2c;
--grey-light: #e4e4e4;
--orange-dark: #c05326;
--orange-light: #f7eae4;
--white: #fff;
}


body {
font-family: 'Roboto', sans-serif;
font-family:'Edu VIC WA NT Beginner', 'Roboto', sans-serif;
-webkit-font-smoothing: antialiased;
margin: 0;
}

/**
Expand All @@ -15,5 +24,174 @@ body {
*
* - When using Flexbox, remember the items you want to move around need to be inside a parent container set to 'display: flex'
*/
/*headr*/
.header {
display: flex;
align-items: center;
justify-content: space-between;
height: 5rem;
margin-bottom: 1rem;
padding-top: 1rem;
}
.nav-List{
display:flex;
list-style: none;

}
.navigation__item {
padding: 0.5rem 0.5rem;
}

.navigation__link {
color: var(--grey-dark);
font-weight: 600;
text-transform: none;
text-decoration: none;
}



/*main*/
.first-part{
background-image: url("../img/first-background.jpg");
background-color: grey;
height:350px;
padding-top: 100px;
text-align: center;
color:#fff;
}
.main-button{
color:var(--white);
background-color: var(--orange-dark);
margin-top: 35px;
margin-left: 550px;
margin-right: 550px;

}

h2{
text-align:center;

}
.options{
display: flex;
justify-content:center;

}
.svg-one{
margin:25px 65px;

}
.sec-section{
display: flex;
justify-content: center;

}
.little-explanation{
margin-right: 65px;
margin-left: 25px;
}

.img{
background-image: url("../level-2/homepage-feature.png");
background-color: #292b2c;
height: 430px;
width:600px;
}
.third-sec{
display:flex;
background-color: pink;
}
.third-sec-content{
display:flex;
flex-direction: column;
justify-content: center;
margin-left: 200px;
background-color: pink;

}
.third-sec-button{
background-color: var(--orange-dark);
color:var(--grey-light);
padding-top:15px;
padding-bottom: 15px;
}

/*footer*/
.foot{
text-align: center;
margin-top: 55px;

}
.sec-svg{
border: 2px solid grey;
border-radius: 25px;
}
.container{
display:flex;

}
.form-h1{
width:50%;
height:908px;
}

.img-store{
background-image: url(../level-2/store-image_by-andrew-neel-unsplash.jpg);
background-repeat: no-repeat;
background-size: cover;
width: 50%;
height:808px;
}
form{margin-left: 55px;
}
.first-line {
display:flex;
}

.first-name {
display:flex;
flex-direction: column;
}
.last-name{ display:flex;
flex-direction: column;
margin-left: 25px;
}



.address-bar {
margin-top: 25px;
}

#address1 , #address2{
width: 426px;
}
.post{display: flex;
flex-direction:row ;
margin-top: 25px;
}

.city-part , .post-code{display:flex;
flex-direction: column;
margin-top:25px;
}
#city{
padding-left: 15px;
padding-right: 15px;
}
.post-code{
margin-left: 70px;
}
.s-color{
margin-top: 35px;
}
#terms{margin-top:35px;}

.llast-button{
margin-top:35px;
color:#fff;
background-color: var(--orange-dark);
}


2 changes: 1 addition & 1 deletion img/icon-coffee.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion img/icon-devices.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion img/icon-refill.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion img/karma-logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
71 changes: 71 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,87 @@
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Karma</title>
<link href="https://fonts.googleapis.com/css2?family=Edu+VIC+WA+NT+Beginner&display=swap" rel="stylesheet">
<link href='https://fonts.googleapis.com/css?family=Roboto:400,500,300' rel='stylesheet' type='text/css'>
<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">
</head>
<body>
<header class="header">
<img src="../img/karma-logo.svg" alt="logo" />
<nav class="nav-bar">
<ul class="nav-List">
<li class="navigation__item">
<a class="navigation__link" href="#">Meet Karma</a>
</li>
<li class="navigation__item">
<a class="navigation__link" href="#">How it works</a>
</li>
<li class="navigation__item">
<a class="navigation__link" href="\store.html">Store</a>
</li>
<li class="navigation__item">
<a class="navigation__link" href="#">Blog</a>
</li>
<li class="navigation__item">
<a class="navigation__link" href="#">Help</a>
</li>
<li class="navigation__item">
<a class="navigation__link" href="#">Login</a>
</li>
</ul>
</nav>
</header>
<main class="main-section">
<section class="first-part">
<h1 class="title-main">Introdusing Karama</h1>
<p class="main-paragragh">Bring WiFi with you, everywhere you go.</p>
<button class="main-button"> Learn More</button>
</section>
<h2 class="s-title">Everyone needs a little Karama</h2>
<div class="options">
<img class="svg-one" src="../img/icon-devices.svg" alt="decice">
<img class="svg-one" src="../img/icon-coffee.svg" alt="coffee">
<img class="svg-one" src="../img/icon-refill.svg" alt="refill">
</div>
<section class="sec-section">
<p class="little-explanation">Internet for all the devices</p>
<p class="little-explanation">Boost your Productivity </p>
<p class="little-explanation"> Pay as You Go</p>
</section>
</main>
<hr class="line">
<section class="third-sec">
<div class="img"></div>
<div class="third-sec-content">
<h2 class="text">
"Where ever I am, I just don't
</h2>
<h2 class="text">
worry about my connnection
</h2>
<h2 class="text">
anymore!"
</h2>
<button class="third-sec-button" > Get Karama Today</button>
</div>
</section>


<footer class="foot">
<p class="after-underline">Join us now</p>
<div>
<img class="sec-svg" src="../img/twitter-icon.svg" alt="twitter" width="20px" height="20px" >
<img class="sec-svg" src="../img/facebook-icon.svg" width="20px" height="20px" alt="facebook">
<img class="sec-svg" src="../img/instagram-icon.svg" alt="insta" width="20px" height="20px">

<p>@Karmamobility.Inc</p>
</div>
<!-- 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 -->
</footer>

</body>
</html>
Loading