16 lines
254 B
CSS
16 lines
254 B
CSS
#element_to_pop_up {
|
|
background-color:#fff;
|
|
border-radius:15px;
|
|
color:#000;
|
|
display:none;
|
|
padding:20px;
|
|
min-width:400px;
|
|
min-height: 180px;
|
|
}
|
|
.b-close{
|
|
cursor:pointer;
|
|
position:absolute;
|
|
right:10px;
|
|
top:5px;
|
|
}
|