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
>a:before { | |
content: ''; | |
display: inline-block; | |
height: 100%; | |
vertical-align: middle; | |
margin-right: -0.25em; /* Adjusts for spacing */ | |
} |
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
#!/usr/bin/php | |
<?php | |
error_reporting(E_ALL); | |
if (count($argv) <= 1) { | |
print("usage: createMockup source_dir dest_dir images_dir\n"); | |
print("\tsource_dir: the directory containing all bmml file to convert\n"); | |
print("\tdest_dir: the directory where all html files will be written to\n"); | |
print("\timages_dir: a directory containing the exported PNGs of all .bmml files in source_dir (will be copied to dest_dir/images)\n"); | |
exit(1); | |
} |