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 { | |
height: 100%; | |
overflow: scroll; | |
-webkit-overflow-scrolling: touch; | |
} |
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
.site { | |
display: table; | |
height: 100%; | |
table-layout: fixed; | |
width: 100%; | |
} |
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 { | |
height: 100%; | |
overflow: hidden; | |
} | |
body { | |
height: 100%; | |
overflow: scroll; | |
} |
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> | |
<head> | |
<title>Sample Underscores HTML Structure</title> | |
</head> | |
<body> | |
<div id="page" class="hfeed site"> | |
<header id="masthead" class="site-header" role="banner"></header> | |
<div id="content" class="site-content"></div> | |
<footer id="colophon" class="site-footer" role="contentinfo"></footer> |
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" class="jsOff"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Slideshow</title> | |
<link rel="stylesheet" href="styles/style.css"> | |
</head> | |
<body> | |
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"> | |
<title>Scrolly jQuery Plugin</title> | |
<link rel="stylesheet" href="styles/style.css"> | |
</head> | |
<body> | |
<h1>This is a lot of text</h1> |
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"> | |
<title>Link Location Plugin</title> | |
<link rel="stylesheet" href="styles/style.css"> | |
</head> | |
<body> | |
<h1>Here's a bunch of links</h1> |
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
p:first-of-type { | |
font-size: 1.125em; | |
} | |
p:first-of-type:first-line { | |
font-size: 1.125em; | |
font-style:italic; | |
} | |
p:first-of-type:first-letter { |
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 { | |
font-size: 0.875em; /* 14 pixels */ | |
} | |
@media (min-width: 30em) { | |
html { | |
font-size: 1em; /* 16 pixels */ | |
} | |
} |
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
.photo-grid figcaption { | |
background: rgba(0,0,0,0.8); | |
color: white; | |
display: table; | |
height: 100%; | |
left: 0; | |
opacity: 0; | |
position: absolute; | |
right: 0; | |
top: 0; |