This file contains hidden or 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
/*! | |
ProtonMail Custom Theme - Black Rock | |
modified by Jack.A | |
*/ | |
/* Frame (topbar and sidebar.) */ | |
.headerDesktop-container { | |
background: #21242E; | |
} | |
body section.sidebar { | |
background: #21242E; |
This file contains hidden or 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
// External links | |
$('a').each(function() { | |
var a = new RegExp('/' + window.location.host + '/'); | |
if(!a.test(this.href)) { | |
$(this).click(function(event) { | |
event.preventDefault(); | |
event.stopPropagation(); | |
window.open(this.href, '_blank'); | |
}); | |
} |
This file contains hidden or 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
{ | |
// Use IntelliSense to learn about possible attributes. | |
// Hover to view descriptions of existing attributes. | |
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | |
"version": "0.2.0", | |
"configurations": [ | |
{ | |
"type": "mix_task", | |
"name": "mix", | |
"request": "launch", |
This file contains hidden or 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
// Backend titleBar Color | |
{ | |
"workbench.colorCustomizations": { | |
"titleBar.activeForeground": "#000000", | |
"titleBar.inactiveForeground": "#000000", | |
"titleBar.activeBackground": "#9400ff", | |
"titleBar.inactiveBackground": "#3b0066" | |
} | |
} |
This file contains hidden or 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
/* Firefox userChrome.css */ | |
/* Linux: ~/.mozilla/firefox */ | |
/* OSX: ~/Library/Application Support/Firefox/Profiles */ | |
/* Win: %APPDATA%\Mozilla\Firefox\Profiles\ */ | |
/* @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); */ | |
@namespace html url("http://www.w3.org/1999/xhtml"); | |
/* Tabs ---------- */ |
This file contains hidden or 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
{"lastUpload":"2020-08-14T02:32:29.078Z","extensionVersion":"v3.4.3"} |
This file contains hidden or 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
// animation behaviors | |
// ------------------- | |
$cubic-bezier: cubic-bezier(0.4, 0.0, 0.2, 1); | |
@mixin cubic-bezier { | |
-webkit-transition: all 225ms cubic-bezier(0.4, 0.0, 0.2, 1); | |
transition: all 225ms cubic-bezier(0.4, 0.0, 0.2, 1); | |
} | |
@mixin transition($args...) { | |
-webkit-transition: $args; |
This file contains hidden or 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
document.addEventListener('DOMContentLoaded', function() { | |
$.ajax({ | |
url: 'https://cdn.rawgit.com/laCour/slack-night-mode/master/css/raw/black.css', | |
success: function(css) { | |
$("<style></style>").appendTo('head').html(css); | |
} | |
}); | |
}); |
This file contains hidden or 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
#!/bin/bash | |
if [ -z "$1" ] | |
then | |
echo "No arguments supplied" | |
else | |
curl -u michaelperrygoodman -s https://api.github.com/users/$1/repos?per_page=200 | ruby -rubygems -e 'require "json"; JSON.load(STDIN.read).each { |repo| %x[git clone #{repo["ssh_url"]} ]}' | |
fi |
This file contains hidden or 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
server { | |
listen 443 ssl; | |
server_name *.dev; | |
index index.html index.htm; | |
### SSL log files ### | |
access_log /usr/local/etc/nginx/logs/pow.dev-ssl-access.log; | |
error_log /usr/local/etc/nginx/logs/pow.dev-ssl-error.log; |