Skip to content

Instantly share code, notes, and snippets.

View stelcodes's full-sized avatar
🏠
Working from home

Stel Clementine stelcodes

🏠
Working from home
View GitHub Profile
@stelcodes
stelcodes / userChrome.css
Last active December 21, 2021 12:56
Rounded tabs for Firefox + Nord color theme
/* Adapted from https://github.com/wilfredwee/photon-australis/blob/master/userChrome-dark.css */
/* Works for Firefox 89 and later */
/* Pair with the offical Nord color theme: https://addons.mozilla.org/en-US/firefox/addon/nord-theme */
/* This file should be located at ~/.mozilla/firefox/<profile-dir>/chrome/userChrome.css */
/* Simply restart Firefox and the css should load */
:root {
--tab-curve-width: 30px;
--tabs-border: transparent !important;
--tab-border-radius: 0 !important;
@stelcodes
stelcodes / Using Git to Manage a Live Web Site.md
Last active February 8, 2018 22:32 — forked from Nilpo/Using Git to Manage a Live Web Site.md
Using Git to Manage a Live Web Site

Using Git to Manage a Live Web Site

Overview

As a freelancer, I build a lot of web sites. That's a lot of code changes to track. Thankfully, a Git-enabled workflow with proper branching makes short work of project tracking. I can easily see development features in branches as well as a snapshot of the sites' production code. A nice addition to that workflow is that ability to use Git to push updates to any of the various sites I work on while committing changes.

Contents