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 | 66 | </li> |
| 67 | 67 | {{/each}} |
| 68 | 68 | </ul> |
| 69 | - <img src="{{../host}}{{image.thumb_url}}"/> | |
| 69 | + <div class='abstract'> | |
| 70 | + <img src="{{../host}}{{image.url}}"/> | |
| 71 | + </div> | |
| 70 | 72 | <div class='title'>{{title}}</div> |
| 71 | 73 | <span>{{body}}</span> |
| 72 | 74 | <div class='make-proposal'> | ... | ... |
sass/_proposal_detail.scss
| ... | ... | @@ -2,6 +2,17 @@ |
| 2 | 2 | ul{ |
| 3 | 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 | 16 | @each $category, $color in $categories { |
| 6 | 17 | .#{$category}{ |
| 7 | 18 | background-color: $color; | ... | ... |