Commit 6c2614e164524a352a4b7d9e3979310ccbe2b912
1 parent
8ca9b169
Exists in
refactory-sass
fix proposal detail.
Showing
3 changed files
with
12 additions
and
5 deletions
Show diff stats
novo.css
... | ... | @@ -78,6 +78,10 @@ nav ul { |
78 | 78 | padding-left: 20px; |
79 | 79 | padding-top: 20px; |
80 | 80 | text-align: center; } |
81 | + #proposal-categories .category { | |
82 | + background: transparent; | |
83 | + border-top: 1px dotted #172938; | |
84 | + padding-top: 10px; } | |
81 | 85 | |
82 | 86 | .proposal-category { |
83 | 87 | display: inline-block; |
... | ... | @@ -150,8 +154,7 @@ nav ul { |
150 | 154 | |
151 | 155 | .category { |
152 | 156 | list-style: none; |
153 | - padding-left: 0; | |
154 | - padding-top: 10px; } | |
157 | + padding-left: 0; } | |
155 | 158 | .category li { |
156 | 159 | background-color: #000; |
157 | 160 | color: #fff; |
... | ... | @@ -222,7 +225,7 @@ nav ul { |
222 | 225 | padding-left: 0; } |
223 | 226 | |
224 | 227 | .btn { |
225 | - border: 1px solid; | |
228 | + border: 1px solid #ccc; | |
226 | 229 | display: inline-block; |
227 | 230 | font-size: 14px; |
228 | 231 | line-height: 3.1; | ... | ... |
sass/novo/_proposal_categories.scss
... | ... | @@ -19,6 +19,11 @@ |
19 | 19 | padding-top: $default-spacing-size; |
20 | 20 | text-align: center; |
21 | 21 | } |
22 | + .category { | |
23 | + background: transparent; | |
24 | + border-top: 1px dotted $default-color; | |
25 | + padding-top: 10px; | |
26 | + } | |
22 | 27 | } |
23 | 28 | } |
24 | 29 | .proposal { |
... | ... | @@ -107,7 +112,6 @@ |
107 | 112 | .category { |
108 | 113 | list-style: none; |
109 | 114 | padding-left: 0; |
110 | - padding-top: 10px; | |
111 | 115 | li { |
112 | 116 | background-color: #000; |
113 | 117 | color: #fff; | ... | ... |