| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174 |
- .shortnews {
- &__list {
- display: flex;
- flex-direction: row;
- flex-wrap: wrap;
- }
- &__item {
- font-family: $fontcuprum;
- background-color: #ebebeb;
- //min-height: 320px;
- height: 320px;
- display: -webkit-flex;
- display: -ms-flex;
- display: flex;
- flex-direction: column;
- border-radius: 10px 0 0 0 / 10px 0 0 0;
- margin-bottom: 10px;
- &--half-size {
- width: calc(50% - 10px);
- margin-left: 10px;
- }
- &--one-third {
- width: calc(33% - 10px);
- margin-left: 10px;
- }
- &:hover {
- background-color: #ececec;
- text-decoration: none;
- .shortnews__textpos {
- background: none;
- }
- .shortnews__title {
- background: rgba(255, 255, 255, .5);
- color: #3b434d;
- }
- }
- }
- &:hover {
- background-color: #ececec;
- }
- &__link {
- text-decoration: none;
- max-height: calc(100% - 30px);
- &:hover {
- text-decoration: none;
- }
- }
- &__imgcase {
- position: relative;
- }
- &__textpos {
- min-height: 100px;
- background: -moz-linear-gradient(top, rgba(59, 67, 77, 0) 0%, rgba(59, 67, 77, 0.25) 10%, rgba(59, 67, 77, 1) 100%);
- background: -webkit-linear-gradient(top, rgba(59, 67, 77, 0) 0%, rgba(59, 67, 77, 0.25) 10%, rgba(59, 67, 77, 1) 100%);
- background: linear-gradient(to bottom, rgba(59, 67, 77, 0) 0%, rgba(59, 67, 77, 0.25) 10%, rgba(59, 67, 77, 1) 100%);
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#003b434d', endColorstr='#3b434d', GradientType=0);
- position: absolute;
- bottom: 0;
- left: 0;
- right: 0;
- display: -webkit-flex;
- display: -ms-flex;
- display: flex;
- flex-direction: column;
- justify-content: flex-end;
- align-items: flex-end;
- align-content: flex-end;
- }
- &:hover &__textpos {
- background: none;
- }
- &__title {
- font-family: $fontcuprum;
- color: #ffffff;
- font-size: 17px;
- padding: 8px 10px;
- width: 100%;
- box-sizing: border-box;
- }
- &:hover &__title {
- background: rgba(255, 255, 255, .5);
- color: #3b434d;
- }
- &__img {
- border-radius: 10px 0 0 0 / 10px 0 0 0;
- display: block;
- max-width: 100%;
- }
- &__description {
- border-bottom: 1px solid #d4d4d4;
- height: 150px;
- box-sizing: border-box;
- padding: 6px 10px 10px;
- color: #1a1916;
- font-size: 15px;
- line-height: 17px;
- display: block;
- overflow: hidden;
- text-overflow: ellipsis;
- margin: 0;
- }
- &__details {
- display: -webkit-flex;
- display: -ms-flex;
- display: flex;
- justify-content: space-between;
- line-height: 30px;
- }
- &__category {
- line-height: 30px;
- text-align: left;
- color: #eb914e;
- text-decoration: none;
- font-size: 13px;
- font-family: $fontopensans;
- text-overflow: ellipsis;
- overflow: hidden;
- display: block;
- height: 30px;
- white-space: nowrap;
- word-wrap: normal;
- background: url(../img/icon_category@2x.png) 0 0 / 30px 60px no-repeat;
- padding: 0 10px 0 23px;
- margin: 0;
- &:hover {
- color: #e65e26;
- background: url(../img/icon_category@2x.png) 0 -30px / 30px 60px no-repeat;
- }
- }
- &__no-category {
- display: block;
- align-self: flex-start;
- margin: 0;
- }
- &__date {
- padding-right: 10px;
- color: #929292;
- font-size: 13px;
- align-self: flex-end;
- display: block;
- margin: 0;
- }
- &--big {
- @media screen and (max-width: 1000px) {
- max-width: 470px;
- }
- }
- &--big &__title {
- font-size: 25px;
- }
- }
|