59 lines
1.1 KiB
CSS
59 lines
1.1 KiB
CSS
.data-console-container {
|
|
font-family: sans-serif;
|
|
background-color: #f4f4f4;
|
|
padding: 15px;
|
|
border-radius: 25px;
|
|
display: flex;
|
|
align-items: center;
|
|
backdrop-filter: blur(10px);
|
|
}
|
|
|
|
#error-popup {
|
|
position: fixed;
|
|
z-index: 9999;
|
|
inset: 0;
|
|
background: rgba(0,0,0,0.4);
|
|
display: none;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
#error-popup-content {
|
|
background: #fff;
|
|
padding: 20px 25px;
|
|
border-radius: 8px;
|
|
max-width: 400px;
|
|
width: 90%;
|
|
box-shadow: 0 2px 10px rgba(0,0,0,0.2);
|
|
position: relative;
|
|
font-family: sans-serif;
|
|
}
|
|
|
|
#error-popup-close {
|
|
position: absolute;
|
|
right: 10px;
|
|
top: 5px;
|
|
cursor: pointer;
|
|
font-size: 20px;
|
|
}
|
|
|
|
table {
|
|
width: 100%;
|
|
border-collapse: collapse;
|
|
margin-top: 30px;
|
|
border: 0px solid #f9f9f9;
|
|
font-family: sans-serif;
|
|
}
|
|
|
|
table thead {
|
|
background-color: #e5effa;
|
|
font-size: 13px;
|
|
color: rgb(0, 0, 0);
|
|
|
|
}
|
|
|
|
table.th, table td {
|
|
padding: 10px 10px;
|
|
text-align: left;
|
|
border-bottom: 1px solid #ddd;
|
|
} |