2018-07-27 07:20:57 +02:00
|
|
|
.scroll-btn {
|
|
|
|
position: absolute;
|
2018-08-04 11:56:54 +02:00
|
|
|
height: 46px;
|
2018-07-27 07:20:57 +02:00
|
|
|
width: 32px;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.scroll-btn-right {
|
2019-02-27 23:13:23 +01:00
|
|
|
top: 0;
|
2018-09-16 12:29:40 +02:00
|
|
|
left: calc(100vw - 50px);
|
2018-07-27 15:00:58 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.scroll-btn mat-icon {
|
2018-08-04 11:56:54 +02:00
|
|
|
height: 46px;
|
|
|
|
width: 28px;
|
2018-07-27 15:00:58 +02:00
|
|
|
}
|
|
|
|
|
2018-07-27 07:20:57 +02:00
|
|
|
.campaign-horizontal-list {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
display: flex;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
overflow: hidden;
|
2018-08-04 11:56:54 +02:00
|
|
|
box-shadow: #666666 1px 1px 4px;
|
2018-07-27 07:20:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.campaign-entry {
|
2018-08-04 10:35:26 +02:00
|
|
|
border: 1px solid #222222;
|
2018-08-04 11:56:54 +02:00
|
|
|
min-width: 20%;
|
2018-08-04 10:35:26 +02:00
|
|
|
max-height: 4em;
|
|
|
|
padding: 10px 0;
|
2018-07-27 07:20:57 +02:00
|
|
|
text-align: center;
|
|
|
|
cursor: pointer;
|
|
|
|
font-size: 16px;
|
2018-07-29 20:59:09 +02:00
|
|
|
float: left;
|
2018-08-04 10:35:26 +02:00
|
|
|
background: #424242;
|
|
|
|
color: #9d9d9d;
|
2018-07-29 20:59:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.active {
|
2018-08-04 10:35:26 +02:00
|
|
|
background: #222222;
|
|
|
|
color: white;
|
|
|
|
border-bottom: 3px solid #ffd740;
|
2018-07-27 07:20:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.campaign-entry:hover {
|
2018-08-04 10:35:26 +02:00
|
|
|
border-bottom: 3px solid #ffd740;
|
2018-07-27 07:20:57 +02:00
|
|
|
}
|
2019-02-27 23:13:23 +01:00
|
|
|
|
|
|
|
.campaign-select-small {
|
|
|
|
background: #424242;
|
|
|
|
height: 3em;
|
|
|
|
color: #9d9d9d;
|
|
|
|
text-align: center;
|
|
|
|
border-bottom: 1px solid #9d9d9d;
|
|
|
|
|
|
|
|
.select-menu-text {
|
|
|
|
font-size: 16px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
:host /deep/ div.mat-list-item-content {
|
|
|
|
height: 100%;
|
|
|
|
padding: 10px;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|