A Pen by Harry74323 on CodePen.
This file contains 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Box Shadow</title> | |
<style> | |
.box { | |
height: 150px; | |
width: 300px; | |
margin: 20px; |
This file contains 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
var gulp = require('gulp'), | |
express = require('express'), | |
sass = require('gulp-sass'), | |
spawn = require('child_process').spawn, | |
livereload = require('gulp-livereload'); | |
var EXPRESS_PORT = 4000; | |
var EXPRESS_ROOT = '_site/' | |