diff options
Diffstat (limited to 'app/assets/stylesheets/main/entries.scss')
-rw-r--r-- | app/assets/stylesheets/main/entries.scss | 71 |
1 files changed, 68 insertions, 3 deletions
diff --git a/app/assets/stylesheets/main/entries.scss b/app/assets/stylesheets/main/entries.scss index 37b0a49..d67ae67 100644 --- a/app/assets/stylesheets/main/entries.scss +++ b/app/assets/stylesheets/main/entries.scss | |||
@@ -3,9 +3,9 @@ | |||
3 | // You can use Sass (SCSS) here: http://sass-lang.com/ | 3 | // You can use Sass (SCSS) here: http://sass-lang.com/ |
4 | 4 | ||
5 | .blog-post { | 5 | .blog-post { |
6 | font-size: 16px; | 6 | line-height: 1.5em; |
7 | line-height: 24px; | ||
8 | margin: 0 1em 1em; | 7 | margin: 0 1em 1em; |
8 | clear: both; | ||
9 | 9 | ||
10 | .blog-title { | 10 | .blog-title { |
11 | flex-grow: 1; | 11 | flex-grow: 1; |
@@ -41,6 +41,7 @@ | |||
41 | .post-calendar { | 41 | .post-calendar { |
42 | width: 45px; | 42 | width: 45px; |
43 | height: 49px; | 43 | height: 49px; |
44 | flex-shrink: 0; | ||
44 | 45 | ||
45 | &.post-date-1 { | 46 | &.post-date-1 { |
46 | background: image-url("date-bg-1.gif") no-repeat; | 47 | background: image-url("date-bg-1.gif") no-repeat; |
@@ -152,7 +153,6 @@ | |||
152 | 153 | ||
153 | .update-posted { | 154 | .update-posted { |
154 | display: block; | 155 | display: block; |
155 | font-style: italic; | ||
156 | background-color: #EAADEA; | 156 | background-color: #EAADEA; |
157 | font-size: 16px; | 157 | font-size: 16px; |
158 | margin: .5em -20px; | 158 | margin: .5em -20px; |
@@ -160,6 +160,16 @@ | |||
160 | border-width: 1px 0 1px 0; | 160 | border-width: 1px 0 1px 0; |
161 | border-style: solid; | 161 | border-style: solid; |
162 | border-color: #DB70DB; | 162 | border-color: #DB70DB; |
163 | |||
164 | time { | ||
165 | font-style: italic; | ||
166 | } | ||
167 | |||
168 | .update-edit-link { | ||
169 | float: right; | ||
170 | color: blue; | ||
171 | font-weight: normal; | ||
172 | } | ||
163 | } | 173 | } |
164 | } | 174 | } |
165 | } | 175 | } |
@@ -194,6 +204,14 @@ | |||
194 | box-sizing: border-box; | 204 | box-sizing: border-box; |
195 | } | 205 | } |
196 | 206 | ||
207 | video { | ||
208 | max-width: 100%; | ||
209 | } | ||
210 | |||
211 | iframe { | ||
212 | max-width: 100%; | ||
213 | } | ||
214 | |||
197 | figure { | 215 | figure { |
198 | background-color: #eee; | 216 | background-color: #eee; |
199 | border: 1px solid #bbb; | 217 | border: 1px solid #bbb; |
@@ -201,6 +219,10 @@ | |||
201 | font-size: 0.75em; | 219 | font-size: 0.75em; |
202 | line-height: 24px; | 220 | line-height: 24px; |
203 | 221 | ||
222 | @media only screen and (max-width: 767px) { | ||
223 | margin: 0; | ||
224 | } | ||
225 | |||
204 | img { | 226 | img { |
205 | display: block; | 227 | display: block; |
206 | border: 1px solid #bbb; | 228 | border: 1px solid #bbb; |
@@ -450,3 +472,46 @@ | |||
450 | .next-post { | 472 | .next-post { |
451 | float: right; | 473 | float: right; |
452 | } | 474 | } |
475 | |||
476 | #streams-index { | ||
477 | width: 100%; | ||
478 | border-collapse: collapse; | ||
479 | |||
480 | #streams-index-header-row { | ||
481 | th { | ||
482 | background-color: #bdbdbd; | ||
483 | padding-left: 0.5em; | ||
484 | border-top: 1px solid #848484; | ||
485 | border-bottom: 1px solid #848484; | ||
486 | } | ||
487 | } | ||
488 | |||
489 | th { | ||
490 | padding-bottom: 0.5em; | ||
491 | padding-top: 0.5em; | ||
492 | text-align: left; | ||
493 | } | ||
494 | |||
495 | td { | ||
496 | padding-top: 1em; | ||
497 | padding-left: 0.5em; | ||
498 | |||
499 | time { | ||
500 | font-size: .75em; | ||
501 | } | ||
502 | |||
503 | .stream-link { | ||
504 | font-weight: bold; | ||
505 | text-decoration: none; | ||
506 | |||
507 | &, &:visited { | ||
508 | color: #ee2c2c; | ||
509 | } | ||
510 | |||
511 | &:hover { | ||
512 | text-decoration: underline; | ||
513 | color: #9ea1ad; | ||
514 | } | ||
515 | } | ||
516 | } | ||
517 | } | ||