Commit 15cad485158edc1da651eb9873c2c4449ce637f4
1 parent
933b4ad0
Exists in
master
and in
5 other branches
updating theme
Showing
2 changed files
with
17 additions
and
4 deletions
Show diff stats
style.css
| ... | ... | @@ -980,15 +980,20 @@ div#article-parent { |
| 980 | 980 | /*Destaques das áreas*/ |
| 981 | 981 | |
| 982 | 982 | /*.track_list*/ |
| 983 | -#content .track-card-list-block{ | |
| 983 | +.action-home-index #content .track-card-list-block{ | |
| 984 | 984 | background: url("images/bg-pessoas.jpg") no-repeat center top transparent; |
| 985 | + padding: 4em 0; | |
| 986 | +} | |
| 987 | + | |
| 988 | +#content .track-card-list-block{ | |
| 989 | + | |
| 985 | 990 | display: block; |
| 986 | 991 | overflow: hidden; |
| 987 | 992 | padding: 4em 2em; |
| 988 | 993 | left: -480px; |
| 989 | 994 | margin-left: 50%; |
| 990 | 995 | margin-bottom: 15px; |
| 991 | - padding: 4em 0; | |
| 996 | + padding: 2em 0 0; | |
| 992 | 997 | position: relative; |
| 993 | 998 | width: 960px; |
| 994 | 999 | text-align: center; |
| ... | ... | @@ -1208,6 +1213,14 @@ _software,_cultura_e_conhecimentos_livres*/ |
| 1208 | 1213 | } |
| 1209 | 1214 | |
| 1210 | 1215 | |
| 1216 | +/*track list Internas*/ | |
| 1217 | +.track_list .item .track_content .lead { | |
| 1218 | + float: left; | |
| 1219 | + padding: 2em; | |
| 1220 | + text-align: left; | |
| 1221 | + width: 40%; | |
| 1222 | +} | |
| 1223 | + | |
| 1211 | 1224 | /*Artigos em Destaque*/ |
| 1212 | 1225 | |
| 1213 | 1226 | /*Posicionamento dos artigos e pessoas ao centro*/ | ... | ... |
theme.js
| ... | ... | @@ -50,8 +50,8 @@ |
| 50 | 50 | |
| 51 | 51 | (function($) { |
| 52 | 52 | // Run code |
| 53 | - $( "div.block-inner-1 div.block-inner-2 div.box div.block-outer .communities-block" ).parent().parent().parent().parent().parent().addClass( "mapa_comunidades" ); | |
| 54 | - $( "div.track_list" ).parent().parent().parent().addClass( "track-card-list-block" ); | |
| 53 | + $( ".action-home-index div.block-inner-1 div.block-inner-2 div.box div.block-outer .communities-block" ).parent().parent().parent().parent().parent().addClass( "mapa_comunidades" ); | |
| 54 | + $( ".action-home-index div.track_list" ).parent().parent().parent().addClass( "track-card-list-block" ); | |
| 55 | 55 | })(jQuery); |
| 56 | 56 | |
| 57 | 57 | ... | ... |