##Introduction note: work in progress So you have to code/make a website in 30 minutes for someone that scales on laptops, mobiles and tablets. What do you do? : Code your own front-end library overnight Use Twitter Bootstrap The answer is you use Twitter Bootstrap as you only have 30 minutes during lunch break. Because why do you want to waste your lunch break coding
10 min guide to CSS3 Grid Layout
Introduction CSS3 Grid Layout is great for controlling layout with rows AND columns! 1. Create the structure of the layout (i.e. # of rows and columns) 2. Place items on the layout (manually or through auto placement) Forge on Getting started Placing items on a grid: “display:grid” [codepen_embed height=”300″ theme_id=”21517″ slug_hash=”WWELoK” default_tab=”result” user=”Kauress”]See the Pen CSS3 Crash Notes: Part 1 by Kauress (@Kauress) on CodePen.[/codepen_embed]
Day 3: Anonymous JavaScript function
Anonymous functions: “Anonymous functions are created at runtime. The function operator can be used anywhere that it’s valid to use an expression. For example you can use the function operator when a variable is being assigned, when a parameter is being passed to a function or in a return statement.” more @helephant [codepen_embed height=”411″ theme_id=”21518″ slug_hash=”MZzNZB” default_tab=”html,result” user=”Kauress”]See the Pen <a href=’https://codepen.io/Kauress/pen/MZzNZB/’>Day 3: Anonymous JavaScript