110 lines
1.9 KiB
CSS
110 lines
1.9 KiB
CSS
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;600;700&display=swap');
|
|
|
|
body {
|
|
font-family: 'Cairo', sans-serif;
|
|
background-color: #f8f9fa;
|
|
color: #333;
|
|
direction: rtl;
|
|
text-align: right;
|
|
overflow-x: hidden;
|
|
}
|
|
|
|
.navbar {
|
|
background-color: #fff;
|
|
box-shadow: 0 2px 10px rgba(0,0,0,0.05);
|
|
}
|
|
|
|
.nav-link {
|
|
color: #444;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.nav-link.active {
|
|
color: #007bff !important;
|
|
}
|
|
|
|
.card {
|
|
border: none;
|
|
border-radius: 12px;
|
|
box-shadow: 0 4px 15px rgba(0,0,0,0.05);
|
|
transition: transform 0.3s ease, box-shadow 0.3s ease;
|
|
background-color: #fff;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.card:hover {
|
|
transform: translateY(-5px);
|
|
box-shadow: 0 10px 25px rgba(0,0,0,0.1);
|
|
}
|
|
|
|
.btn-primary {
|
|
background: linear-gradient(45deg, #007bff, #0056b3);
|
|
border: none;
|
|
padding: 10px 25px;
|
|
border-radius: 8px;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.btn-success {
|
|
background: linear-gradient(45deg, #28a745, #218838);
|
|
border: none;
|
|
padding: 10px 25px;
|
|
border-radius: 8px;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.btn:hover {
|
|
opacity: 0.9;
|
|
transform: scale(1.02);
|
|
transition: all 0.2s ease;
|
|
}
|
|
|
|
.login-container {
|
|
max-width: 400px;
|
|
margin: 100px auto;
|
|
}
|
|
|
|
.fade-in {
|
|
animation: fadeIn 0.8s ease-in-out;
|
|
}
|
|
|
|
@keyframes fadeIn {
|
|
from { opacity: 0; transform: translateY(10px); }
|
|
to { opacity: 1; transform: translateY(0); }
|
|
}
|
|
|
|
.table {
|
|
background-color: #fff;
|
|
border-radius: 12px;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.table th {
|
|
background-color: #f8f9fa;
|
|
border-bottom: 2px solid #eee;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.stat-icon {
|
|
font-size: 2.5rem;
|
|
color: #007bff;
|
|
opacity: 0.2;
|
|
position: absolute;
|
|
left: 20px;
|
|
top: 20px;
|
|
}
|
|
|
|
.sidebar {
|
|
min-height: 100vh;
|
|
background-color: #fff;
|
|
border-left: 1px solid #eee;
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.sidebar {
|
|
min-height: auto;
|
|
border-left: none;
|
|
border-bottom: 1px solid #eee;
|
|
}
|
|
}
|