You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
442 B
24 lines
442 B
/* Highlighted Block Region */ |
|
.highlighted { |
|
position: relative; |
|
width: 100%; |
|
margin: 0; |
|
padding: 0; |
|
} |
|
.region-highlighted { |
|
display: -webkit-box; |
|
display: -ms-flexbox; |
|
display: flex; |
|
-webkit-box-orient: vertical; |
|
-webkit-box-direction: normal; |
|
-ms-flex-direction: column; |
|
flex-direction: column; |
|
} |
|
.highlighted .block { |
|
position: relative; |
|
margin: 0; |
|
padding: 1em 0; |
|
} |
|
.highlighted p:last-child { |
|
margin: 0; |
|
}
|
|
|