first commit

This commit is contained in:
Stefano Rossi 2025-07-10 00:44:37 +02:00
commit ee9158fae5
Signed by: chadmin
GPG key ID: 9EFA2130646BC893
23 changed files with 8156 additions and 0 deletions

44
styles/panels.css Normal file
View file

@ -0,0 +1,44 @@
.panel-info, .panel-success, .panel-warning, .panel-danger {
padding: 1.2rem;
border-left: 6px solid;
margin-bottom: 1.5rem;
border-radius: 6px;
background-color: rgba(255, 255, 255, 0.03);
box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.panel-info {
border-color: #3B82F6;
}
.panel-success {
border-color: #10B981;
}
.panel-warning {
border-color: #F59E0B;
}
.panel-danger {
border-color: #EF4444;
}
.styled-table {
width: 100%;
border-collapse: collapse;
margin: 1rem 0;
font-size: 1rem;
border-radius: 6px;
overflow: hidden;
box-shadow: 0 0 10px rgba(0,0,0,0.15);
}
.styled-table thead tr {
background-color: #1f2937;
color: #ffffff;
text-align: left;
}
.styled-table th,
.styled-table td {
padding: 0.75rem 1rem;
border-bottom: 1px solid #374151;
}
.styled-table tbody tr:hover {
background-color: rgba(255, 255, 255, 0.05);
}