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
"files.exclude": { | |
"**/.git": true, | |
"**/.DS_Store": true, | |
"**/*.js" : { | |
"when": "$(basename).ts" | |
}, | |
"**/*.js.map": { | |
"when": "$(basename)" | |
} | |
} |
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>Collapsible Panel</title> | |
<!-- Use this code however you like. I am at https://AlanSimpson.me- -> | |
<!-- Load jQuery library (simplifies the JavaScript coding later)--> | |
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script> | |
<script> | |
//jQuery code. | |
$(document).ready(function () { |
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> | |
<!-- Feel free to use and modify however you like http://AlanSimpson.me --> | |
<title>CSS Dot Leaders</title> | |
<style> | |
ul.dotleaders { | |
list-style: none; | |
padding: 0; | |
/* This width can be whatever you like */ |
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
/* Put class="crazy" in an img to to which you want to apply this CSS */ | |
img.crazy { | |
display: block; | |
margin: 10em auto; | |
/* That code is really just the opposite of the hover code. */ | |
transform: scale(1) rotate(720deg); | |
/* How long transitions take */ | |
transition: all 1s; | |
} |
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
<!-- YouTube video link --> | |
[](http://www.youtube.com/watch?v=YOUTUBEID "TOOLTIP TEXT") |
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
{ | |
"Version":"2012-10-17", | |
"Statement":[{ | |
"Sid":"PublicReadForGetBucketObjects", | |
"Effect":"Allow", | |
"Principal": "*", | |
"Action":["s3:GetObject"], | |
"Resource":["arn:aws:s3:::XXXXXXXX/*" | |
] | |
} |
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>Equal-Height Columns Example</title> | |
<style> | |
.columns { | |
display: table; | |
width: 90%; | |
border: solid 1px gray; |
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> | |
<!-- Sample CSS HTML thumbnail gallery by Alan Simpson --> | |
<!-- More goodies available from http://AlanSimpson.me and https://docs.com/learnhtml-club --> | |
<html> | |
<head> | |
<title>Thumbnail Gallery</title> | |
<style type="text/css"> | |
/* Entire gallery */ | |
.gallery { | |
position: relative; |
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>MyTemplate2</title> | |
<!-- Link to external style sheet --> | |
<link href="styles.css" rel="stylesheet" type="text/css" /> | |
</head> | |
<body> | |
<script> | |
//Make older browsers aware of new HTML5 layout tags |
OlderNewer