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
@namespace url(http://www.w3.org/1999/xhtml); | |
@-moz-document domain("basecamp.com") { | |
body { font-family: "Helvetica Neue",helvetica,arial,sans-serif !important; } | |
.card--app { border-radius: 0.75em !important; } | |
.chat-line__bubble { | |
border-radius: 0.25em !important; | |
background-color: #fff !important; | |
} | |
} |
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
<html> | |
<head> | |
<style type="text/css"> | |
table table { | |
width: 600px !important; | |
} | |
table div + div { /* main content */ | |
width: 65%; | |
float: left; | |
} |
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 | |
apps=( Calendar Evernote Google\ Chrome Hall Messages SourceTree Spotify Sublime\ Text\ 2 Tunnelblick ) | |
for app in "${apps[@]}" | |
do | |
echo Closing "$app". | |
osascript -e "tell application \"$app\" to quit" | |
done |
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 | |
apps=( Tunnelblick Calendar Evernote Hall Messages SourceTree Spotify Sublime\ Text\ 2 ) | |
for app in "${apps[@]}" | |
do | |
echo Opening "$app". | |
open /Applications/"$app".app | |
done |