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

[RMT-PT-092024]MolinaAna #3899

Open
wants to merge 5 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
94 changes: 85 additions & 9 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,9 +1,85 @@
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>
<meta charset="UTF-8"/>
<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 class="header2">
<img class="npm-logo" src="images/npm-logo.png" alt="npm-logo"/>
<div class="search-bar">
<form action="/some url" method="post">
<img src="images/magnifying-glass.png" alt="magnifying-glass"/>
<input type="text" name="search-bar" id="search-bar" placeholder="Search packages">
<button class="button-search-bar " type="sumit">Search</button>
</form>
</div>
<div>
<a class="button-join-in" href="#">Join</a>
<a class="button-log-in" href="#">Log in</a>
</div>

</div>
</header>
<section id="section1">
<h1>Build amazing things</h1>
<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="buttons">
<a class="button-view-plans" href="#">See plans</a>
<a class="button-join-free" href="#">Join for free</a>
</div>
</section>
<section id="section2">
<img src="images/triangle-hexagon.svg" alt="triangle-hexagon"/>
<h2>Bring the best of open source to your company</h2>
<article>
<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>
</article>
</section>
<section id="section3">
<div>
<div>
<img src="images/zero-configuration.svg" alt="zero-configuration" />
<h4>Zero configuration</h4>
<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" />
<h4>Team management</h4>
<p>Control who has access to what modules within your team namespace using straightforward team management capabilities.</p>
</div>
<div>
<img src="images/familiar-features.svg" alt="familiar-features" />
<h4>Familiar features</h4>
<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" />
<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>
</div>
</div>
<a class="button-create-org" href="#">Create an Org</a>
</section>
</body>
</html>
241 changes: 241 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,241 @@
@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 and Search Bar */
.header2 {
display: flex;
justify-content: space-between;
flex-shrink: 1;
align-items: center;
padding: 15px 25px;
}

.npm-logo {
width: 100px;
height: auto;
}

.search-bar {
width: 80%;
display: flex;
justify-content: space-between;
align-items: center;
background-color: rgba(0, 0, 0, 0.05);
}

form {
display: flex;
align-items: center;
width: 100%;
}

form img {
width: 24px;
height: auto;
padding: 10px;
}

form input {
flex-grow: 1;
border: none;
outline: none;
padding: 3px;
background-color: transparent;
margin-left: 5px;
}

.button-search-bar {
font-size: 1.3em;
padding: 12px 20px;
background-color: #e94e42;
color: white;
border: none;

}

.button-join-in {
border: 1px solid black;
color: black;
background-color: white;
padding: 10px;
text-decoration: none;
}
.button-log-in {
border: none;
color: black;
background-color: white;
padding: 10px;
text-decoration: none;
}

/* Main Section */
#section1 {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
background-color: rgba(232,217,217,.3);
text-align: center;
height: 600px;
}

#section1 h1 {
font-size: 7em;
margin-bottom: 20px;
font-weight: 900;
}
article {
width: 35%;
}

#section1 article p {
padding: 0 40px;
font-size: 1.5em;
margin-bottom: 30px;
font-weight: 400;
text-align: center;
}
.buttons{
display: flex;
justify-content: space-between;
align-items: center;
width: 25%;
}
.button-view-plans {
text-decoration: none;
padding: 15px 55px;
color: white;
background-color: #e94e42;
box-shadow: 8px 8px 0 rgba(251,59,73,.2);
font-weight: bold;
}
.button-join-free {
text-decoration: none;
padding: 15px 55px;
color: black;
background-color: white;
font-weight: bold;
}


/* Secondary Section */
#section2 {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
background-color: white;
text-align: center;
height: 600px;
}

#section2 img {
width: 10%;
margin-bottom: 20px;
}

#section2 h2 {
font-size: 2em;
margin-bottom: 20px;
padding: 0 30px;
background-color: rgba(255,204,53,.4);
transform: skew(9deg,0deg);
font-style: italic;
}

#section2 article p {
padding: 0 40px;
font-size: 1em;
margin-bottom: 30px;
font-weight: 400;
text-align: center;

}

/* Features Section */
#section3 {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
background-color: white;
text-align: center;
height: 600px;
margin-bottom: 20%;
}

#section3 div {
display: flex;
flex-direction: row;
justify-content: space-around;
margin: 10%;
}

#section3 div div {
display: flex;
margin: 20px 10px;
padding: 0 40px;
flex-direction: column;
align-items: flex-start;
justify-content: center;
}

#section3 div div img {
width: 15%;
margin-bottom: 10px;
}

#section3 h4 {
color: #ED1C24;
font-size: 1.1em;
font-weight: 500;
text-align: left;

}

#section3 p {
font-size: 1em;
font-weight: 400;
text-align: left;

}

.button-create-org {
text-decoration: none;
padding: 15px 150px;
color: white;
background-color: black;
box-shadow: 8px 8px 0 rgba(128,83,35,.2);
font-weight: bold;
}