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
.container { | |
border: 2px solid black; | |
text-align-last: justify; | |
margin: 0; | |
padding: 0; | |
} | |
.content { | |
width: 20%; | |
display: inline-block; | |
height: 100px; |
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,body { | |
height: 100%; | |
} | |
body:before { | |
content: ''; | |
height: 100%; | |
display: inline-block; | |
vertical-align: middle; | |
} | |
meter { |
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
/* | |
AMD-compatible async 'define' modularization by sergiolopes and luiz: | |
https://gist.github.com/luiz/d71c99cf1cda53190e70 | |
Contains the 'define' module syntax compatible with the official API and | |
support for injecting the 'export' variable and a flexible dependency | |
resolver with no restrictions on how you load your files. | |
This implementation doesn't load your JS files so you have to do it. You | |
can bundle one big file, load multiple files, load them asynchronously, out |