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

Initial Pull Request #3914

Open
wants to merge 6 commits into
base: master
Choose a base branch
from
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
Binary file added .DS_Store
Binary file not shown.
93 changes: 84 additions & 9 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,9 +1,84 @@
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>
<head>
<title>NPM Clone</title>
<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>
<img class="logo" src="./images/npm-logo.png" alt="logo">
<form action="/search" method="get" id="search">
<img class="magnifyingGlass" src="./images/magnifying-glass.png" alt="magnifying glass">
<input id="search-packages" type="text" name="query" placeholder="Search packages">
<button id="search-button" type="submit">Search</button>
</form>
<button id="join-button">Join</button>
<button id="login-button">Log In</button>
</div>
</header>
<section id="first">
<h1>Build amazing things</h1>
<p>Essential JavaScript development tools that help you go to market faster and build powerful applications using
modern open source code.</p>
<div class="button-inline">
<div><button id="first-button">See plans</button></div>
<div><button id="second-button">Join for free</button></div>
</div>
</section>
<section id="second">
<img src="/images/triangle-hexagon.svg" alt="hexagon" id="hexagon">
<h1>Bring the best of open source to your company</h1>
<p>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.</p>
</section>
<section id="third">
<article>
<div>
<img src="/images/zero-configuration.svg" alt="arrrow click">
</div>
<h4>Zero configuration</h4>
<p>Create an org, add your team, and start collaborating. Nothing to configure, set up, or manage.</p>
</article>
<article>
<div>
<img src="/images/team-management.svg" alt="team management">
</div>
<h4>Team management</h4>
<p>Control who has access to what modules within your team namespace using straightforward team management capabilities.</p>
</article>
<article>
<div>
<img src="/images/familiar-features.svg" alt="familiar features">
</div>
<h4>Familiar features</h4>
<p>npm Orgs has 100% parity with all the public npm registry features your developers already use.</p>
</article>
<article>
<div>
<img src="/images/npm-audit.svg" alt="npm audit">
</div>
<h4>npm audit</h4>
<p>Enjoy the security auditing features built into the npm client, a zero-friction way to make open source software safer.</p>
</article>
</section>
<div class="button-inline">
<button id="footer">Create an Org</button>
</div>
</body>
</html>
212 changes: 212 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,212 @@
@import url('https://fonts.googleapis.com/css?family=Poppins');

body {
font-family: 'Poppins';
}

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

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;
}

.logo {
width: 40px;
margin-right: 1rem;
}

.magnifyingGlass {
width: 20px;
height: 20px;
margin-right: 0;
background-color: rgba(0,0,0,.05);
}

form *, button {
padding: 10px;
}

#first {
height: 300px;
background-color: rgba(232, 217, 217, 0.3);
display: flex;
flex-direction: column;
justify-content: space-around;
align-items: center;
margin-bottom: 4%;
unicode-bidi: isolate;
}

#first p {
text-align: center;
width: 400px;
}

#first h1 {
font-size: 60px;
font-weight: bolder;
margin-top: 10;
margin-bottom: 0;
}
.button-inline{
display: flex;
justify-content: center;
}

#first-button {
background-color: #FB3B49;
box-shadow: 8px 8px 0 rgba(251, 59, 73, 0.2);
color: white;
font-weight: bolder;
border: 0;
padding: 10px 80px;
}

#second-button {
margin: 10px;
background-color: white;
color: black;
font-weight: bolder;
border: 0;
padding: 10px 80px;
}

#second {
height: 300px;
background-color: white;
display: flex;
flex-direction: column;
justify-content: space-around;
align-items: center;
text-align: center;
text-justify: center;
unicode-bidi: isolate;
margin-bottom: 9%;
}

#second p {
text-align: center;
width: 400px;
}
#second h1 {
background-color: rgba(255,204,53,.4);
transform: skew(9deg,0deg);
font-style: italic;
margin-bottom: 0;
}
#third {
display: flex;
justify-content: center;
align-items: center;
}

#third h4 {
color: #ED1C24;
margin: 10px;
text-align: center;
margin: 40 40;
}

#third p {
text-align: left;
}

#footer {
width: 350px;
height: 50px;
font-weight: bolder;
font-size: large;
background-color: black;
color: white;
box-shadow: 8px 8px 0 rgba(128, 83, 35, 0.2);
}

#third article {
display: flex;
flex-direction: column;
align-items: flex-start;
margin: 60px 20px;
}

#third div img {
width: 20px;
display: flex;
justify-content: space-evenly;
}

#login-button {
display: flex;
align-items: flex-end;
align-content: flex-end;
}

header > div:last-child {
list-style: none;
display: flex;
justify-content: space-between;
align-items: center;
}

header > div:last-child form button[type="submit"] {
background-color: #fb3e44;
color: white;
}

header > div:last-child form {
padding: 5px;
display: flex;
scroll-margin-top: 10rem;
}

#hexagon {
width: 170px;
}


#search-button {
border: 0;
margin: 0;
}

#search-packages {
border: 0;
margin: 0;
background-color: rgba(0,0,0,.05);
width: 1000px;
}

#join-button {
background-color: white;
border-color: lightgray;
padding: 10px 20px;
border-style: outset;
}

#login-button {
background-color: white;
border: 0;
padding: 10px 20px;
}