2015-07-27 20:49:37 +02:00
|
|
|
|
.flox {
|
|
|
|
|
position: relative;
|
|
|
|
|
width: 100%;
|
|
|
|
|
min-height: calc(100vh + 120px);
|
|
|
|
|
float: left;
|
|
|
|
|
padding: 0 0 120px 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.box {
|
|
|
|
|
float: left;
|
|
|
|
|
width: 100%;
|
|
|
|
|
padding: 60px 0;
|
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
|
|
&:nth-child(2) {
|
|
|
|
|
background: #242424;
|
2015-07-28 12:07:38 +02:00
|
|
|
|
|
|
|
|
|
.light-theme & {
|
|
|
|
|
background: #e9e9e9;
|
|
|
|
|
}
|
2015-07-27 20:49:37 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.box-headline {
|
|
|
|
|
font-size: 22px;
|
|
|
|
|
color: #555;
|
|
|
|
|
|
2015-07-28 12:07:38 +02:00
|
|
|
|
.light-theme & {
|
|
|
|
|
color: $dark;
|
|
|
|
|
}
|
|
|
|
|
|
2015-07-27 20:49:37 +02:00
|
|
|
|
&:hover,
|
|
|
|
|
&:hover {
|
|
|
|
|
background: $main;
|
|
|
|
|
color: #fff;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.box-options {
|
|
|
|
|
float: right;
|
|
|
|
|
|
|
|
|
|
i {
|
|
|
|
|
float: left;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
margin: 0 0 0 20px;
|
|
|
|
|
opacity: .8;
|
|
|
|
|
|
2015-07-28 12:07:38 +02:00
|
|
|
|
.light-theme & {
|
|
|
|
|
opacity: 1;
|
|
|
|
|
}
|
|
|
|
|
|
2015-07-27 20:49:37 +02:00
|
|
|
|
&:active {
|
|
|
|
|
opacity: .6;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.icon-time {
|
|
|
|
|
|
|
|
|
|
&.active {
|
|
|
|
|
@extend .icon-time-active;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.icon-star {
|
|
|
|
|
|
|
|
|
|
&.active {
|
|
|
|
|
@extend .icon-star-active;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.items {
|
|
|
|
|
float: left;
|
|
|
|
|
width: 100%;
|
|
|
|
|
min-height: 400px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.item {
|
|
|
|
|
float: left;
|
|
|
|
|
width: 185px;
|
|
|
|
|
margin: 50px 33px 0 0;
|
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
|
|
&:nth-child(5n) {
|
|
|
|
|
margin: 50px 0 0 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.rating {
|
|
|
|
|
float: right;
|
|
|
|
|
width: 10px;
|
|
|
|
|
height: 270px;
|
|
|
|
|
opacity: .9;
|
|
|
|
|
background: silver;
|
|
|
|
|
|
|
|
|
|
.item-image-big & {
|
|
|
|
|
height: 450px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.rating-1 { background: #ac1b1b; }
|
|
|
|
|
.rating-2 { background: #c15e33; }
|
|
|
|
|
.rating-3 { background: #dea621; }
|
|
|
|
|
.rating-4 { background: #73a01c; }
|
|
|
|
|
.rating-5 { background: $main; }
|
|
|
|
|
|
|
|
|
|
.item-image {
|
|
|
|
|
background-color: #101010;
|
|
|
|
|
float: left;
|
|
|
|
|
width: 185px;
|
|
|
|
|
height: 270px;
|
|
|
|
|
position: relative;
|
|
|
|
|
top: 0;
|
|
|
|
|
opacity: 1;
|
2015-07-28 12:07:38 +02:00
|
|
|
|
box-shadow: 0 10px 12px 5px rgba(0,0,0,.4);
|
2015-07-30 09:39:26 +02:00
|
|
|
|
transition: top .4s ease-in-out 0s, opacity .4s ease-in-out 0s, transform .15s ease-in-out 0s;
|
|
|
|
|
filter: blur(0);
|
2015-07-27 20:49:37 +02:00
|
|
|
|
|
2015-07-28 12:07:38 +02:00
|
|
|
|
.light-theme & {
|
|
|
|
|
box-shadow: 0 10px 12px 0 rgba(0,0,0,.3);
|
|
|
|
|
}
|
|
|
|
|
|
2015-07-27 20:49:37 +02:00
|
|
|
|
.loading & {
|
|
|
|
|
top: -5px;
|
|
|
|
|
opacity: 0;
|
|
|
|
|
}
|
2015-07-30 09:39:26 +02:00
|
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
|
transform: translateZ(0) scale(1.05, 1.05);
|
|
|
|
|
}
|
2015-07-27 20:49:37 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.item-image-big {
|
|
|
|
|
width: 300px;
|
|
|
|
|
height: 450px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.item-content {
|
|
|
|
|
float: left;
|
|
|
|
|
margin: 20px 0 0 0;
|
|
|
|
|
padding: 0 5px;
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.icon-no-image {
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 95px;
|
|
|
|
|
left: 60px;
|
|
|
|
|
|
|
|
|
|
.item-image-big & {
|
|
|
|
|
top: 175px;
|
|
|
|
|
left: 120px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.item-date {
|
|
|
|
|
float: left;
|
|
|
|
|
clear: both;
|
|
|
|
|
color: #555;
|
|
|
|
|
font-size: 15px;
|
2015-07-28 18:52:19 +02:00
|
|
|
|
cursor: help;
|
2015-07-28 12:07:38 +02:00
|
|
|
|
|
|
|
|
|
.light-theme & {
|
|
|
|
|
color: #909090;
|
|
|
|
|
}
|
2015-07-27 20:49:37 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.item-title {
|
|
|
|
|
float: left;
|
|
|
|
|
clear: both;
|
|
|
|
|
font-size: 17px;
|
|
|
|
|
color: #909090;
|
|
|
|
|
border-bottom: 1px solid transparent;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
max-width: 100%;
|
|
|
|
|
|
2015-07-28 12:07:38 +02:00
|
|
|
|
.light-theme & {
|
|
|
|
|
color: $dark;
|
|
|
|
|
}
|
|
|
|
|
|
2015-07-27 20:49:37 +02:00
|
|
|
|
&:hover,
|
|
|
|
|
&:active {
|
|
|
|
|
background: $main;
|
|
|
|
|
color: #fff;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.icon-content-load,
|
|
|
|
|
.icon-box-load {
|
|
|
|
|
background: url(../img/content-load.gif) no-repeats;
|
|
|
|
|
width: 32px;
|
|
|
|
|
height: 32px;
|
|
|
|
|
position: absolute;
|
|
|
|
|
left: 50%;
|
2015-07-28 18:52:19 +02:00
|
|
|
|
top: 50vh;
|
2015-07-27 20:49:37 +02:00
|
|
|
|
transform: translateX(-50%);
|
2015-07-28 12:15:45 +02:00
|
|
|
|
|
|
|
|
|
.light-theme & {
|
|
|
|
|
background: url(../img/content-load-light.gif) no-repeats;
|
|
|
|
|
}
|
2015-07-27 20:49:37 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.icon-box-load {
|
|
|
|
|
top: 280px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.show-item-wrap {
|
|
|
|
|
float: left;
|
|
|
|
|
width: 100%;
|
|
|
|
|
margin: 50px 0 0 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.image-wrap {
|
|
|
|
|
float: left;
|
|
|
|
|
width: 350px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.show-content {
|
|
|
|
|
float: left;
|
|
|
|
|
width: 710px;
|
|
|
|
|
|
|
|
|
|
h2 {
|
|
|
|
|
color: $main;
|
|
|
|
|
font-size: 32px;
|
|
|
|
|
}
|
2015-07-28 20:50:39 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.load-more {
|
|
|
|
|
background: #242424;
|
|
|
|
|
padding: 10px;
|
|
|
|
|
float: left;
|
|
|
|
|
width: 100%;
|
|
|
|
|
margin: 0 0 40px 0;
|
|
|
|
|
text-align: center;
|
|
|
|
|
text-transform: uppercase;
|
|
|
|
|
color: #555;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
|
|
|
|
.light-theme & {
|
|
|
|
|
background: #e9e9e9;
|
|
|
|
|
}
|
2015-07-27 20:49:37 +02:00
|
|
|
|
}
|