Commit 78ab03f10f4733f822e79732576f7f945b7d00bc
1 parent
cee751db
Exists in
master
and in
5 other branches
add css to embed block
Showing
1 changed file
with
64 additions
and
0 deletions
Show diff stats
style.css
... | ... | @@ -2572,4 +2572,68 @@ body.contraste #social-icons #sb_flickr:hover { |
2572 | 2572 | } |
2573 | 2573 | |
2574 | 2574 | |
2575 | +/*****************************************************/ | |
2576 | +/* EMBED CSS */ | |
2577 | +/*****************************************************/ | |
2578 | +body.action-embed-index { | |
2579 | + background-color: #f0f0f0; | |
2580 | +} | |
2581 | + | |
2582 | +#embed { | |
2583 | + width: 100%; | |
2584 | + height: 100%; | |
2585 | + display: table; | |
2586 | + position: absolute; | |
2587 | +} | |
2588 | + | |
2589 | +.action-embed-index #boxes, | |
2590 | +.action-embed-index .box-1 .blocks, | |
2591 | +.action-embed-index .block-outer, | |
2592 | +.action-embed-index #content .block { | |
2593 | + margin: 0px; | |
2594 | +} | |
2595 | + | |
2596 | +.action-embed-index #wrap-1 { | |
2597 | + display: table-cell; | |
2598 | + vertical-align: middle; | |
2599 | + width: 100%; | |
2600 | + height: 100%; | |
2601 | +} | |
2602 | + | |
2603 | +.action-embed-index #wrap-2 { | |
2604 | + border: 0px solid #F00; | |
2605 | + padding: 0px; | |
2606 | + background-color: #EEE; | |
2607 | + margin: 0px; | |
2608 | +} | |
2609 | + | |
2610 | +.action-embed-index .block .block-inner-2 { | |
2611 | + background-color: white; | |
2612 | + padding: 1em; | |
2613 | + margin: 0; | |
2614 | +} | |
2615 | + | |
2616 | +.action-embed-index #content .box-1 .block-title { | |
2617 | + background-color: transparent; | |
2618 | + border-bottom: 0 solid #AAAAAA; | |
2619 | + border-top: 0 none; | |
2620 | + left: -20px; | |
2621 | + margin-bottom: 0; | |
2622 | + margin-top: -44px; | |
2623 | + position: relative; | |
2624 | +} | |
2625 | + | |
2626 | +.action-embed-index #content .box-1 .block-title span { | |
2627 | + background-color: #497b16; | |
2628 | + color: white; | |
2629 | + font-size: 18px; | |
2630 | + font-variant: normal; | |
2631 | + padding: 6px 1em; | |
2632 | + text-align: left; | |
2633 | +} | |
2634 | + | |
2635 | +/******** BLOCK => TRACK CARD LIST *********/ | |
2636 | +.action-embed-index .community-track-plugin_track-card-list-block .block-inner-2 { | |
2637 | + background: url("images/bg-bloco-de-trilhas.png") no-repeat scroll center top transparent; | |
2638 | +} | |
2575 | 2639 | ... | ... |