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

Project #3938

Open
wants to merge 6 commits into
base: master
Choose a base branch
from
Open

Project #3938

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
103 changes: 94 additions & 9 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,9 +1,94 @@
NPM Clone Nifty Penguin Magic npm Enterprise Products Solutions Resources Docs Support Search Join Log In Build amazing
things Essential JavaScript development tools that help you go to market faster and build powerful applications using
modern open source code. See plans Join for free Bring the best of open source to your company npm is the tool used by
over 11,000,000 JavaScript developers around the world. Your developers already use it. Your company depends on it.
Create an Org and get more out of the tools your team already knows and loves. Zero configuration Create an org, add
your team, and start collaborating. Nothing to configure, set up, or manage. Team management Control who has access to
what modules within your team namespace using straightforward team management capabilities. Familiar features npm Orgs
has 100% parity with all the public npm registry features your developers already use. npm audit Enjoy the security
auditing features built into the npm client, a zero-friction way to make open source software safer. Create an Org
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<div>
<div>
<img class="blackHeart" src="images/black-heart.png" alt="black heart">
<span>Nifty Penguin Magic</span>
</div>
<nav>
<ul>
<li><a href="#">npm Enterprise</a></li>
<li><a href="#">Products</a></li>
<li><a href="#">Solutions</a></li>
<li><a href="#">Resources</a></li>
<li><a href="#">Docs</a></li>
<li><a href="#">Support</a></li>
</ul>
</nav>
</div>



<div id="search-bar">
<img class="npm-logo" src="https://i.imgur.com/BH7CCkO.png" alt="npmlogo">
<div class="controls">
<img class="magnifying-glass" src="https://i.imgur.com/lrQiTER.png" alt="magnifying glass image">
<div class="search"><input type="text" placeholder="Search packages" class="searchInput">
<input type="button" value="Search" class="searchBtn"></div>

<input type="button" value="Join" class="joinBtn">
<input type="button" value="Log in" class="loginBtn">
</div>
</div>



</header>

<section id="section1">
<div>
<h1>Build amazing things</h1>
</div>
<article>
<p>Essential JavaScript development tools that help you go to market
faster and build powerful applications
using modern open source code.
</p>
</article>

<div class="container">
<a class="see-plans-btn" href="#">See plans</a>
<a class="join-btn" href="#">Join for free</a>
</div>
</section>

<section class="section2">
<div class="geometric-figure"> <img class="geometric-figure" src="https://static.npmjs.com/attachments/cjsdu27d721czsp74i05n4iey-best-open.svg" alt="rhombus" height=150 width=150 ></div>
<h2>Bring the best open source to your company </h2>
<article id="section-two-article"> <p>NPM is the tool used by over 1000 Javascript developers around the world. Your developers already use it. Your company depends on it. Create an Org and get more out of the tools your team already knows and loves. </p></article>
</section>

<section id="section3">
<div>
<img class ="hex" src="images/zero-configuration.svg" alt="zero-configuration">
<h3>Zero configuration</h3>
<p>Create an org, add your team, and start collaborating.
Nothing to configure, set up, or manage.
</p>
</div>
<div>
<img src="images/team-management.svg" alt="team-management">
<h3>Team Management</h3>
<p>Control who has acess to what modules within your team namespace using straightforward team management capabilities.</p>
</div>
<div>
<img src="images/familiar-features.svg" alt="familiar-features">
<h3>Familiar features</h3>
<p>npm Orgs has 100% parity with all the public npm registry features your developers already use.</p>
</div>
<div>
<img src="images/npm-audit.svg" alt="npm-audit">
<h3>npm audit</h3>
<p>Enjoy the security auditing features built into the npm client, a zero-friction way to make open source software safer</p>
</div>
</section>
<div>
<button id="create" type="submit">Create an Org</button>
</div>
</body>
</html>
196 changes: 196 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,196 @@
@import url('https://fonts.googleapis.com/css?family=Poppins');

body {
font-family: 'Poppins';
margin: 0;
padding: 0;
background-color: #f4f4f4;
}

header > div {
padding: 0 25px;
display: flex;
justify-content: space-between;
align-items: center;
border-bottom: 1px solid lightgrey;
}

nav {
width: 600px;
}

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

nav a {
text-decoration: none;
color: black;
}

.blackHeart {
width: 20px;
margin-right: 1rem;
}

#search-bar {
padding: 5px 25px;
display: flex;

}

.npm-logo {
width: 85px;
margin-right: 15px;

}

.controls {
flex: 1 0 0;
display: flex;

}

.magnifying-glass {
width: 20px;
display:none;
}

.search{
flex:1;
margin-right: 30px;
display:flex;
}
.search:before{
content:'';
background:url(https://i.imgur.com/lrQiTER.png) center/ 80% no-repeat;
width:30px;
background-color: rgb(237, 237, 237);
}
.searchInput {
flex:1;
background-color: rgb(237, 237, 237);
border: 0px;
}

.searchBtn {
width: 60px;
border:none;
background-color: #FB3E44;
color: white;
}

.joinBtn,.loginBtn{
width:60px;
}

.loginBtn {
border: none;
}


#section1 {
text-align: center;
padding: 50px 20px;
background-color: #fff;
}

#section1 h1 {
font-size: 2.5em;
margin-bottom: 20px;
}

#section1 article {
font-size: 1.2em;
margin-bottom: 30px;
}

#section1 div button {
padding: 10px 20px;
margin: 0 10px;
background-color: #007bff;
color: #fff;
border: none;
cursor: pointer;
}

.section2 {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 400px;
}

.geometric-figure {
padding: 10px 0 0 0;
text-align: center;
margin-top: 50px;
}

h2 {
background-color: rgba(255,204,53,.4);
text-align: center;
transform: skew(9deg, 0deg);
font-style: italic;
width: 45%;
}

#section-two-article {
padding: 10px;
width: 55%;
}

#section3 {
display: flex;
justify-content: space-around;
padding: 50px 20px;
background-color: #fff;
}

#section3 div {
text-align: center;
max-width: 200px;
}

#section3 img {
width: 100%;
height: auto;
margin-bottom: 20px;
}

#section3 h3 {
font-size: 1.5em;
margin-bottom: 10px;
}

#section3 p {
font-size: 1em;
margin-bottom: 20px;
}

#section3 button {
padding: 10px 20px;
background-color: #007bff;
color: #fff;
border: none;
cursor: pointer;
}

#create {
box-shadow: 8px 8px 0 rgba(128, 83, 35, .2);
background-color: black;
color: white;
padding: 10px 100px;
display: flex;
justify-content: space-evenly;
flex-direction: column;
align-content: center;
align-items: center;
text-align: center;
margin-bottom: 4px;
}