54 lines
951 B
SCSS
54 lines
951 B
SCSS
.lottery--page {
|
|
background-image: url('/assets/img/lottery/lottery2.png');
|
|
// padding-top: 200px;
|
|
|
|
.contentBox {
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 0;
|
|
width: 100%;
|
|
@include transform(translateY(-50%));
|
|
overflow: hidden;
|
|
|
|
@media (max-width: 768px) {
|
|
position: static;
|
|
@include transform(translateY(0));
|
|
padding-top: 200px;
|
|
}
|
|
|
|
.content {
|
|
direction: rtl;
|
|
margin-bottom: 50px;
|
|
|
|
.remain-days {
|
|
text-align: center;
|
|
background: $theme;
|
|
margin: -40px -20px 20px;
|
|
padding: 20px 15px;
|
|
h1 {
|
|
margin: 0;
|
|
font-family: iranYekanB;
|
|
font-weight: bold;
|
|
|
|
span {
|
|
color: #fff;
|
|
}
|
|
}
|
|
}
|
|
|
|
h3 {
|
|
margin-bottom: 20px;
|
|
}
|
|
}
|
|
|
|
.winners-list {
|
|
.title {
|
|
margin-bottom: 30px;
|
|
h2 {
|
|
text-align: center;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|