From 839989a454a2f09f52c0cc2de58a8aee7411e049 Mon Sep 17 00:00:00 2001 From: Glormy Date: Mon, 2 Mar 2026 09:16:23 -0800 Subject: [PATCH 1/2] Update styles.css Changed background and padding --- styles.css | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/styles.css b/styles.css index a8d27e2..3554360 100644 --- a/styles.css +++ b/styles.css @@ -17,16 +17,16 @@ body { .cards-container { display: flex; flex-direction: row; - gap: 24px; + gap: 32px; flex-wrap: nowrap; justify-content: center; align-items: flex-start; } .card { - background-color: #f2f1ed; + background-color: #dcdbd9; border-radius: 12px; - padding: 40px 32px; + padding: 16px; width: 320px; flex-shrink: 0; } From 06c15e204f48db6673b3539006309e3c37a46e7d Mon Sep 17 00:00:00 2001 From: Glormy Date: Mon, 2 Mar 2026 09:24:27 -0800 Subject: [PATCH 2/2] Added card & min height Added a new org card (Ultra) and a minimum height to pricing plan --- My-First-Coding-Project.code-workspace | 10 ++++++++++ index.html | 22 ++++++++++++++++++++++ styles.css | 1 + 3 files changed, 33 insertions(+) create mode 100644 My-First-Coding-Project.code-workspace diff --git a/My-First-Coding-Project.code-workspace b/My-First-Coding-Project.code-workspace new file mode 100644 index 0000000..40fe023 --- /dev/null +++ b/My-First-Coding-Project.code-workspace @@ -0,0 +1,10 @@ +{ + "folders": [ + { + "path": "." + }, + { + "path": "." + } + ] +} \ No newline at end of file diff --git a/index.html b/index.html index 36159b0..dc67594 100644 --- a/index.html +++ b/index.html @@ -56,6 +56,28 @@

Pro

+
+

Ultra

+

$200/mo.

+
+

Everything in Pro, plus:

+
    +
  • + + Priority support +
  • +
  • + + Dedicated account manager +
  • +
  • + + Custom integrations +
  • +
+
+ +
diff --git a/styles.css b/styles.css index 3554360..76e2b8d 100644 --- a/styles.css +++ b/styles.css @@ -28,6 +28,7 @@ body { border-radius: 12px; padding: 16px; width: 320px; + min-height: 360px; flex-shrink: 0; }