Commit 391d0d643f44e9b9437bf1f5f1c906c56f3e9e3e

Authored by Valessio Brito
1 parent 7b15000b

Add styles on blocks main content

Showing 1 changed file with 116 additions and 4 deletions   Show diff stats
style.css
... ... @@ -177,26 +177,138 @@ div#article-parent {
177 177 margin: 0;
178 178 }
179 179  
  180 +/* Blocks main style */
  181 +
  182 +#content .box-1 .block {
  183 + background: #eeefff;
  184 + width: 48%;
  185 + float: left;
  186 + margin-right: 10px;
  187 +}
  188 +
  189 +#content .box-1 .block-title {
  190 + background: #757575;
  191 + padding: 0.6em 1.5em;
  192 + color: #FFF;
  193 + text-transform: uppercase;
  194 + font-variant: normal;
  195 +}
  196 +
  197 +#content .box-1 .main-block {
  198 + background: #FFF;
  199 + width: 100%;
  200 + clear: both;
  201 +}
  202 +
  203 +/* Editorial Area */
  204 +
  205 +#content .box-1 .news-area {
  206 + width: 32%;
  207 + margin-right: 10px;
  208 +}
  209 +
  210 +#content .box-1 a {
  211 + text-decoration: none;
  212 +}
  213 +
  214 +#content .box-1 .news-area h3 {
  215 + background: #DFDFDF;
  216 + text-decoration: none;
  217 + line-height: 40px;
  218 + height: 40px;
  219 + min-height: 40px;
  220 + border-top: 8px solid #545454;
  221 + padding-left: 10px;
  222 + text-transform: uppercase;
  223 + font-weight: normal;
  224 + font-size: 20px;
  225 +}
  226 +
  227 +#content .box-1 .news-area a.news-see-more {
  228 + position: relative;
  229 + border-top: 3px solid #545454;
  230 + background-color: #DFDFDF;
  231 + width: auto;
  232 + display: block;
  233 + text-align: right;
  234 + padding: 5px 15px;
  235 +}
  236 +
  237 +#content .box-1 .news-area ul {
  238 + background: #FFF;
  239 + border: none;
  240 + background-image: none;
  241 +}
  242 +
180 243 /* Block My Network style */
181 244  
182   -#content .box-2 .my-network-block {
  245 +#content .my-network-block {
183 246 background: #eeefff;
184 247 }
185 248  
186   -#content .box-2 .my-network-block .block-title {
  249 +#content .my-network-block .block-title {
187 250 background: #757575;
188 251 padding: 0.6em 1.5em;
189 252 color: #FFF;
190 253 }
191 254  
192   -#content .box-2 .my-network-block ul {
  255 +#content .my-network-block ul {
193 256 padding: 10px 0px 10px 20px;
194 257 }
195 258  
196   -#content .box-2 .my-network-block .my-network-actions a.button {
  259 +#content .my-network-block .my-network-actions a.button {
197 260 line-height: 1em;
198 261 height: auto;
199 262 width: 100px;
200 263 display: block;
201 264 margin-bottom: 5px;
202 265 }
  266 +
  267 +/* Blocks profiles and enterprises */
  268 +.box-1 .menu-submenu {
  269 + bottom: 80px;
  270 + right: -40px;
  271 +}
  272 +
  273 +.box-1 .common-profile-list-block .vcard {
  274 + border-radius: 0px;
  275 + -moz-border-radius: 0px;
  276 +}
  277 +
  278 +.box-1 .common-profile-list-block .profile_link {
  279 + width: 65px;
  280 + height: 80px;
  281 +}
  282 +
  283 +.box-1 .common-profile-list-block span {
  284 + width: auto;
  285 +}
  286 +
  287 +.box-1 .common-profile-list-block .profile-image {
  288 + display: block;
  289 + height: auto;
  290 + width: auto;
  291 + text-align: center;
  292 + margin: 0px;
  293 + padding: 0px;
  294 + padding-bottom: 5px;
  295 +}
  296 +
  297 +.box-1 .common-profile-list-block {
  298 + margin-left: 15px;
  299 +}
  300 +
  301 +.box-1 .block-footer-content {
  302 + clear: both;
  303 + text-align: right;
  304 + font-size: 11px;
  305 + color: #000;
  306 + position: relative;
  307 + padding: 5px;
  308 + background: #DFDFDF;
  309 + border-top: 3px solid #545454;
  310 +}
  311 +
  312 +#content .box-1 .block-footer-content a {
  313 + position: relative;
  314 +}
... ...