diff options
author | Kelly Rauchenberger <fefferburbia@gmail.com> | 2017-06-30 18:23:20 -0400 |
---|---|---|
committer | Kelly Rauchenberger <fefferburbia@gmail.com> | 2017-06-30 18:23:20 -0400 |
commit | 1fb650f48213117fb3ad3eedc6c041d7269adf05 (patch) | |
tree | bc9f561ce8446bc98cec42d104e522b63b8617f7 /app/assets/stylesheets/entries.scss | |
parent | 4fe8ef40ee70bee9d4ad897b51f602231e81bfc3 (diff) | |
download | thoughts-1fb650f48213117fb3ad3eedc6c041d7269adf05.tar.gz thoughts-1fb650f48213117fb3ad3eedc6c041d7269adf05.tar.bz2 thoughts-1fb650f48213117fb3ad3eedc6c041d7269adf05.zip |
Split up stylesheets for each layout
Diffstat (limited to 'app/assets/stylesheets/entries.scss')
-rw-r--r-- | app/assets/stylesheets/entries.scss | 57 |
1 files changed, 0 insertions, 57 deletions
diff --git a/app/assets/stylesheets/entries.scss b/app/assets/stylesheets/entries.scss deleted file mode 100644 index 6833141..0000000 --- a/app/assets/stylesheets/entries.scss +++ /dev/null | |||
@@ -1,57 +0,0 @@ | |||
1 | // Place all the styles related to the Entries controller here. | ||
2 | // They will automatically be included in application.css. | ||
3 | // You can use Sass (SCSS) here: http://sass-lang.com/ | ||
4 | |||
5 | #blog-post { | ||
6 | font-size: 16px; | ||
7 | line-height: 24px; | ||
8 | margin: 0 3em; | ||
9 | |||
10 | h2 { | ||
11 | font-size: 45px; | ||
12 | line-height: 48px; | ||
13 | margin-top: .5em; | ||
14 | } | ||
15 | |||
16 | h3 { | ||
17 | font-size: 37px; | ||
18 | line-height: 42px; | ||
19 | } | ||
20 | |||
21 | h2, h3 { | ||
22 | font-family: 'Slabo 27px', serif; | ||
23 | margin-bottom: 0; | ||
24 | font-weight: normal; | ||
25 | } | ||
26 | |||
27 | #blog-content { | ||
28 | hyphens: auto; | ||
29 | word-wrap: break-word; | ||
30 | font-family: 'Roboto', sans-serif; | ||
31 | text-align: justify; | ||
32 | |||
33 | a { | ||
34 | text-decoration: none; | ||
35 | font-weight: bold; | ||
36 | |||
37 | &, &:visited { | ||
38 | color: #ee2c2c; | ||
39 | } | ||
40 | |||
41 | &:hover { | ||
42 | text-decoration: underline; | ||
43 | color: #9ea1ad; | ||
44 | } | ||
45 | } | ||
46 | |||
47 | li { | ||
48 | & + li { | ||
49 | margin-top: 1em; | ||
50 | } | ||
51 | } | ||
52 | |||
53 | img { | ||
54 | max-width: 100%; | ||
55 | } | ||
56 | } | ||
57 | } | ||