Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
--border-width: 1px; | |
--bold-font-weight: bold; | |
--button-font-family: inherit; | |
--button-font-size: inherit; | |
--button-font-weight: var(--bold-font-weight); | |
--button-line-height: 1.125rem; | |
--button-padding-y: .5rem; | |
--button-padding-x: 1rem; | |
--border-radius: 3px; | |
--blue: #0074d9; |
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
{ | |
"name": "", | |
"version": "", | |
"description": "", | |
"main": "index.js", | |
"scripts": { | |
"bootstrap": "mkdir -p app/{scripts,styles,images} www && touch app/scripts/main.js app/styles/main.scss", | |
"clean": "rm -r www/*", | |
"test": "mocha app/scripts/**/*.test.js --compilers js:babel-core/register --recursive --reporter list --require app/scripts/utils/test-setup.js", | |
"watch:test": "npm test -- --watch", |
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 class="header"> | |
<div class="container"> | |
<p class="header__logo"> | |
<a href="/"> | |
<img src="http://placehold.it/300x200" alt="Site Logo"> | |
</a> | |
</p> | |
<nav class="main-nav"> | |
<a href="/about">About</a> |
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
{ | |
"dependencies": { | |
"app.js": { | |
"files": [ | |
"js/**/*.js", | |
"js/main.js" | |
], | |
"main": true | |
}, | |
"main.css": { |
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
Apr 1st - Apr 14th | |
# General | |
Trains timetabling - http://www.hyperdia.com/ | |
# Tokyo | |
- SHINJUKU GYOEN - Cherry blossom | |
- Ittineries - http://www.japan-guide.com/e/e3051.html | |
- Tsukiji Fish Market | |
- Kamakura (Giant Budda) |
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
// Skip to content | |
.skip-to-content{ | |
position: absolute; | |
clip: rect(1px, 1px, 1px, 1px); | |
opacity: 0; | |
transition: opacity 0.2s; | |
&:focus{ | |
position: static; | |
clip: auto; |
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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<title>Style Guide</title> | |
<link rel="stylesheet" href="css/style.css"> | |
</head> | |
<body class="styleguide"> |
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
// ---- | |
// Sass (v3.3.7) | |
// Compass (v1.0.0.alpha.18) | |
// ---- | |
$breakpoints: ( | |
start: 0, | |
first: (640 / 16) * 1em, | |
second: (800 / 16) * 1em, | |
third: (1024 / 16) * 1em |
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
<div class="g"> | |
<div class="gi one-half">one-half</div> | |
<div class="gi one-half">one-half</div> | |
<div class="gi one-quarter">one-quarter</div> | |
<div class="gi one-quarter">one-quarter</div> | |
<div class="gi one-quarter">one-quarter</div> | |
<div class="gi one-quarter">one-quarter</div> | |
<div class="gi one-quarter">one-quarter</div> | |
</div> |
NewerOlder