135 lines
3.1 KiB
CSS
135 lines
3.1 KiB
CSS
|
|
/*-----------------------------------------------------------------------------------
|
|
|
|
Shortcodes: overlay.css
|
|
|
|
-----------------------------------------------------------------------------------*/
|
|
|
|
|
|
/* ----------------------------------------------------------------
|
|
Overlays
|
|
-----------------------------------------------------------------*/
|
|
|
|
|
|
.overlay {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
.overlay .overlay-wrap,
|
|
.text-overlay {
|
|
opacity: 0;
|
|
position: relative;
|
|
width: 100%;
|
|
height: 100%;
|
|
background-color: rgba(0,0,0,0.6);
|
|
}
|
|
|
|
body:not(.device-touch) .overlay .overlay-wrap,
|
|
body:not(.device-touch) .text-overlay {
|
|
-webkit-transition: all .3s ease-in-out;
|
|
-o-transition: all .3s ease-in-out;
|
|
transition: all .3s ease-in-out;
|
|
}
|
|
|
|
.overlay .overlay-wrap i {
|
|
position: absolute;
|
|
opacity: 0.8;
|
|
font-size: 24px;
|
|
line-height: 1;
|
|
width: 24px;
|
|
height: 24px;
|
|
text-align: center;
|
|
top: 50%;
|
|
margin-top: -12px;
|
|
left: 50%;
|
|
margin-left: -12px;
|
|
color: #FFF;
|
|
}
|
|
|
|
.overlay:hover .overlay-wrap,
|
|
.overlay:hover .text-overlay { opacity: 1; }
|
|
|
|
|
|
.text-overlay {
|
|
position: absolute;
|
|
opacity: 0.85;
|
|
top: auto;
|
|
bottom: 0;
|
|
height: auto;
|
|
padding: 40px 15px 15px;
|
|
text-shadow: 1px 1px 1px rgba(0,0,0,0.3);
|
|
background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0.85) 100%); /* FF3.6+ */
|
|
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(0,0,0,0)), color-stop(100%,rgba(0,0,0,0.85))); /* Chrome,Safari4+ */
|
|
background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0.85) 100%); /* Chrome10+,Safari5.1+ */
|
|
background: -o-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0.85) 100%); /* Opera 11.10+ */
|
|
background: -ms-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0.85) 100%); /* IE10+ */
|
|
background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0.85) 100%); /* W3C */
|
|
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#a6000000',GradientType=0 ); /* IE6-9 */
|
|
backface-visibility: hidden;
|
|
}
|
|
|
|
.text-overlay-title h2,
|
|
.text-overlay-title h3,
|
|
.text-overlay-title h4 {
|
|
margin: 0;
|
|
color: #F5F5F5;
|
|
}
|
|
|
|
.text-overlay-title h2 { font-size: 28px; }
|
|
|
|
.text-overlay-title h3 {
|
|
font-size: 17px;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.text-overlay-title h2,
|
|
.text-overlay-title h3,
|
|
.text-overlay-title h4,
|
|
.text-overlay-meta {
|
|
max-width: 100%;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.text-overlay-meta {
|
|
color: #CCC;
|
|
font-size: 13px;
|
|
}
|
|
|
|
.text-overlay-meta span i {
|
|
position: relative;
|
|
top: 1px;
|
|
font-size: 14px;
|
|
}
|
|
|
|
|
|
/* News Carousel Overlays
|
|
-----------------------------------------------------------------*/
|
|
|
|
.news-carousel .text-overlay { padding: 40px 30px 25px; }
|
|
|
|
.news-carousel .text-overlay-title { margin: 15px 0 10px; }
|
|
|
|
.news-carousel .text-overlay-title h2,
|
|
.news-carousel .text-overlay-title h3,
|
|
.news-carousel .text-overlay-title h4 {
|
|
line-height: 1.2;
|
|
text-overflow: none;
|
|
white-space: normal;
|
|
}
|
|
|
|
.news-carousel .text-overlay-meta { font-size: 14px; }
|
|
|
|
.news-carousel .rounded-skill {
|
|
position: absolute;
|
|
margin: 0 !important;
|
|
top: 30px;
|
|
right: 30px;
|
|
color: #FFF;
|
|
font-weight: 700;
|
|
} |