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
body { | |
background: #262f43; | |
margin: 0; | |
padding: 0; | |
} | |
header { | |
height: 60px; | |
width: 100%; | |
background: yellow; |
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
<header> | |
<div class="hamburger-container"> | |
<div></div> | |
<div></div> | |
<div></div> | |
<input type="checkbox"> | |
<nav> | |
<ul> | |
<li></li> | |
<li></li> |
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
\travel-site | |
├── app | |
| ├── assets | |
| | ├── images | |
| | | ├── first-trip-hi-dpi-i.jpg | |
| | | ├── first-trip-hi-dpi.jpg | |
| | | ├── first-trip-i.jpg | |
| | | ├── first-trip-low-res-i.jpg | |
| | | ├── first-trip-low-res.jpg | |
| | | ├── first-trip.jpg |
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
function doneOrNot(board){ | |
// var boardForRegBuilder = []; | |
// boardForRegBuilder = deepCopy(board); | |
// console.log("boardForRegBuilder is " + boardForRegBuilder); | |
// function deepCopy(obj) { | |
// if (Object.prototype.toString.call(obj) === '[object Array]') { | |
// var out = [], i = 0, len = obj.length; | |
// for ( ; i < len; i++ ) { |
NewerOlder