diff --git a/index.html b/index.html index a2d9c01ab..d259689f5 100644 --- a/index.html +++ b/index.html @@ -1,9 +1,99 @@ -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 + + + + + + + Document + + + +
+
+
+ black heart + Nifty Penguin Magic +
+ +
+ +
+ + + + +
+ + +
+
+ + +
+ +
+

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 +
+ +
+ +
+ triangle hexagon +

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 +
Zero configuration
+

Create an org, add your team, and start collaborating. Nothing to configure, set up, or manage.

+
+ +
+ team management +
Team management
+

Control who has access to what modules within your team namespace using straightforward team management capabilities.

+
+ +
+ familiar features +
Familiar features
+

npm Orgs has 100% parity with all the public npm registry features your developers already use.

+
+ +
+ npm audit +
npm audit
+

Enjoy the security auditing features built into the npm client, a zero-friction way to make open source software safer.

+
+
+ + +
+ + + + + + diff --git a/style.css b/style.css new file mode 100644 index 000000000..4855f8291 --- /dev/null +++ b/style.css @@ -0,0 +1,142 @@ +@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; +} + +.searchContainer { + display: flex; + align-items: center; + gap: 10px; /* space between items */ +} + +.searchBar { + position: relative; + flex: 1; /* takes all available space between logo and buttons */ +} + +.searchBar input { + width: 100%; + padding: 8px 30px 8px 8px; + box-sizing: border-box; +} + +.searchBar .searchIcon { + position: absolute; + left: 8px; /* position inside input on the left */ + top: 50%; + transform: translateY(-50%); + width: 16px; + height: 16px; + pointer-events: none; /* clicks go to input */ +} + +#searchButton { + background-color: #fb3e44; + color: white; +} + +section { + margin: 50px 0; /* 50px top & bottom, 0 left & right */ +} + + + +#amazingThings { + display: flex; /* enables flexbox */ + flex-direction: column; /* stack children vertically */ + justify-content: center; /* centers items vertically */ + align-items: center; /* centers items horizontally */ + height: 600px; /* suggested section height */ + text-align: center; /* keeps text centered inside flex items */ + position: relative; + background-color: rgba(232,217,217,.3) + +} + +#plans { + background-color: #FB3B49; +} + +#free { + box-shadow: 8px 8px 0 rgba(251,59,73,.2); + +} + +#middle { + display: flex; /* enables flexbox */ + flex-direction: column; /* stack children vertically */ + justify-content: center; /* centers items vertically */ + align-items: center; /* centers items horizontally */ + height: 600px; + +} + +#middle img.triangleHex { + width: 20%; /* scales image relative to section width */ + height: auto; /* keeps aspect ratio */ + margin-top: 20px; /* space above image */ +} + +#middle h2 { + background-color: rgba(255,204,53,.4); + transform: skew(9deg,0deg); + font-style: italic; +} + + +#last { + display: flex; /* enables flexbox */ + flex-direction: column; /* stack children vertically */ + justify-content: center; /* centers items vertically */ + align-items: center; /* centers items horizontally */ + position: relative; +} + + +.squareRow { + display: flex; + flex-direction: row; /* horizontal (default anyway) */ + gap: 10px; /* space between boxes */ +} + +.square { + flex: 1; /* all take equal width */ + padding: 20px; + text-align: center; +} + +.square img { + max-width: 5%; /* never overflow the box */ + height: auto; /* keep aspect ratio */ + display: block; /* removes the little baseline gap under inline images */ +} \ No newline at end of file