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.
71 lines
1.5 KiB
71 lines
1.5 KiB
/** |
|
* @file |
|
* Visual styles for mt-video field in Magazine+. |
|
*/ |
|
.field--name-field-mt-video.field__item, |
|
.field--name-field-mt-video .field__item { |
|
margin: 20px 0; |
|
} |
|
.video-item > a { |
|
position: relative; |
|
display: block; |
|
overflow: hidden; |
|
float: left; |
|
max-width: 100%; |
|
} |
|
.video-item > a:before { |
|
content: ""; |
|
position: absolute; |
|
bottom: 0px; |
|
left: 0; |
|
right: 0; |
|
top: 0; |
|
height: 100%; |
|
width: 100%; |
|
border-radius: 0; |
|
opacity: 0.2; |
|
filter: alpha(opacity=20); |
|
webkit-transition: opacity 0.2s linear; |
|
-moz-transition: opacity 0.2s linear; |
|
-o-transition: opacity 0.2s linear; |
|
transition: opacity 0.2s linear; |
|
background-color: rgba(0, 0, 0, 0.7); |
|
} |
|
.video-item > a:after { |
|
content: "\f04b"; |
|
font-family: "FontAwesome"; |
|
font-size: 28px; |
|
line-height: 80px; |
|
position: absolute; |
|
left: 50%; |
|
top: 50%; |
|
margin: -40px 0 0 -40px; |
|
color: #ffffff; |
|
width: 100%; |
|
text-align: center; |
|
width: 80px; |
|
height: 80px; |
|
-webkit-border-radius: 100%; |
|
-moz-border-radius: 100%; |
|
border-radius: 100%; |
|
background-color: rgba(255, 255, 255, 0.1); |
|
border-width: 1px; |
|
border-style: solid; |
|
border-color: transparent; |
|
-webkit-transition: all linear 0.2s; |
|
-moz-transition: all linear 0.2s; |
|
-o-transition: all linear 0.2s; |
|
-ms-transition: all linear 0.2s; |
|
transition: all linear 0.2s; |
|
opacity: 0.8; |
|
filter: alpha(opacity=80); |
|
} |
|
.video-item > a:hover:after { |
|
background-color: #ffffff; |
|
color: #2d2d2d; |
|
} |
|
.video-item:hover > a:before, |
|
.video-item:hover > a:after { |
|
opacity: 1; |
|
filter: alpha(opacity=100); |
|
}
|
|
|