Giter Club home page Giter Club logo

projectzeppelin's Introduction

Project Zeppelin

License: CC BY-NC-SA 4.0 Stage Version NodeJS Slack

Quick start

Clone and run the MattZK/ProjectZeppelin repository:

git clone https://github.com/MattZK/ProjectZeppelin.git
cd ProjectZeppelin
npm install
gulp

To start a development server:

gulp

To build the project:

gulp build

Requirements

  • NodeJS v9.x
  • SASS Compiler
  • Gulp

NodeJS

Download NodeJS

SASS

Download Ruby (Windows Only)

gem install sass

Gulp

npm install gulp-cli -g

More info follows


NOTE: This repo is still in testing phase, there is no guarantee that code is correct.

projectzeppelin's People

Contributors

f0xedb avatar mattzk avatar timdams avatar

Stargazers

 avatar

Watchers

 avatar  avatar

projectzeppelin's Issues

CSS Grid

suggestie voor CSS Grid:
Werken met grid-template-areas :

       .container{
            display:grid;
           grid-gap: 20px;
             grid-template-columns: 1fr 1fr;
            grid-template-rows:1fr 2fr 2fr;
          grid-template-areas: 
              "hoofding hoofding"
                "sectie1 sectie2"
              "sectie3 sectie4";
        }
        .container .hoofding{
            grid-area: hoofding;
        }
        .container .sectie1{
           grid-area: sectie1;
        }
        .container .sectie2{
            grid-area: sectie2;
        }
        .container .sectie3{
            grid-area: sectie3;
        }
        .container .sectie4{
            grid-area: sectie4;
        }

=> werken met verschillende schermen wordt dan zeer eenvoudig:

@media (min-width:1000px){
.container{
grid-gap: 20px;
grid-template-columns: 1fr 1fr 1fr 1fr;
grid-template-rows:1fr 2fr;
grid-template-areas:
"hoofding hoofding hoofding hoofding"
"sectie1 sectie2 sectie3 sectie4";

        }
    }

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.