chrisburnell / Pinboard Stylish Stylesheet
0 likes
0 forks
1 files
Last active 3 months ago
Legacy code from 2015-08-29T11:16:48-03:00
| 1 | /* Import Open Sans */ |
| 2 | @import url("//fonts.googleapis.com/css?family=Open+Sans:400italic,400,600"); |
| 3 | /* Import Normalize */ |
| 4 | @import url("//assets.chrisburnell.com/normalize.min.css"); |
| 5 | |
| 6 | |
| 7 | /* Reset the box model */ |
| 8 | html { |
| 9 | box-sizing: border-box; |
| 10 | } |
chrisburnell / Stylus Extension: Pixelate 88x31s
0 likes
0 forks
1 files
Last active 3 months ago
| 1 | :where(img[width="88"][height="31"]) { |
| 2 | image-rendering: pixelated; |
| 3 | } |
chrisburnell / Tampermonkey Extension: Pixelate 88x31s
0 likes
0 forks
1 files
Last active 3 months ago
For the Tampermonkey browser extension: applies `image-rendering: pixelated` CSS to images whose width and height are 88 and 31 respectively.
| 1 | // ==UserScript== |
| 2 | // @name Pixelate 88x31s |
| 3 | // @version 1.0.0 |
| 4 | // @namespace https://chrisburnell.com/ |
| 5 | // @author Chris Burnell |
| 6 | // @match *://*/* |
| 7 | // @run-at document-idle |
| 8 | // @grant none |
| 9 | // ==/UserScript== |
Newer
Older