Skip to content

Commit

Permalink
Replace "styling tweaks" section with a discussion of user.css
Browse files Browse the repository at this point in the history
  • Loading branch information
Nathan Sobo committed Feb 13, 2013
1 parent 38fa030 commit 4cea1b3
Showing 3 changed files with 15 additions and 25 deletions.
2 changes: 1 addition & 1 deletion .github
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[docs]
title = The Guide to Atom
manifest = intro.md, features.md, configuring.md, keymaps.md, themes.md, styling.md, packages/intro.md, packages/installing.md, packages/markdown-preview.md, packages/wrap-guide.md
manifest = intro.md, features.md, configuring.md, keymaps.md, themes.md, user-stylesheet.md, packages/intro.md, packages/installing.md, packages/markdown-preview.md, packages/wrap-guide.md
24 changes: 0 additions & 24 deletions docs/styling.md

This file was deleted.

14 changes: 14 additions & 0 deletions docs/user-stylesheet.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
## User Stylesheet

If you want to apply quick-and-dirty personal styling changes without creating
an entire theme that you intend to distribute, you can add styles to
`user.css` in your `~/.atom` directory.

For example to change the color of the highlighted line number for the line that
contains the cursor, you could add the following style to `user.css`:

```css
.editor .line-number.cursor-line {
color: pink;
}
```

0 comments on commit 4cea1b3

Please sign in to comment.