Commit 3025f1bb924ba298425ea1b4c37f0d01588c99e3
1 parent
7623736c
Exists in
refactory-sass
Fix para alto contraste
Showing
2 changed files
with
13 additions
and
10 deletions
Show diff stats
novo.css
... | ... | @@ -81,6 +81,7 @@ p, ul, select { |
81 | 81 | border: 0; |
82 | 82 | color: #fff; |
83 | 83 | font-size: 14px; |
84 | + font-weight: 700; | |
84 | 85 | padding-bottom: 0; |
85 | 86 | padding-left: 10px; |
86 | 87 | padding-right: 10px; |
... | ... | @@ -872,11 +873,11 @@ section.reducao-da-pobreza { |
872 | 873 | .contrast { |
873 | 874 | background-color: #000; |
874 | 875 | color: #fff; } |
875 | - .contrast h2, .contrast h3, .contrast h4, .contrast a, .contrast p, .contrast li, .contrast label, .contrast .label, .contrast .login i { | |
876 | + .contrast .container h2, .contrast .container h3, .contrast .container h4, .contrast .container a, .contrast .container p, .contrast .container li, .contrast .container label, .contrast .container .label, .contrast .container .login i { | |
876 | 877 | color: #fff; } |
877 | - .contrast a { | |
878 | + .contrast .container a { | |
878 | 879 | text-decoration: underline; } |
879 | - .contrast small { | |
880 | + .contrast .container small { | |
880 | 881 | color: #999999; } |
881 | 882 | .contrast .button, .contrast .button-cancela, .contrast .login input.button, .login .contrast input.button, .contrast .signup input.button, .signup .contrast input.button, .contrast .show_body a, .contrast .login input.button-cancela, .contrast .login input.button, .contrast .box-category li { |
882 | 883 | background-color: #fff; | ... | ... |
sass/novo.sass
... | ... | @@ -170,6 +170,7 @@ p,ul,select |
170 | 170 | border: 0 |
171 | 171 | color: #fff |
172 | 172 | font-size: $font-size-small |
173 | + font-weight: 700 | |
173 | 174 | padding-bottom: 0 |
174 | 175 | padding-left: $gutter * 0.5 |
175 | 176 | padding-right: $gutter * 0.5 |
... | ... | @@ -795,12 +796,13 @@ h3.titulo-destaque |
795 | 796 | .contrast |
796 | 797 | background-color: #000 |
797 | 798 | color: #fff |
798 | - h2,h3,h4,a,p,li,label,.label,.login i | |
799 | - color: #fff | |
800 | - a | |
801 | - text-decoration: underline | |
802 | - small | |
803 | - color: darken(#fff, 40%) | |
799 | + .container | |
800 | + h2,h3,h4,a,p,li,label,.label,.login i | |
801 | + color: #fff | |
802 | + a | |
803 | + text-decoration: underline | |
804 | + small | |
805 | + color: darken(#fff, 40%) | |
804 | 806 | .button,.show_body a,.login input.button,.box-category li |
805 | 807 | background-color: #fff |
806 | 808 | border-color: darken(#fff, 40%) |
... | ... | @@ -858,4 +860,4 @@ h3.titulo-destaque |
858 | 860 | .date,.time |
859 | 861 | color: #fff |
860 | 862 | .bloco-destaque |
861 | 863 | - background: darken(#fff, 85%) |
864 | + background: darken(#fff, 85%) | |
862 | 865 | \ No newline at end of file | ... | ... |