Commit bd227c516c40e3959e4632baf87c3fe5f6fe846d

Authored by Daniela Feitosa
1 parent 4f0b0292

Css of article blocks on env home

Showing 1 changed file with 32 additions and 0 deletions   Show diff stats
style.css
... ... @@ -184,10 +184,42 @@ body {
184 184 border-top: none;
185 185 }
186 186  
  187 +/* * * * * Home blocks * * * * */
  188 +
  189 +.action-home-index #content .article-block {
  190 + background-color: #FFF;
  191 +}
  192 +.action-home-index #content .article-block:hover {
  193 + background-color: #054b7f;
  194 +}
  195 +.action-home-index #content .article-block:hover p {
  196 + color: #FFF;
  197 +}
  198 +
  199 +.action-home-index #content .article-block .block-inner-2 {
  200 + padding: 15px;
  201 +}
  202 +
  203 +.action-home-index #content .article-block h2 {
  204 + font-weight: normal;
  205 + font-size: 35px;
  206 + color: #1879BE;
  207 +}
  208 +
  209 +.action-home-index #content .article-block:hover h3 {
  210 + color: #f88021;
  211 +}
  212 +
  213 +.action-home-index #content .article-block p {
  214 + line-height: 18px;
  215 + color: #777;
  216 +}
  217 +
187 218 /* * * * * Content * * * * */
188 219  
189 220 #content {
190 221 border-top: 1px dashed #969696;
  222 + padding-top: 20px;
191 223 }
192 224  
193 225 /* * * * * Footer * * * * */
... ...