SpecialProjectADU / Site

1 stars 0 forks source link

Contact-Us Page Enhancements #92

Closed AlyafeiAli closed 1 year ago

AlyafeiAli commented 1 year ago

These comments are from Dr. Mourad.

Responsibility: @rahaf2201 and her team.
Write your questions in the comments and mention Mouatism.

image

rahaf2201 commented 1 year ago

Fixed. Added a Chatbot. Fixed Email. Also, fixed the heading based on the standard given. image image

NOTE: I will be downloading all updated files after Osama fixes the logo and I update them on all my group's pages.

binHarby commented 1 year ago

Your CSS selectors are over lapping as well in StylesStylesAboutContactEventLoginSignup.css

Mostly these ones:

...
p{
  font-size: 16px;
  color: #929AAB;
}

...

.map h3{
  padding-top: 150px;
  font-weight: 1000;
  color: white;
  font-family: 'Bebas Neue', cursive;
  font-family: 'Comfortaa', cursive;
  font-size: 80px;

}

its a single css file that styles 4 pages, and the p selector is what made the title white color, which made it not showup in the contact page.

try not to change 'color' or 'background-color' using html selectors that target many childeren. Instead use a class if you can, so when we change styles in Global.css,'Footer.cssorNavbar.css`, it can go smoothly.

rahaf2201 commented 1 year ago

Already fixed the color of the heading!