37 lines
530 B
CSS
37 lines
530 B
CSS
|
.scroll-btn {
|
||
|
position: absolute;
|
||
|
height: 53px;
|
||
|
width: 32px;
|
||
|
cursor: pointer;
|
||
|
}
|
||
|
|
||
|
.scroll-btn-right {
|
||
|
top: 50px;
|
||
|
left: 98%;
|
||
|
}
|
||
|
|
||
|
.campaign-horizontal-list {
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
display: flex;
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
overflow: hidden;
|
||
|
box-shadow: #dadada 0px 1px 5px;
|
||
|
}
|
||
|
|
||
|
.campaign-entry {
|
||
|
width: fit-content;
|
||
|
border: 1px solid #dadada;
|
||
|
min-width: 20%;
|
||
|
padding: 15px;
|
||
|
text-align: center;
|
||
|
cursor: pointer;
|
||
|
font-size: 16px;
|
||
|
float:left;
|
||
|
}
|
||
|
|
||
|
.campaign-entry:hover {
|
||
|
background: #f9f9f9;
|
||
|
}
|