Last active
October 22, 2015 14:49
-
-
Save tamamu/cf5ecb45f8dcae633786 to your computer and use it in GitHub Desktop.
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
{ | |
"snippets": { | |
"variables": { | |
"lang": "ja" | |
}, | |
"html": { | |
"snippets": { | |
"col1": "<!DOCTYPE html>\n<html lang=\"ja\">\n<head>\n\t<meta charset=\"UTF-8\">\n\t<title>Document</title>\n\t<style>\n\t\t*{\n\t\t\tmargin:0;\n\t\t\tpadding:0;\n\t\t}\n\t\tbody{\n\t\t\tbackground-color: #ccc;\n\t\t}\n\t\t#wrapper{\n\t\t\tmin-height:100vh;\n\t\t\tdisplay:flex;\n\t\t\tflex-direction: column;\n\t\t}\n\t\theader{\n\t\t\theight:100px;\n\t\t\tbackground-color: #333;\n\t\t}\n\t\t#contents{\n\t\t\tflex:1;\n\t\t\tbackground-color: #fcfcfc;\n\t\t}\n\t\tfooter{\n\t\t\theight:100px;\n\t\t\tbackground-color: #333;\n\t\t}\n\t</style>\n</head>\n<body>\n\t<div id=\"wrapper\">\n\t<header>\n\t\t<nav>\n\n\t\t</nav>\n\t</header>\n\t<div id=\"contents\">\n\n\t</div>\n\t<footer>\n\n\t</footer>\n\t</div>\n</body>\n</html>", | |
"col2": "<!DOCTYPE html>\n<html lang=\"ja\">\n<head>\n\t<meta charset=\"UTF-8\">\n\t<title>Document</title>\n\t<style>\n\t\t*{\n\t\t\tmargin:0;\n\t\t\tpadding:0;\n\t\t}\n\t\tbody{\n\t\t\tbackground-color: #ccc;\n\t\t}\n\t\t#wrapper{\n\t\t\tmin-height:100vh;\n\t\t\theight:100%;\n\t\t\tdisplay:flex;\n\t\t\tflex-direction: column;\n\t\t}\n\t\theader{\n\t\t\theight:100px;\n\t\t\tbackground-color: #333;\n\t\t}\n\t\t#contents{\n\t\t\tdisplay:flex;\n\t\t\tflex:1;\n\t\t\tflex-direction: row;\n\t\t}\n\t\t#content-left{\n\t\t\tflex:1;\n\t\t\tbackground-color: #fcfcfc;\n\t\t}\n\t\t#content-right{\n\t\t\twidth:300px;\n\t\t\tbackground-color: #999;\n\t\t}\n\t\tfooter{\n\t\t\theight:100px;\n\t\t\tbackground-color: #333;\n\t\t}\n\t</style>\n</head>\n<body>\n\t<div id=\"wrapper\">\n\t<header>\n\t\t<nav>\n\n\t\t</nav>\n\t</header>\n\t<div id=\"contents\">\n\t\t<div id=\"content-left\">\n\n\t\t</div>\n\t\t<div id=\"content-right\">\n\n\t\t</div>\n\t</div>\n\t<footer>\n\n\t</footer>\n\t</div>\n</body>\n</html>" | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment