Giter VIP home page Giter VIP logo

admin-dashboard's Introduction

Admin Dashboard


The live site can be found here

This is the final project from The Odin Project's Intermediate HTML and CSS course. The major focus is layout design, incorporating nested grids and utilizing flexbox where beneficial. This is an all encompassing challenge and can be found here should you like to try it out for yourself.


image


Table of Contents


Design Plan

  • The first phase of the project entails setting up the project and layout: Setting up your HTML and CSS with some simple dummy content. Applying Grid properties for the basic layout. Taking each section at a time targeting nested elements into Grid cells or Flexbox containers.

Challenges Encountered and Knowledge Gained

  • The ease of CSS variables is by far more convenient for updating overall styling.
        :root{
            --blue: rgb(25,146,212);
            --yellow: rgb(255,198,0);
            --lite-text: hsl(0, 2%, 12%);
        }
  • In my excitement to begin the project, I did not realize that icons were furnished. It was quite an experience to create my own. I faced challenges with sizing in different areas of the layout, but prevailed with a simple transform:
        .profile i{
            color: var(--blue);
            transform: scale(1.7);
            }
  • I found grid-template-areas to be the simplest way of defining cell placement.
        .main{
            display: grid;
            grid-gap: 1.5em;
            grid-template-columns: repeat(2, minmax(150px, 500px)) 25%;
            grid-template-areas: "project-title . announce-title"
                                 "projects projects announcements"
                                 "projects projects trend-title"
                                 "projects projects trending";
        }

Languages

  • HTML 5
  • CSS

admin-dashboard's People

Contributors

stephaniequintana avatar

Stargazers

 avatar

Watchers

 avatar

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.