| Server IP : 14.225.216.240 / Your IP : 216.73.216.26 Web Server : nginx/1.20.1 System : Linux localhost.localdomain 5.14.0-596.el9.x86_64 #1 SMP PREEMPT_DYNAMIC Fri Jun 27 16:02:33 UTC 2025 x86_64 User : taidh ( 1001) PHP Version : 8.3.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/pts/st/assets/css/ |
Upload File : |
.notificationPopup {
position: fixed;
top: 0;
left: 50%;
transform: translateX(-50%);
background: #fff;
z-index: 9999;
box-shadow: 1px 2px 10px rgba(0,0,0,.5);
}
.notificationPopup .notif-body {
padding: 15px;
display: flex;
}
.notificationPopup .uk-modal-close-default {
position: absolute;
right: 10px;
top: 10px;
background: 0 0;
border: 0;
}
.notificationPopup .notif-logo {
max-width: 70px;
min-width: 70px;
padding-right: 10px;
}
.notificationPopup .notif-logo img{
margin-top: 50%;
}
.notificationPopup .notif-content .notif-title {
font-size: 18px;
font-weight: 600;
margin: 10px 0;
}
.notificationPopup .notif-content .text_pop_up {
font-size: 16px;
font-weight: 400;
margin: 0;
}
.notificationPopup .notif-btns {
text-align: right;
padding-top: 5px;
}
.notificationPopup .notif-btns .button-decline {
border: 1px solid #ddd;
color: #666;
}
.notificationPopup .notif-btns .button-accept {
border: 1px solid #ec2436;
background-color: #ec2436;
color: #fff;
font-weight: 600;
}
.notificationPopup .notif-btns button {
background: 0 0;
border: 0;
padding: 5px 15px;
cursor: pointer;
margin-left: 10px;
}
.notificationPopup .uk-modal-close-default {
position: absolute;
right: 10px;
top: 10px;
background: 0 0;
border: 0;
}
.uk-close {
color: #999;
transition: .1s ease-in-out;
transition-property: all;
transition-property: color,opacity;
}
/* The snackbar - position it at the bottom and in the middle of the screen */
#snackbar {
visibility: hidden;/* Hidden by default. Visible on click */
min-width: 250px;/* Set a default minimum width */
margin-left: -125px;/* Divide value of min-width by 2 */
background-color: #333;/* Black background color */
color: #fff;/* White text color */
text-align: center;/* Centered text */
border-radius: 2px;/* Rounded borders */
padding: 16px;/* Padding */
position: fixed;/* Sit on top of the screen */
z-index: 9999;/* Add a z-index if needed */
left: 10%;/* Center the snackbar */
bottom: 30px;/* 30px from the bottom */
}
#snackbar p{
color: #fff;/* White text color */
}
#snackbarTitle{
font-weight: bold;/* White text color */
}
/* Show the snackbar when clicking on a button (class added with JavaScript) */
#snackbar.show {
visibility: visible;/* Show the snackbar */
/* Add animation: Take 0.5 seconds to fade in and out the snackbar.
However, delay the fade out process for 2.5 seconds */
-webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
animation: fadein 0.5s, fadeout 0.5s 2.5s;
}
/* Animations to fade the snackbar in and out */
@-webkit-keyframes fadein {
from {bottom: 0;opacity: 0;}
to {bottom: 30px;opacity: 1;}
}
@keyframes fadein {
from {bottom: 0;opacity: 0;}
to {bottom: 30px;opacity: 1;}
}
@-webkit-keyframes fadeout {
from {bottom: 30px;opacity: 1;}
to {bottom: 0;opacity: 0;}
}
@keyframes fadeout {
from {bottom: 30px;opacity: 1;}
to {bottom: 0;opacity: 0;}
}