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 | |
# Recursively converts all HEIC files to JPG for the specified directory. Skips any files that have already | |
# been converted. Requires tifig, download latest release from github: | |
# https://github.com/monostream/tifig/releases and install at /usr/bin/tifig | |
# (or add the install location you choose to your $PATH) | |
# | |
# usage: ./heicToJpg.sh [RootDirectory] | |
# | |
rootDir=$1 | |
if [ -z "$rootDir" ] |
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
/* Fix for page jumping on modal open */ | |
body.modal-open { | |
margin-right: 10px; | |
main.home { | |
margin-left: 5px; | |
& ~ footer { | |
margin-left: 5px; | |
} | |
} | |
>header { |