45 lines
781 B
SCSS
Raw Normal View History

#main{
background-color: $color_background_dark;
.main_content{
max-width: 1400px;
margin: 0 auto;
padding: 30px 20px 60px 20px;
.bottom_buttons{
margin-top: 50px;
}
}
#fade{
display: none;
position: fixed;
z-index: 990;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: #333;
opacity: 0.7;
}
#popup{
display: none;
position: fixed;
z-index: 999;
top: 40%;
left: calc(50% - 175px);
width: 350px;
padding: 20px;
text-align: center;
font-size: 18px;
font-weight: 500;
line-height: 30px;
background-color: #fff;
}
}