Commit d3af1d85964d5521a46457009da2ce98df15eb41

Authored by Omar Junior
Committed by Eduardo Vital
1 parent d5fed0e6
Exists in news_page_css

Improving news feed layout

Signed-off-by: Omar Junior <omarroinuj@gmail.com>
Signed-off-by: Eduardo Vital <vitaldu@gmail.com>
Signed-off-by: Victor Navarro <victor.matias.navarro@gmail.com>
Signed-off-by: DylanGuedes <djmgguedes@gmail.com>
Showing 1 changed file with 59 additions and 1 deletions   Show diff stats
style.css
... ... @@ -2937,7 +2937,7 @@ div.software-step-info div.current-step h3 {
2937 2937 padding-top: 25px;
2938 2938 margin-top: 25px;
2939 2939 font-size: 12px;
2940   - color: #2C66CE;
  2940 + color: #172838;
2941 2941 font-family: arial;
2942 2942 }
2943 2943  
... ... @@ -3018,3 +3018,61 @@ div.software-step-info div.current-step h3 {
3018 3018 li.folder-item:first-child {
3019 3019 border-top: 1px solid #ccc;
3020 3020 }
  3021 +
  3022 +/* Código para o novo layout de notícias. Forçando soluções. */
  3023 +.position-2 {
  3024 + display: table-cell !important;
  3025 + width: 222px;
  3026 + padding-left: 0px;
  3027 + padding-right: 20px;
  3028 +}
  3029 +
  3030 +.position-3 {
  3031 + display: table-cell !important;
  3032 + width: 232px;
  3033 + padding-left: 10px;
  3034 + padding-right: 10px;
  3035 +}
  3036 +
  3037 +.position-4 {
  3038 + display: table-cell !important;
  3039 + width: 222px;
  3040 + padding-left: 20px;
  3041 + padding-right: 0px;
  3042 +}
  3043 +
  3044 +.position-1 img {
  3045 + width: 726px !important;
  3046 + max-height: 315px;
  3047 + max-width: none !important;
  3048 +}
  3049 +
  3050 +.position-1 .title a {
  3051 + font-size: 32px !important;
  3052 +}
  3053 +
  3054 +.title a {
  3055 + font-size: 16px;
  3056 + font-family: arial;
  3057 +}
  3058 +
  3059 +.position-2 img, .position-3 img, .position-4 img {
  3060 + width: 222px !important;
  3061 + height: 135px !important;
  3062 + max-width: none !important;
  3063 + top: 10px;
  3064 +}
  3065 +
  3066 +.blog-post .post-pic {
  3067 + border-radius: 8px;
  3068 +}
  3069 +
  3070 +#content #article .article-body img {
  3071 + border-radius: 8px;
  3072 +}
  3073 +
  3074 +/*Forçando main content a ocupar todo o espaço*/
  3075 +
  3076 +.main-content{
  3077 + width: 130%;
  3078 +}
3021 3079 \ No newline at end of file
... ...