diff --git a/index.html b/index.html index a2d9c01ab..d3a5b9c66 100644 --- a/index.html +++ b/index.html @@ -1,9 +1,91 @@ -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 + + +
+
+
+ black heart + Nifty Penguin Magic +
+ +
+
+ npm-logo +
+ magnifyingGlass + + +
+
+ Join + +
+
+
+
+
+

Build amazing things

+
+

+ Essential JavaScript development tools that help you go to market faster + and build powerful applications using modern open source code. +

+ +
+
+
+
+
+
+

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 +
+
+ diff --git a/style.css b/style.css new file mode 100644 index 000000000..193337e69 --- /dev/null +++ b/style.css @@ -0,0 +1,188 @@ + +@import url('https://fonts.googleapis.com/css?family=Poppins'); + +body { + font-family: 'Poppins', sans-serif; +} + +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; + } + + .npmImage{ + width: 70px; + } + + .search-form { + display: flex; + align-items: center; + width: 80%; + } + + .search-form input { + padding: 8px; + border: none; + background-color: rgba(0,0,0,0.05); + color:black; + margin-top: 15px; + } + + .search-form input::placeholder { + color: rgba(0, 0, 0, 0.521); + } + + .search-btn { + background-color: #fb3e44; + color: white; + border: none; + padding: 8px 16px; + cursor: pointer; + margin-top: 15px; + } + + .search-btn:hover { + background-color: #e33d40c1; + } + input { + color: rgba(0, 0, 0, 0.05); + width: 100%; + } + + label { + color: rgba(0, 0, 0, 0.05); + } + + .auth-buttons a{ + background-color: transparent; + padding: 8px 16px; + cursor: pointer; + color: #666; + } + + + .join-btn { + border: 1px solid #666; + } + + .login-btn { + border: none; + } + +.intro-section { + height: 600px; + background-color: rgba(232, 217, 217, 0.3); + display: flex; + justify-content: center; + align-items: center; + text-align: center; +} + +.intro-section h1 { + font-size: 3rem; + margin-bottom: 20px; + color: #333; + max-width: 800px; +} + +.intro-section article p { + font-size: 1 rem; + margin: auto; + max-width: 400px; +} + +.buttons { + display: flex; + justify-content: center; + gap: 20px; + margin-top: 30px; +} + +.see-plans-btn { + background-color: #FB3B49; + color: white; + padding: 10px 20px; + text-decoration: none; + font-weight: bold; + box-shadow: 8px 8px 0 rgba(251,59,73,.2); + border: none; +} + +.join-free-btn { + background-color: transparent; + color: #333; + padding: 10px 20px; + font-weight: bold; +} + +.see-plans-btn:hover, +.join-free-btn:hover { + opacity: 0.9; +} + +.magnifyingGlass{ + color: #333; + width: 15px; + margin-top: 14px; + background-color: rgba(0, 0, 0, 0.05); + padding: 8px 0px 8px 8px; +} + +.open-source-section { + height: 600px; + display: flex; + justify-content: center; + align-items: center; + text-align: center; +} + +.content-container { + max-width: 800px; +} + +.heading-container { + background-color: rgba(255,204,53,0.4); + display: inline-block; + padding: 10px 20px; + transform: skew(9deg, 0deg); + margin-bottom: 20px; +} + +.open-source-section h2 { + font-size: 2rem; + font-style: italic; + transform: skew(-9deg, 0deg); + margin: 0; + color: #333; +} + +.open-source-section article p { + color: #666; + margin-top: 20px; + padding: 0 20px; + background-color: rgba(255, 255, 255, 0.8); +} \ No newline at end of file