- Semantic markup
- HTML standards mode and quirks mode
- HTML fundamentals
- Classes and IDs
- CSS fundamentals
- Selectors
- Resets and normalizers
- The box model
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* First all you need too install express as a dependency | |
* $ npm i express --save | |
* For more information about express visit http://expressjs.com/ | |
*/ | |
var express = require('express'); | |
var app = express(); | |
// __dirname + '/' refers to the folder you have created index.html | |
app.use('/', express.static(__dirname + '/')); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// The path for our ionicons font files, relative to the built CSS in www/css | |
$ionicons-font-path: "../lib/ionic/fonts" !default; | |
src:url("#{$ionicons-font-path}/ionicons.eot?v=#{$ionicons-version}"); |
Resources for learning web design & front-end development:
ONLINE
Design
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Device pixel densities based on: */ | |
/* - Test for CSS by @marcedwards from @bjango */ | |
/* (http://bjango.com/articles/min-device-pixel-ratio/) */ | |
/* - Retina Display Media Query */ | |
/* (https://css-tricks.com/snippets/css/retina-display-media-query/)*/ | |
/* 1.25 dpr */ | |
@media | |
(-webkit-min-device-pixel-ratio: 1.25), | |
(min-resolution: 120dpi){ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[alias] | |
co = checkout | |
pd = push origin develop | |
st = -p status | |
cm = commit | |
w = whatchanged | |
last = cat-file commit HEAD | |
lg = log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit | |
ls = show --pretty="format:" --name-only | |
alias = ! git config --get-regexp ^alias\\. | sed -e s/^alias\\.// -e s/\\ /\\ =\\ / |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$("#selectBox").append('<option value="option6">option6</option>'); |
#Some CSS3 techniques
If you want to create a shadow for a png image, no matter what form has. You can do it applying the css filter -webkit-filter
.
Original image:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* $HTML-CONDITIONAL-HEADER | |
<!--[if lt IE 7 ]> <html class="ie ie6 no-js" lang="es"> <![endif]--> | |
<!--[if IE 7 ]> <html class="ie ie7 no-js" lang="es"> <![endif]--> | |
<!--[if IE 8 ]> <html class="ie ie8 no-js" lang="es"> <![endif]--> | |
<!--[if IE 9 ]> <html class="ie ie9 no-js" lang="es"> <![endif]--> | |
<!--[if gt IE 9]><!--><html class="no-js" lang="es"><!--<![endif]--> | |
<!-- the "no-js" class is for Modernizr. --> | |
*/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module.exports = function(grunt) { | |
grunt.initConfig({ | |
less: { | |
development: { | |
options: { | |
paths: ["./css"], | |
compress: false | |
}, | |
files: { |
NewerOlder