GithubHelp home page GithubHelp logo

packtpublishing / css---the-complete-guide-incl.-flexbox-grid-and-sass- Goto Github PK

View Code? Open in Web Editor NEW
36.0 6.0 29.0 215.14 MB

Code repository for CSS - The Complete Guide (incl. Flexbox, Grid and Sass), published by Packt

License: MIT License

css---the-complete-guide-incl.-flexbox-grid-and-sass-'s Introduction

CSS - The Complete Guide (incl. Flexbox, Grid and Sass)

This is the code repository for CSS - The Complete Guide (incl. Flexbox, Grid and Sass), published by Packt. It contains all the supporting project files necessary to work through the video course from start to finish.

About the Video Course

Every web developer has to know CSS. CSS, short for Cascading Style Sheets, is a "programming language" you use to turn your raw HTML pages into a really beautiful website. This course covers it all. We start at the very basics and gradually dive in deeper and deeper. We do this by showing you both practical examples and the theory behind them. Getting started with CSS might look easy, but there actually is a lot of depth to CSS, so this course provides different "Tracks" or "Entry points" to exactly meet your demands and reflect your current knowledge level:
• The Basics Track: Start from scratch and learn CSS from the ground up. You start with lecture 1 and simply follow through to the end.
• The Advanced Track: You already know the CSS basics, you know what selectors are and how it works, but you want to dive in deeper and learn some advanced features and usages.
• The Expert Track: You got the advanced knowledge, too, but you want to dive into things like Flexbox, CSS Grid, CSS Variables, or Sass. This track is for you.
In the course project, we'll build the front end (no back end) of a fictional web hosting company. We'll have a starting screen with different sections, a responsive design with an animated side-drawer, modals and forms, and lot of CSS animations, font styles, and more!

NOTE: The assignment problem and solution videos along with the corresponding codes are presented in the respective section folders on this GitHub repo

What You Will Learn

  • Gain practical experience by working hands-on with serverless infrastructures (AWS Lambda)
  • Export and deploy deep learning models using Tensorflow
  • Build a solid base in AWS and its various functions
  • Create a deep learning API using AWS Lambda 
  • Look at the AWS API gateway
  • Create deep learning processing pipelines using AWS functions
  • Create deep learning production pipelines using AWS Lambda and AWS Step Functions

Instructions and Navigation

Assumed Knowledge

To fully benefit from the coverage included in this course, you will need:
This course is for anyone who wants to learn CSS for the first time or wants to sharpen their CSS skills. It’s also for anyone who's excited to learn about the latest CSS features like Flexbox, CSS Grid, or CSS Variables, or anyone who knows CSS but wants to dive deeper.

Technical Requirements

This course has the following software requirements:

Related Products

css---the-complete-guide-incl.-flexbox-grid-and-sass-'s People

Contributors

asif-packt avatar kavyashreeshah avatar packt-itservice avatar packtutkarshr avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar

css---the-complete-guide-incl.-flexbox-grid-and-sass-'s Issues

section 4 styling anchor tags archive has the wrong code

The archive diving-deeper-04-styling-anchor-tags-finished.zip has the incorrect code: it doesn't have anything related to styling anchor tags. I've included both before and after making the changes suggested in the videos so others following the course have a choice on where they want to start i.e. making the changes themselves or just taking the changes and looking over them.

The correct code should be as follows before implementing any of the changes in the section:

index.html

<!DOCTYPE html>
<html_lang="en">
<head>
   <meta charset="UTF-8">
   <meta name="viewport" content="width=device-width, initial-scale=1.0">
   <meta http-equiv="X-UA-Compatible" content="ie=edge">
   <title>CSS Course</title>
   <link rel="stylesheet" href="main.css">
</head>
<body>
   <nav>
      <a href="#intro" class="active">Intro</a>
      <a href="#outro">Outro</a>
   </nav>
   <section id="intro" class="main-section">
      <p>This is the intro section.</p>
   </section>
   <section id="outro" class="main-section">
      <p>This is the outro section.</p>
   </section>
</body>
</html>

main.css

body {
    font-family: sans-serif;
}

nav {
    margin-bottom: 16px;
    background: #fa923f;
    padding: 8px 0;
}

a {
    text-decoration: none;
    color: white;
    margin: 10px;
}

.main-section {
    height: 800px;
    border: 1px solid #ccc;
    padding: 16px;
}

The correct code after implementing the changes in the section:

index.html

<!DOCTYPE html>
<html_lang="en">
<head>
   <meta charset="UTF-8">
   <meta name="viewport" content="width=device-width, initial-scale=1.0">
   <meta http-equiv="X-UA-Compatible" content="ie=edge">
   <title>CSS Course</title>
   <link rel="stylesheet" href="main.css">
</head>
<body>
   <nav>
      <a href="#intro" class="active">Intro</a>
      <a href="#outro">Outro</a>
   </nav>
   <section id="intro" class="main-section highlighted">
      <p>This is the intro section.</p>
   </section>
   <section id="outro" class="main-section">
      <p>This is the outro section.</p>
   </section>
</body>
</html>

main.css

body {
    font-family: sans-serif;
}

nav {
    margin-bottom: 16px;
    background: #fa923f;
    padding: 8px 0;
}

a {
    text-decoration: none;
    color: white;
    margin: 10px;
}

a.active {
    color: #521751;
}

.main-section {
    height: 800px;
    border: 1px solid #ccc;
    padding: 16px;
}

.highlighted {
    border: 2px solid #fa923f;
}

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.