commit e890f478a1bdd65c9ff66dff5ddc1f19b9f17e24 Author: Tim Basten Date: Tue Mar 10 18:49:10 2026 +0800 Initial commit diff --git a/frontend/css/styles.css b/frontend/css/styles.css new file mode 100644 index 0000000..4d65f00 --- /dev/null +++ b/frontend/css/styles.css @@ -0,0 +1,115 @@ +:root { + --primary: #150135; + + --secondary: #6c2bad; + + --secondary-hover: #3c7aca; + + --pink: #ff00f2; +} + +.bg-img { + /* background-image: url(/frontend/Images/Black\ Background\ Abstract.jpg); */ + + background: + linear-gradient(var(--primary), #6c2bad4d, var(--primary)), + radial-gradient( + circle 700px at 20% 30%, + + rgba(255, 0, 179, 0.445), + transparent + ), + radial-gradient( + circle 500px at 80% 70%, + + rgba(255, 0, 179, 0.445), + transparent + ); + + min-height: 90vh; + + height: auto; + + background-size: cover; + + background-position: center center; + + background-repeat: no-repeat; + + /* background-blend-mode: overlay; */ + + /* background-color: rgba(0, 0, 0, 0.467); */ +} + +.bg-img.dashboard { + min-height: auto; +} + +body { + background-color: var(--primary); +} + +nav, +footer { + background-color: var(--primary); + + color: white; +} + +.nav-link { + color: white; +} + +.nav-link:hover { + color: var(--secondary); +} + +.navbar-toggler { + border: none !important; + + box-shadow: none !important; +} + +.btn-primary { + background-color: var(--secondary); + + color: white; + + border-color: transparent; +} + +.btn-primary:hover { + background-color: var(--secondary-hover); + + color: white; + + border-color: transparent; +} + +form a { + text-decoration: none; + + color: white; + + transition: 0.2s ease-in-out; +} + +form a:hover { + color: var(--secondary); +} + +.bg-translucent { + background-color: #00000063; +} + +#sortSelect:hover { + cursor: pointer; +} + +.pinkBorder { + border: var(--pink) 1px solid; +} + +textarea { + resize: none; +} diff --git a/frontend/dashboard.html b/frontend/dashboard.html new file mode 100644 index 0000000..e69de29 diff --git a/frontend/features.html b/frontend/features.html new file mode 100644 index 0000000..e69de29 diff --git a/frontend/images/Asana.png b/frontend/images/Asana.png new file mode 100644 index 0000000..25a89d1 Binary files /dev/null and b/frontend/images/Asana.png differ diff --git a/frontend/images/Black Background Abstract.jpg b/frontend/images/Black Background Abstract.jpg new file mode 100644 index 0000000..f96d116 Binary files /dev/null and b/frontend/images/Black Background Abstract.jpg differ diff --git a/frontend/images/Construction.svg b/frontend/images/Construction.svg new file mode 100644 index 0000000..546e18a --- /dev/null +++ b/frontend/images/Construction.svg @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/frontend/images/Contact.svg b/frontend/images/Contact.svg new file mode 100644 index 0000000..844de16 --- /dev/null +++ b/frontend/images/Contact.svg @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/frontend/images/CreateNew.png b/frontend/images/CreateNew.png new file mode 100644 index 0000000..906ed8c Binary files /dev/null and b/frontend/images/CreateNew.png differ diff --git a/frontend/images/Cross.svg b/frontend/images/Cross.svg new file mode 100644 index 0000000..b20d528 --- /dev/null +++ b/frontend/images/Cross.svg @@ -0,0 +1,7 @@ + + + + + + cross-circle Created with Sketch Beta. + \ No newline at end of file diff --git a/frontend/images/Email.svg b/frontend/images/Email.svg new file mode 100644 index 0000000..eec3f07 --- /dev/null +++ b/frontend/images/Email.svg @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/frontend/images/Hamburger.svg b/frontend/images/Hamburger.svg new file mode 100644 index 0000000..dc15269 --- /dev/null +++ b/frontend/images/Hamburger.svg @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/frontend/images/Phone.svg b/frontend/images/Phone.svg new file mode 100644 index 0000000..9c1cdc3 --- /dev/null +++ b/frontend/images/Phone.svg @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/frontend/images/Salesforce.png b/frontend/images/Salesforce.png new file mode 100644 index 0000000..0e623a1 Binary files /dev/null and b/frontend/images/Salesforce.png differ diff --git a/frontend/images/Slack.png b/frontend/images/Slack.png new file mode 100644 index 0000000..e2900e2 Binary files /dev/null and b/frontend/images/Slack.png differ diff --git a/frontend/images/Tasks-Screenshot (1).png b/frontend/images/Tasks-Screenshot (1).png new file mode 100644 index 0000000..7f804ed Binary files /dev/null and b/frontend/images/Tasks-Screenshot (1).png differ diff --git a/frontend/images/Tick.svg b/frontend/images/Tick.svg new file mode 100644 index 0000000..5be131f --- /dev/null +++ b/frontend/images/Tick.svg @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/frontend/images/logo.svg b/frontend/images/logo.svg new file mode 100644 index 0000000..3a86397 --- /dev/null +++ b/frontend/images/logo.svg @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/frontend/index.html b/frontend/index.html new file mode 100644 index 0000000..3683b27 --- /dev/null +++ b/frontend/index.html @@ -0,0 +1,37 @@ + + + + + + To Do App | Home + + + + + + + + + diff --git a/frontend/login.html b/frontend/login.html new file mode 100644 index 0000000..e69de29 diff --git a/frontend/pricing.html b/frontend/pricing.html new file mode 100644 index 0000000..e69de29 diff --git a/frontend/signup.html b/frontend/signup.html new file mode 100644 index 0000000..e69de29 diff --git a/frontend/support.html b/frontend/support.html new file mode 100644 index 0000000..e69de29