https://github.com/ericduran/dotcss-ish
Simple system to manage small css changes around the internet.
https://github.com/ericduran/dotcss-ish
Last synced: 8 months ago
JSON representation
Simple system to manage small css changes around the internet.
- Host: GitHub
- URL: https://github.com/ericduran/dotcss-ish
- Owner: ericduran
- Created: 2013-03-30T20:05:09.000Z (about 13 years ago)
- Default Branch: master
- Last Pushed: 2017-10-09T19:09:35.000Z (over 8 years ago)
- Last Synced: 2023-03-11T05:07:55.188Z (over 3 years ago)
- Language: JavaScript
- Homepage:
- Size: 18.6 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# dotCss-ish (sort of)
# :exclamation::exclamation:DOES NOT WORK AS OF CHROME 32 SEE [https://stackoverflow.com/a/21210882](https://stackoverflow.com/a/21210882):exclamation::exclamation:
Simple system to manage small css changes around the internet.
I like the idea of [dotCss](https://github.com/stewart/dotcss) (and dotJs) I just don't think you should run a server just to serve css files :-/.
This works with Chrome Default Styles sheets and a tiny extension. The chrome exention just gives the website a class we can target. You can read more about the extension over at [dotcss-ish](https://github.com/ericduran/dotcss-ish/tree/master/ext)
1. Pull this repo into .css
* ``` git clone git@github.com:ericduran/dotcss-ish.git ~/.css```
1. Symlink your chrome Default styles directory to ~/.css
* ```ln -s ~/Library/Application\ Support/Google/Chrome/Default/User\ StyleSheets ~/.css```
1. compass compile
1. Install dotcss-ish chrome extension.
* Visit chrome://extensions/
* Drag ```dotcss-ish.crx``` into the page.
The chrome extention just adds the hostname of the site as a class to you document.
Except it replaces "." with "-".
# Chaging the web
```sass
/* Use the hostname as a class */
.mycloud-pointhq-com {
.free {
display: none;
}
}
```
The last step is running ```compass compile```. To update your actual Custom.css file.