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
#!/bin/bash | |
# remove previously generated site | |
echo -e "\033[0;32mRemove previousely generated site...\033[0m" | |
if [ -e ./static ]; then | |
cp static/README.md . | |
rm -rfv static/* | |
fi | |
# generate static site |
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
.myIframe { | |
position: relative; | |
padding-bottom: 56.25%; | |
padding-top: 30px; | |
margin-top: 30px; | |
margin-bottom: 30px; | |
height: 0; | |
overflow: auto; | |
-webkit-overflow-scrolling:touch; | |
} |