View mono-system-font-stack.css
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
font-family: Menlo, Consolas, Monaco, Liberation Mono, Lucida Console, monospace; |
View serif-system-font-stack.css
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
font-family: Iowan Old Style, Apple Garamond, Baskerville, Times New Roman, Droid Serif, Times, Source Serif Pro, serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol; |
View sans-serif-system-font-stack.css
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
font-family: -apple-system, BlinkMacSystemFont, avenir next, avenir, segoe ui, helvetica neue, helvetica, Cantarell, Ubuntu, roboto, noto, arial, sans-serif; |
View icon-full-affiliate.css
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
article a[rel *= "sponsored"]:after { | |
display:inline-block;content: " " url(/affiliate.svg);width:1rem;padding-left:.3rem; | |
} |
View icon-full-pdf.css
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
article a[href *= ".pdf"]:after { | |
display:inline-block;content: " " url(/pdf.svg);width:2rem;padding-left:.4rem; | |
} |
View icon-full-example.css
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
article a[href *= "henshaw.social"]:after { | |
display:inline-block;content: " " url(/fediverse.svg);width:1.2rem;padding-left:.4rem; | |
} |
View icon-selector.css
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
a[href *= "henshaw.social"]:after |
View native-lazy-loading-image.html
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
<img src="https://domain.com/image.png" loading="lazy" alt="Image description"> |
View before-native-lazy-loading.html
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
<img class="lazy" data-src="https://domain.com/image.png" alt="Image description"> | |
<noscript> | |
<img src="https://domain.com/image.png" alt="Image description"> | |
</noscript> |
View remove.sql
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
UPDATE `yourls_log` SET `ip_address` = Null; | |
UPDATE `yourls_log` SET `user_agent` = Null; |
NewerOlder