Git Product home page Git Product logo

wenever.github.io's People

Contributors

wenever avatar

Watchers

 avatar  avatar

wenever.github.io's Issues

CSS formatting

If you're going to stretch over multiple lines, it's stylistically common to see those properties broken up into their respective actual properties over just having more lines.

background:
       linear-gradient(
      rgba(0, 0, 0, 0.2),
      rgba(0, 0, 0, 0.2)
    ),
     url("https://0.s3.envato.com/files/27762085/03_Denim%20texture%20background%20preview%202.jpg");

into this:

background-color:linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
background-image: url("https://0.s3.envato.com/files/27762085/03_Denim%20texture%20background%20preview%202.jpg")

Also, spacing is weird, might be making it hard to debug.

Also, group similar structures together, such as placing the rules needed to make the CSS nametag together, and the navbar rules together, and the rules for images together.

Tabs

Tabs on index.html are kinda crazy and all over the place, make sure they are consistent to ensure readable code.

Spacing

Use standard spacing for properties in HTML tags, and prefer camelCase.
Instead of this:

<div id = "mydiv"></div>

Do this:

<div id="myDiv"></div>

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.