CoolFace
Apppublic

lsawy/buildmaster-pro-construction-command-center

sourceHugging Faceupdated 11mo agoView on Hugging Face
0likes
style.css75 linesDownload Raw Back to root
1/* Arabic font and RTL support */2@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@400;500;700&display=swap');3 4body {5    font-family: 'Tajawal', sans-serif;6    direction: rtl;7    text-align: right;8}9 10/* Custom RTL fixes for Tailwind */11[dir="rtl"] .mr-4 {12    margin-right: 0;13    margin-left: 1rem;14}15 16/* Dashboard Cards */17.card {18    transition: all 0.3s ease;19}20.card:hover {21    transform: translateY(-5px);22    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);23}24 25/* Form Styles */26.form-input {27    border-radius: 0.5rem;28    border: 1px solid #e2e8f0;29    padding: 0.75rem 1rem;30    width: 100%;31}32.form-input:focus {33    outline: none;34    border-color: #4299e1;35    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.2);36}37 38/* Button Styles */39.btn-primary {40    background-color: #4299e1;41    color: white;42    padding: 0.75rem 1.5rem;43    border-radius: 0.5rem;44    font-weight: 500;45    transition: all 0.3s ease;46}47.btn-primary:hover {48    background-color: #3182ce;49}50 51/* Table Styles */52.table {53    width: 100%;54    border-collapse: collapse;55}56.table th {57    background-color: #f7fafc;58    padding: 1rem;59    text-align: right;60    font-weight: 600;61    border-bottom: 1px solid #e2e8f0;62}63.table td {64    padding: 1rem;65    border-bottom: 1px solid #edf2f7;66}67 68/* Responsive adjustments */69@media (max-width: 768px) {70    .table-responsive {71        display: block;72        width: 100%;73        overflow-x: auto;74    }75}