40 lines
582 B
CSS
40 lines
582 B
CSS
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
/* font-family: 'overpass'; */
|
|
}
|
|
|
|
.popup {
|
|
display: none;
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background: rgba(0, 0, 0, 0.5);
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.popup-content {
|
|
background: #3d3d3d;
|
|
padding: 20px;
|
|
border-radius: 8px;
|
|
text-align: center;
|
|
}
|
|
|
|
.banner {
|
|
background-color: #177013; /* background color */
|
|
color: #fff; /* text color */
|
|
padding: 10px;
|
|
position: fixed;
|
|
z-index: 300;
|
|
top: 0;
|
|
width: 100%;
|
|
}
|
|
|
|
.content {
|
|
margin-top: 100px;
|
|
padding: 0px;
|
|
}
|