Commit 063df4a5577919985467c641a1e1df382e88ecb4
1 parent
e2687401
Exists in
master
and in
11 other branches
put abstract style in proposal detail
Showing
2 changed files
with
14 additions
and
1 deletions
Show diff stats
index.html
| @@ -66,7 +66,9 @@ | @@ -66,7 +66,9 @@ | ||
| 66 | </li> | 66 | </li> |
| 67 | {{/each}} | 67 | {{/each}} |
| 68 | </ul> | 68 | </ul> |
| 69 | - <img src="{{../host}}{{image.thumb_url}}"/> | 69 | + <div class='abstract'> |
| 70 | + <img src="{{../host}}{{image.url}}"/> | ||
| 71 | + </div> | ||
| 70 | <div class='title'>{{title}}</div> | 72 | <div class='title'>{{title}}</div> |
| 71 | <span>{{body}}</span> | 73 | <span>{{body}}</span> |
| 72 | <div class='make-proposal'> | 74 | <div class='make-proposal'> |
sass/_proposal_detail.scss
| @@ -2,6 +2,17 @@ | @@ -2,6 +2,17 @@ | ||
| 2 | ul{ | 2 | ul{ |
| 3 | padding: 0px; | 3 | padding: 0px; |
| 4 | } | 4 | } |
| 5 | + .abstract{ | ||
| 6 | + text-align: center; | ||
| 7 | + margin-top: 50px; | ||
| 8 | + } | ||
| 9 | + .title{ | ||
| 10 | + margin: 25px 0px; | ||
| 11 | + font: { | ||
| 12 | + size: larger; | ||
| 13 | + weight: bold; | ||
| 14 | + } | ||
| 15 | + } | ||
| 5 | @each $category, $color in $categories { | 16 | @each $category, $color in $categories { |
| 6 | .#{$category}{ | 17 | .#{$category}{ |
| 7 | background-color: $color; | 18 | background-color: $color; |