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
| @-moz-document url("about:newtab"), url("about:home"), url(about:privatebrowsing) { | |
| /* Sets background image and autoscale image to browser window. */ | |
| body{ | |
| background-image: url("") !important; | |
| background-size: cover !important; | |
| background-repeat: no-repeat !important; | |
| background-attachment: fixed !important; | |
| background-position-x: center !important; | |
| background-position-y: bottom !important; | |
| } |
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
| @-moz-document url("about:home") { | |
| /* Sets home tab background image. */ | |
| body{ | |
| background-image: url("") !important; | |
| } | |
| } | |
| @-moz-document url("about:newtab") { | |
| /* Sets new tab background image. */ | |
| body{ |
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
| Echo off | |
| set /p video=Enter Input Filename (with file extension): | |
| set /p output=Enter Output Filename (without extension): | |
| set /p ffmpeg_options=Enter FFmpeg Options: | |
| set /p gifski_options=Enter Gifski Options: | |
| mkdir %temp%\gifski_sequence | |
| ffmpeg.exe -i %video% %ffmpeg_options% %temp%\gifski_sequence\frame%%04d.png | |
| gifski.exe %gifski_options% -o %output%.gif %temp%\gifski_sequence\frame*.png |
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
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Grid 2</title> | |
| <style> | |
| * { |
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
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Grid</title> | |
| <style> | |
| * { |