| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152 |
- .organization-list {
- &__headline {
- height: 44px;
- margin-bottom: 15px;
- padding: 0 18px 0 56px;
- box-sizing: border-box;
- position: relative;
- display: -webkit-flex;
- display: -ms-flex;
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- align-content: center;
- align-items: center;
- background: #ebebeb;
- z-index: 2;
- &:before {
- content: '';
- position: absolute;
- width: 49px;
- height: 49px;
- border-radius: 50%;
- left: -10px;
- top: -8px;
- border: 5px solid #ffffff;
- background: url(../img/icon_leftbar_innermenu_01@2x.png) center/50% 50% no-repeat #004d7b;
- }
- }
- &__headline-text {
- width: 900px;
- margin-right: 20px;
- font-family: $fontcuprum;
- font-size: 20px;
- font-weight: bold;
- color: #004d7b;
- overflow: hidden;
- }
- &__item {
- border: 1px solid #ebebeb;
- background: #fff;
- font-family: $fontcuprum;
- margin-bottom: 10px;
- position: relative;
- padding-right: 30px;
- display: flex;
- flex-direction: row;
- &-img {
- max-width: 110px;
- &-placeholder {
- width: 110px;
- height: 73px;
- background: #ccc;
- }
- &-container {
- margin: -1px 9px -1px -1px;
- }
- }
- &-title {
- height: 29px;
- margin: 5px 0 6px;
- overflow: hidden;
- &-link {
- display: table-cell;
- height: 29px;
- vertical-align: middle;
- font-size: 17px;
- line-height: 14px;
- color: #3b434d;
- text-decoration: none;
- }
- }
- &-description {
- height: 29px;
- overflow: hidden;
- font-family: $fontopensans;
- font-size: 13px;
- line-height: 14px;
- color: #3b434d;
- }
- &-link {
- display: block;
- width: 14px;
- height: 14px;
- position: absolute;
- top: 50%;
- right: 4px;
- margin-top: -7px;
- background: url(../img/icon_leftbar_title_arrow1.png) no-repeat;
- }
- &-badge {
- left: -1px;
- bottom: 6px;
- }
- }
- &__grid {
- margin: 10px 0;
- }
- &__side-menu {
- z-index: 2;
- position: relative;
- background: #ffffff;
- &-item {
- border-bottom: 1px solid #ebebeb;
- &:after {
- //content: url(../img/icon_leftbar_title_arrow1.png);
- }
- &.active:after {
- //transform: rotate(90deg);
- }
- & ul {
- display: none;
- background: #ebebeb;
- }
- &.active ul {
- display: block;
- }
- }
- &-link {
- color: #004d7b;
- text-decoration: none;
- font-size: 15px;
- padding: 8px;
- line-height: 19px;
- display: block;
- font-family: $fontcuprum;
- font-weight: normal;
- &:hover {
- background: #d2dee9;
- }
- }
- }
- }
|