This file contains 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
<head> | |
<script type="text/javascript"> | |
var webalize = function (str) { | |
var charlist; | |
charlist = [ | |
['Á','A'], ['Ä','A'], ['Č','C'], ['Ç','C'], ['Ď','D'], ['É','E'], ['Ě','E'], | |
['Ë','E'], ['Í','I'], ['Ň','N'], ['Ó','O'], ['Ö','O'], ['Ř','R'], ['Š','S'], | |
['Ť','T'], ['Ú','U'], ['Ů','U'], ['Ü','U'], ['Ý','Y'], ['Ž','Z'], ['á','a'], | |
['ä','a'], ['č','c'], ['ç','c'], ['ď','d'], ['é','e'], ['ě','e'], ['ë','e'], | |
['í','i'], ['ň','n'], ['ó','o'], ['ö','o'], ['ř','r'], ['š','s'], ['ť','t'], |
This file contains 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
/// | |
/// Calculates the color of a linear gradient at a specific point. | |
/// | |
/// @param {Color} $start - gradient’s start color | |
/// @param {Color} $end - gradient’s end color | |
/// @param {Number} $point - point of the gradient (between 0 and 1, or 0% and 100%) at which we want the color | |
/// @return {Color} | |
/// | |
/// @example scss | |
/// background-color: gradient-color-at(#BBE087, #DCDE85, 0.4); |
This file contains 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 | |
directory="$PWD/public/manifest-icon/" | |
icon="icon.svg" | |
iconMaskable="icon-maskable.svg" | |
sizes=(32 36 48 72 96 128 144 192 256 384 512 1024 2048) | |
for i in "${sizes[@]}"; do | |
echo Resizing $i |