File size: 1,562 Bytes
a85611d b5ad374 a85611d 76c6731 a85611d 76c6731 a85611d b5ad374 a85611d b5ad374 a85611d b5ad374 a85611d b5ad374 a85611d b5ad374 a85611d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 |
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
body {
font-family: 'Inter', sans-serif;
background-color: #f4f5f7;
}
/* Jira-like blue header */
test-header {
background-color: #0052cc !important;
color: white;
}
test-header .nav-link {
color: rgba(255,255,255,0.8) !important;
}
test-header .nav-link:hover {
color: white !important;
}
/* Jira-like sidebar */
test-sidebar .sidebar {
background-color: white;
border-radius: 0;
border-right: 1px solid #dfe1e6;
}
/* Jira-like table styling */
table {
border-collapse: separate;
border-spacing: 0;
}
th {
background-color: #f4f5f7 !important;
border-bottom: 1px solid #dfe1e6 !important;
}
td {
border-bottom: 1px solid #dfe1e6 !important;
}
tr:hover td {
background-color: #f4f5f7 !important;
}
.container {
max-width: 1400px;
}
.shadow-md {
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.rounded-xl {
border-radius: 0.75rem;
}
/* Custom scrollbar */
::-webkit-scrollbar {
width: 8px;
height: 8px;
}
::-webkit-scrollbar-track {
background: #f1f1f1;
border-radius: 10px;
}
::-webkit-scrollbar-thumb {
background: #c1c1c1;
border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
background: #a1a1a1;
}
/* Animation for status badges */
@keyframes pulse {
0%, 100% {
opacity: 1;
}
50% {
opacity: 0.5;
}
}
.bg-yellow-100.text-yellow-800 {
animation: pulse 2s infinite;
} |