Skip to content

Instantly share code, notes, and snippets.

View arkadiusz-wieczorek's full-sized avatar

Arkadiusz Wieczorek arkadiusz-wieczorek

View GitHub Profile
@arkadiusz-wieczorek
arkadiusz-wieczorek / svg2pdf.bash
Created August 3, 2020 05:51 — forked from s417-lama/svg2pdf.bash
Reliable way to convert an SVG file to a PDF file using headless Chrome
#!/bin/bash
#
# Convert an SVG file to a PDF file by using headless Chrome.
#
if [ $# -ne 2 ]; then
echo "Usage: ./svg2pdf.bash input.svg output.pdf" 1>&2
exit 1
fi
@arkadiusz-wieczorek
arkadiusz-wieczorek / input-range.css
Created October 11, 2018 06:33
Styling `input[type="range"]`
// output css
input {
align-items: center;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
-webkit-apperance: none;
background: none;
cursor: pointer;
display: flex;