diff --git a/dino_webpage/dino.html b/dino_webpage/dino.html new file mode 100644 index 0000000..d9f1007 --- /dev/null +++ b/dino_webpage/dino.html @@ -0,0 +1,430 @@ + + + + + + Dino | Interactive Accessibility + + + + + +
+ +
+ +
+
+
+
+ + + +
+
+
+ Dino Mascot +
+ +
+
+

DINO!

+
+ +

+ Dino + is + an + extension + developed + to + make + the + web + more + accessible + to + people + with + dyslexia + and + color + blindness. + Dino + allows + you + to + change + colors, + add / remove images, read out pages etc. +

+ + +
+
+
+ +
+
+
Color icon
+
+

Change Colors

+

Modify contrast and color schemes on any website for better visibility.

+
+
+ +
+
Speech icon
+
+

Read Out Pages

+

Smart text-to-speech engine specifically designed for content consumption.

+
+
+ +
+
Image removal icon
+
+

Remove Images

+

Declutter pages instantly to focus purely on the text information.

+
+
+
+ + + + \ No newline at end of file diff --git a/dino_webpage/images_icons/dino_logo-removebg-preview (2).png b/dino_webpage/images_icons/dino_logo.png similarity index 100% rename from dino_webpage/images_icons/dino_logo-removebg-preview (2).png rename to dino_webpage/images_icons/dino_logo.png diff --git a/dino_webpage/index.html b/dino_webpage/index.html index be15935..7c81b58 100644 --- a/dino_webpage/index.html +++ b/dino_webpage/index.html @@ -4,50 +4,61 @@ - + Dino | Home - - Dino
-
- +
+ Dino Mascot

- Dino is an extension
developed to make the web
more accessible to people with
dyslexia and color blindness.
Dino allows you to change
colors, add / remove images,
read out pages etc. + Dino is an extension
+ developed to make the web
more accessible to people with
+ dyslexia and color blindness.
Dino allows you to change
+ colors, add / remove images,
read out pages etc.

-
- +
+
- - - - - + + + + +
- - -
-
- + Screenshot 1 + Screenshot 2
- +
+ + + + Open Dino Extension + +
\ No newline at end of file diff --git a/dino_webpage/styles.css b/dino_webpage/styles.css index 6b35d7e..0231c76 100644 --- a/dino_webpage/styles.css +++ b/dino_webpage/styles.css @@ -1,148 +1,32 @@ -*{ - box-sizing: border-box; - padding: 0; - margin: 0; -} - -html{ - scroll-behavior: smooth; -} - -.navbar{ - background: rgba(10, 38, 71, 0.96); - height: 5.5rem; - width: 100%; - font-style: "Mullish"; - display: flex; - padding: 0; - margin-top: 0; - overflow: hidden; -} - -.nav__logo{ - width: 80%; - margin-top: 6px; - margin-left: 1%; - /* height:10px; */ +.magic-bento-card::after { + --glow-x: 50%; + --glow-y: 50%; + --glow-color: var(--primary); + opacity: 0; + transition: opacity 0.3s ease; } -ul{ - display: flex; - gap: 3.5rem; - list-style-type: none; -} - - -ul a{ - text-decoration: none; - font-family: 'Mulish'; - font-style: normal; - font-weight: 600; - font-size: 1.5rem; - line-height: 90px; - color: #FFFFFF; +.magic-bento-card:hover::after { + opacity: 1; } - -.section1{ - width:100%; - height:40rem; - background-image: url(images_icons/bg2\ low\ transperancy.png); -} - -.section1_content{ +.hero-image-side { display: flex; - justify-content: center; - align-items: center; - gap: 8.9rem; -} - -.section1_img{ - width: 50%; - height: 30rem; - margin-left: 170px; - margin-top: 4%; -} - -.about__data{ - font-family: 'Inter'; - font-style: normal; - font-weight: 500; - font-size: 40px; - color: #0A2647; - width: 80%; - height: 15rem; -} - -.section1_btn{ - width: 33%; - height: 10%; - background: rgba(137, 196, 225, 0.7); - border-radius: 42px; - margin-left: 35%; - margin-top: 5%; - font-family: 'Mulish'; - font-style: normal; - font-weight: 520; - font-size: 35px; - /* line-height: 49px; */ - color: black; - border: none; - cursor: pointer; - text-align: center; align-items: center; justify-content: center; + max-width: 320px; } -.section2{ - display: flex; - width:100%; - height:40rem; - background-image: url(images_icons/bg2\ low\ transperancy.png); - padding-top: 8%; +.hero-image-side img { + width: 100%; + height: auto; } -.section2_btns button{ - display: flex; - flex-direction: column; - cursor: pointer; - width: 150%; - height: 60px; - background: rgba(137, 196, 225, 0.55); - border: 1px solid rgba(0, 0, 0, 0.29); - box-shadow: 5px 4px 10px rgba(0, 0, 0, 0.25); - border-radius: 25px; - font-family: 'Mulish'; - font-style: normal; - font-weight: 500; - font-size: 35px; - color: #1E204A; - margin-left: 15%; - margin-bottom: 19%; - justify-content:start; - align-items: center; - text-align: start; +.btn-cta:hover { + transform: translateY(-2px); + transition: all 0.2s ease; } -.section2_download_btn{ - background-image: url(images_icons/bg2\ low\ transperancy.png); - height: 10rem; -} -.section2_download_btn button{ - /* margin-top: 1%; */ - background: rgba(137, 196, 225, 0.55); - border: 1px solid rgba(0, 0, 0, 0.29); - box-shadow: 5px 4px 10px rgba(0, 0, 0, 0.25); - width: 29%; - height: 25px; - border-radius: 25px; - font-family: 'Mulish'; - font-style: normal; - font-weight:600; - font-size: 38px; - color: #1E204A; - margin-left: 55%; - justify-content:center; - align-items: center; - text-align: center; - padding-bottom: 6%; +.btn-cta:focus-visible { + outline: 3px solid var(--navy); + outline-offset: 3px; } \ No newline at end of file