Giter Club home page Giter Club logo

firstprojectweek1's Introduction

FirstProjectWeek1

3 page web page HW Coffee website layout

Page one = Main page

Page two = Store page

Page three = Contact Page

firstprojectweek1's People

Contributors

gsavickas avatar

firstprojectweek1's Issues

Width of footer causing X axis overflow

You're currently setting the width of the footer to 100% but have a margin of 10px. By changing the width to: width: calc(100% - 20px) you can take the margin into account and eliminate the overflow.

Unclear UX for menu

Currently the links don't differentiate which page the user is on. Remove the text decoration and add styling to show which page is active so the user knows where they are simply by looking at the menu.

Fix DRY issues in CSS

Make sure you're building reusable classes. For instance, you have the declaraton for flex-direction: column in a couple places where you should create a single class to help with those. You also have:

}
h3{
    text-shadow: -1px -1px 0 #000,
    1px -1px 0 #000,
    -1px 1px 0 #000,
    1px 1px 0 #000;
}
h2{
    text-shadow: -1px -1px 0 #000,
    1px -1px 0 #000,
    -1px 1px 0 #000,
    1px 1px 0 #000;
}
h1{
    text-shadow: -1px -1px 0 #000,
    1px -1px 0 #000,
    -1px 1px 0 #000,
    1px 1px 0 #000;
}

which since they're all the same declarations should be simplified to:

}
h1, h2, h3{
    text-shadow: -1px -1px 0 #000,
    1px -1px 0 #000,
    -1px 1px 0 #000,
    1px 1px 0 #000;
}

Too much spacing to right of contact form

Adjust layout of contact form to reduce spacing. This could be as simple as moving the first and last names to the same row or adjusting the overall width of the form. Either way, adjusting the layout can reduce the negative space and create a better looking UI.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.