Files
MyX/public/assets/sass/framework/_adbox.scss
2024-08-11 16:14:28 +02:00

42 lines
818 B
SCSS

.adbox{
text-align: center;
&.fixed{
position: fixed;
bottom: 56px;
left: 50%;
margin-left: -150px;
width: 300px;
z-index: 100;
padding-bottom: $safeBottom;
.closebutton{
width: 24px;
height: 24px;
font-size: 22px;
background: rgba(0,0,0,.4);
color: rgba(255,255,255,.5);
display: flex;
align-items: center;
justify-content: center;
position: absolute;
right: 0;
top: 0;
}
}
&.hide{
&.fixed{
bottom: -100%;
}
}
}
.adbox-300-50{
img{
width: 300px;
height: 50px;
}
}
.adbox-300-250{
img{
width: 300px;
height: 250px;
}
}