diff --git a/index.html b/index.html index a2d9c01ab..43e5f5b26 100644 --- a/index.html +++ b/index.html @@ -1,9 +1,82 @@ -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 + + + + + +NPM Clone – Nifty Penguin Magic + + + + +
+
+
black heartNifty 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.

+ + +
+
+

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.

+
+
+ + +
+
+ + \ No newline at end of file diff --git a/style.css b/style.css new file mode 100644 index 000000000..e149e8332 --- /dev/null +++ b/style.css @@ -0,0 +1,56 @@ +@import url('https://fonts.googleapis.com/css?family=Poppins'); + +* { box-sizing: border-box; margin: 0; padding: 0; } +body { font-family: 'Poppins', sans-serif; color: #000; } + +/* Header top bar */ +header > div { padding: 0 25px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid lightgray; } +.blackHeart { width: 20px; margin-right: 1rem; } +nav { width: 600px; } +nav ul { list-style: none; display: flex; justify-content: space-between; align-items: center; } +nav a { text-decoration: none; color: black; } + +/* Brand alignment */ +.brand { display: flex; align-items: center; gap: 8px; } + +/* Header subbar */ +.subheader { padding: 10px 25px; display: flex; justify-content: space-between; align-items: center; gap: 20px; } +.logo img { height: 28px; } +.search { display: flex; align-items: center; gap: 10px; flex: 1; } +.search-icon { width: 18px; opacity: .5; } +.search input { flex: 1; background: rgba(0,0,0,.05); border: none; padding: 10px 12px; border-radius: 4px; } +.search button { background: #fb3e44; color: #fff; border: none; padding: 10px 16px; border-radius: 4px; cursor: pointer; } +.auth { display: flex; align-items: center; gap: 12px; } + +/* Form label/input colors per guide */ +.search label { color: rgba(0,0,0,.05); } + +/* Visually-hidden utility for labels */ +.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 1px, 1px); white-space: nowrap; border: 0; } + +/* Buttons */ +.btn { display: inline-block; text-decoration: none; padding: 10px 16px; border-radius: 4px; border: 1px solid #000; color: #000; } +.btn-primary { background: #FB3B49; color: #fff; border-color: #FB3B49; box-shadow: 8px 8px 0 rgba(251,59,73,.2); } +.btn-secondary { background: #fff; } +.btn-accent { background: #ED1C24; color: #fff; box-shadow: 8px 8px 0 rgba(128,83,35,.2); border-color: #ED1C24; } + +/* Section 1 (hero) */ +#hero { min-height: 600px; background: rgba(232,217,217,.3); display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; gap: 22px; padding: 40px 20px; position: relative; } +#hero h1 { font-size: 48px; } +#hero p { max-width: 780px; line-height: 1.5; } +#hero .cta { display: flex; gap: 12px; } +.bg-shape { position: absolute; right: 30px; bottom: 30px; width: 120px; opacity: .2; } + +/* Section 2 (about) */ +#about { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 16px; padding: 80px 20px; } +#about h2 { display: inline-block; background: rgba(255,204,53,.4); transform: skew(9deg,0deg); font-style: italic; padding: 4px 10px; font-size: 28px; } +#about p { max-width: 800px; line-height: 1.6; } + +/* Section 3 (features) */ +#features { padding: 80px 25px; } +.feature-list { list-style: none; display: flex; flex-wrap: wrap; gap: 28px; justify-content: center; } +.feature { max-width: 260px; display: flex; flex-direction: column; gap: 10px; } +.feature img { width: 48px; height: 48px; } +.feature h3 { color: #ED1C24; font-size: 20px; } +.feature p { line-height: 1.5; } +.org-cta { display: flex; justify-content: center; margin-top: 32px; } \ No newline at end of file