76 lines
1.3 KiB
CSS
76 lines
1.3 KiB
CSS
body{
|
|
background: rgba(0, 0, 0, 0.5); ;
|
|
height: 100vh;
|
|
z-index: 1000;
|
|
}
|
|
|
|
.overlay {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background: #25486a4d; /* Semi-transparent overlay */
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
/* Simple styling for the popup */
|
|
.popup {
|
|
padding: 20px;
|
|
background:url(../images/bg4.svg);
|
|
background-repeat: no-repeat;
|
|
background-position: center;
|
|
background-size: cover;
|
|
border: 1px solid #0b0b0bd5;
|
|
width: 380px;
|
|
min-height: 390px;
|
|
margin: 320px auto;
|
|
text-align: center;
|
|
box-shadow: 0 0 10px rgba(0,0,0,0.1);
|
|
border-radius: 1rem;
|
|
}
|
|
|
|
.wrap{
|
|
border: 1px solid black;
|
|
width: 330px;
|
|
min-height: 290px;
|
|
margin-left: 25px;
|
|
border-radius: 1rem;
|
|
padding-bottom: 1rem;
|
|
padding-top: 1rem;
|
|
}
|
|
h3{
|
|
color: #25476a;
|
|
font-size: 1.5rem;
|
|
text-align: center;
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
p{
|
|
color: #25476a;
|
|
font-size: 1.1rem;
|
|
text-align: center;
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.message{
|
|
color: rgb(200, 33, 33);
|
|
font-size: 1.3rem;
|
|
text-align: center;
|
|
margin-bottom: 0.2rem;
|
|
}
|
|
|
|
|
|
a{
|
|
color: #25476a;
|
|
margin-top: 0.2rem;
|
|
}
|
|
|
|
a:hover{
|
|
color: rgb(200, 33, 33);
|
|
}
|
|
|
|
.error-message{
|
|
color: #25476a;
|
|
} |