From cbea7ae9b5cf3d47f2bde4b111b862b075215753 Mon Sep 17 00:00:00 2001 From: Tropii Date: Thu, 1 May 2025 19:46:52 -0400 Subject: [PATCH] Start an about page v1.0.1 --- assets/css/main.css | 86 +++++++++++++++++++++++++++++++++++++++++++++ index.html | 29 +++++++++++++++ 2 files changed, 115 insertions(+) diff --git a/assets/css/main.css b/assets/css/main.css index a5bd6bc..155b12b 100644 --- a/assets/css/main.css +++ b/assets/css/main.css @@ -99,4 +99,90 @@ opacity: 0.3; transform: translateX(-50%) translateY(-10px); } +} + + +/* About section */ +.about-section { + min-height: 100vh; + background-color: var(--bg-black); + padding: 4rem 2rem; +} + +.about-screen { + max-width: 1200px; + margin: 0 auto; +} + +.about-title { + text-align: center; + margin-bottom: 4rem; +} + +.about-title h2 { + font-size: 2.5rem; + color: var(--white); + margin-bottom: 1rem; +} + +.about-title p { + color: var(--maroon-pink); + font-size: 1.2rem; +} + +.feature-grid { + display: grid; + grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); + gap: 2rem; + padding: 1rem; +} + +.feature-card { + background-color: rgba(255, 255, 255, 0.05); + border-radius: 12px; + padding: 2rem; + text-align: center; + transition: transform 0.3s ease, background-color 0.3s ease; +} + +.feature-card:hover { + transform: translateY(-5px); + background-color: rgba(255, 255, 255, 0.08); +} + +.feature-icon { + font-size: 2.5rem; + margin-bottom: 1rem; +} + +.feature-card h3 { + color: var(--white); + margin-bottom: 1rem; + font-size: 1.3rem; +} + +.feature-card p { + color: var(--silver); + font-size: 0.95rem; + line-height: 1.5; +} + +/* Responsive adjustments */ +@media (max-width: 768px) { + .about-section { + padding: 3rem 1rem; + } + + .feature-grid { + grid-template-columns: 1fr; + gap: 1.5rem; + } + + .about-title { + margin-bottom: 3rem; + } + + .about-title h2 { + font-size: 2rem; + } } \ No newline at end of file diff --git a/index.html b/index.html index 49154d9..c5786a4 100644 --- a/index.html +++ b/index.html @@ -38,6 +38,35 @@ +
+
+
+

About us

+

Keep track of your most important tasks.

+
+
+
+
+
📝
+

Task Management

+

Create, organize, and track your tasks with ease. Stay on top of your priorities.

+
+
+
🎯
+

Goal Setting

+

Set clear goals and break them down into manageable tasks to achieve success.

+
+
+
📊
+

Progress Tracking

+

Monitor your progress and celebrate your achievements as you complete tasks.

+
+ +
+
+
+
+ \ No newline at end of file