Commit d36016550408e0840db50b285469429d6d22903f

Authored by Leandro Santos
1 parent 61160b10

make proposal improvement

Showing 2 changed files with 31 additions and 9 deletions   Show diff stats
index.html
... ... @@ -84,13 +84,12 @@
84 84 <input id='private_token' name='private_token' value='{{../private_token}}' type='hidden'>
85 85 <label>Descrição</label>
86 86 <input id='content_type' name='content_type' value='ProposalsDiscussionPlugin::Proposal' type='hidden'>
87   - <input type='submit' id='make-proposal-button' name='make-proposal-button' value='Nova Proposta'>
  87 + <input type='submit' id='make-proposal-button' class='make-proposal-button' name='make-proposal-button' value='Nova Proposta'>
88 88 </form>
89 89 </div>
90 90 </div>
91 91 <div class='support-proposal-container'>
92 92 </div>
93   -<!--
94 93 <div class='experience-proposal-container'>
95 94 <div class='experience-proposal'>
96 95 <div class='title'>Conte sua experiência</div>
... ... @@ -101,7 +100,6 @@
101 100 <div class='title'>Fale com o ministro</div>
102 101 </div>
103 102 </div>
104   --->
105 103 </div>
106 104 </div>
107 105 {{/each}}
... ...
sass/_proposal_detail.scss
... ... @@ -29,14 +29,24 @@
29 29 margin: 10px;
30 30 }
31 31 width: 50%;
32   - height: 200px;
  32 + height: 90%;
33 33 float: left;
34 34 text-align: center;
35 35 .make-proposal{
36   -// border: 1px solid $color;
  36 + border: 1px solid $color;
37 37 margin: 2% 2% 2% 2%;
38 38 height: 100%;
39 39 }
  40 + .make-proposal-button{
  41 + font-weight: bolder;
  42 + font-size: x-large;
  43 + background-color: $color;
  44 + color: white;
  45 + width: 40%;
  46 + height: 15%;
  47 + border: none;
  48 + margin-top: 8%;
  49 + }
40 50 }
41 51 .support-proposal-container{
42 52 .title{
... ... @@ -47,18 +57,25 @@
47 57 }
48 58 width: 50%;
49 59 float: left;
50   - height: 200px;
  60 + height: 90%;
51 61 text-align: center;
52 62 .support-proposal{
53   -// border: 1px solid $color;
  63 + border: 1px solid $color;
54 64 height: 100%;
55 65 margin: 2% 2% 2% 2%;
56 66 }
57 67 }
58 68 .experience-proposal-container{
  69 + .title{
  70 + color: $color;
  71 + font-weight: bolder;
  72 + font-size: x-large;
  73 + margin: 10px;
  74 + }
59 75 float: left;
60 76 width: 50%;
61   - height: 200px;
  77 + height: 90%;
  78 + text-align: center;
62 79 .experience-proposal{
63 80 border: 1px solid $color;
64 81 margin: 6% 2% 2% 2%;
... ... @@ -66,9 +83,16 @@
66 83 }
67 84 }
68 85 .talk-proposal-container{
  86 + .title{
  87 + color: $color;
  88 + font-weight: bolder;
  89 + font-size: x-large;
  90 + margin: 10px;
  91 + }
69 92 width: 50%;
70 93 float: left;
71   - height: 200px;
  94 + height: 90%;
  95 + text-align: center;
72 96 .talk-proposal{
73 97 border: 1px solid $color;
74 98 margin: 6% 2% 2% 2%;
... ...