opt-cc/static/src/app/statistic/campaign/campaign-navigation/campaign-navigation.compone...

55 lines
913 B
CSS
Raw Normal View History

.scroll-btn {
position: absolute;
height: 53px;
width: 32px;
cursor: pointer;
}
.scroll-btn-right {
top: 50px;
2018-07-27 15:00:58 +02:00
left: calc(100vw - 45px);
background: linear-gradient(to right, rgba(255, 255, 255, 0.89), white);
}
2018-07-27 15:00:58 +02:00
.scroll-btn-left {
background: linear-gradient(to right, white, rgba(255, 255, 255, 0.89));
}
.scroll-btn mat-icon {
height: 53px
2018-07-27 15:00:58 +02:00
}
.campaign-horizontal-list {
width: 100%;
height: 100%;
display: flex;
margin: 0;
padding: 0;
overflow: hidden;
2018-07-27 15:00:58 +02:00
box-shadow: #dadada 0 1px 5px;
}
.campaign-entry {
2018-08-04 10:35:26 +02:00
border: 1px solid #222222;
min-width: 120px;
width: 20%;
2018-08-04 10:35:26 +02:00
max-height: 4em;
padding: 10px 0;
text-align: center;
cursor: pointer;
font-size: 16px;
float: left;
2018-08-04 10:35:26 +02:00
background: #424242;
color: #9d9d9d;
}
.active {
2018-08-04 10:35:26 +02:00
background: #222222;
color: white;
border-bottom: 3px solid #ffd740;
}
.campaign-entry:hover {
2018-08-04 10:35:26 +02:00
border-bottom: 3px solid #ffd740;
}