<style>
@media (max-width: 63.99em) {
.c-nav__dropDown {
margin-left: var(--space-16);
}
.c-nav__dropDown .c-nav__item {
margin-bottom: 0;
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
// Replace YOUR_LIGHT_COLOR_HERE with your light background. | |
// Replace YOUR_DARK_COLOR_HERE in two lines with your dark background. | |
<style> | |
:root { | |
--nav-background: YOUR_LIGHT_COLOR_HERE; | |
} | |
@media (prefers-color-scheme: dark) { | |
:root:not([data-user-color-scheme]) { |
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
<style> | |
.c-content .kg-callout-card.kg-callout-card-grey { background: rgba(124,139,154,.13); } | |
.c-content .kg-callout-card.kg-callout-card-blue { background: rgba(33,172,232,.12); } | |
.c-content .kg-callout-card.kg-callout-card-green { background: rgba(52,183,67,.12); } | |
.c-content .kg-callout-card.kg-callout-card-yellow { background: rgba(240,165,15,.13); } | |
.c-content .kg-callout-card.kg-callout-card-red { background: rgba(209,46,46,.11); } | |
.c-content .kg-callout-card.kg-callout-card-pink { background: rgba(225,71,174,.11); } | |
.c-content .kg-callout-card.kg-callout-card-purple { background: rgba(135,85,236,.12); } | |
.c-content .kg-callout-card.kg-callout-card-accent { background: var(--ghost-accent-color); } | |
</style> |
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
{{#unless access}} | |
<aside class='c-post-upgrade-cta'> | |
{{#has visibility='members'}} | |
<h4 class='c-post-upgrade-cta__title'>{{t 'This page is for subscribers only'}}</h4> | |
{{/has}} | |
{{#has visibility='paid'}} | |
<h4 class='c-post-upgrade-cta__title'>{{t 'This page is for paying subscribers only'}}</h4> | |
{{/has}} |
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
// Unfollow everyone on twitter.com, by Jamie Mason (https://twitter.com/fold_left) | |
// https://gist.github.com/JamieMason/7580315 | |
// | |
// 1. Go to https://twitter.com/YOUR_USER_NAME/following | |
// 2. Open the Developer Console. (COMMAND+ALT+I on Mac) | |
// 3. Paste this into the Developer Console and run it | |
// | |
// Last Updated: 09 April 2020 | |
(() => { | |
const $followButtons = '[data-testid$="-unfollow"]'; |
Ever wanted to delete all your likes/favorites from Twitter but only found broken/expensive tools? You are in the right place.
- Go to: https://twitter.com/{username}/likes
- Open the console and run the following JavaScript code:
setInterval(() => {
for (const d of document.querySelectorAll('div[data-testid="unlike"]')) {
d.click()
}
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
name: Beirut Theme Deploy | |
on: | |
push: | |
branches: | |
- master | |
- main | |
- deploy | |
jobs: | |
deploy: | |
runs-on: ubuntu-18.04 |