Packet-Fence/admin/css/popup.css
2025-06-28 06:23:17 +05:30

60 lines
1.0 KiB
CSS

/* popup.css */
.popup_token {
display: none; /* Hidden by default */
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background: white;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
padding: 20px;
width: 500px;
z-index: 1001;
padding-left: 2rem;
}
.popup_token.show {
display: block;
}
.popup_token input {
display: block;
width: 90%;
margin-bottom: 10px;
padding: 10px;
border: 1px solid #ddd;
border-radius: 4px;
}
.popup_token button {
width: 90%;
padding: 10px;
background-color: #25476a;
color: white;
border: none;
border-radius: 4px;
cursor: pointer;
font-size: 16px;
}
.popup_token span .close{
color: black;
}
.popup_token button:hover {
background-color: #3b6da2;
}
.blur-background {
display: none; /* Hidden by default */
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.5);
z-index: 1000;
}