Some checks failed
Tests / Go Tests (push) Has been cancelled
Tests / Python Tests (push) Has been cancelled
Tests / Integration Tests (push) Has been cancelled
Tests / Go Lint (push) Has been cancelled
Tests / Python Lint (push) Has been cancelled
Tests / Security Scan (push) Has been cancelled
Tests / All Checks Passed (push) Has been cancelled
Security Scanning / Secret Scanning (push) Has been cancelled
Security Scanning / Dependency Vulnerability Scan (push) Has been cancelled
Security Scanning / Go Security Scan (push) Has been cancelled
Security Scanning / Python Security Scan (push) Has been cancelled
Security Scanning / Node.js Security Scan (push) Has been cancelled
Security Scanning / Docker Image Security (push) Has been cancelled
Security Scanning / Security Summary (push) Has been cancelled
CI/CD Pipeline / Go Tests (push) Has been cancelled
CI/CD Pipeline / Python Tests (push) Has been cancelled
CI/CD Pipeline / Website Tests (push) Has been cancelled
CI/CD Pipeline / Linting (push) Has been cancelled
CI/CD Pipeline / Security Scan (push) Has been cancelled
CI/CD Pipeline / Docker Build & Push (push) Has been cancelled
CI/CD Pipeline / Integration Tests (push) Has been cancelled
CI/CD Pipeline / Deploy to Staging (push) Has been cancelled
CI/CD Pipeline / Deploy to Production (push) Has been cancelled
CI/CD Pipeline / CI Summary (push) Has been cancelled
ci/woodpecker/manual/build-ci-image Pipeline was successful
ci/woodpecker/manual/main Pipeline failed
All services: admin-v2, studio-v2, website, ai-compliance-sdk, consent-service, klausur-service, voice-service, and infrastructure. Large PDFs and compiled binaries excluded via .gitignore.
99 lines
1.8 KiB
CSS
99 lines
1.8 KiB
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
/* Custom scrollbar */
|
|
::-webkit-scrollbar {
|
|
width: 8px;
|
|
height: 8px;
|
|
}
|
|
|
|
::-webkit-scrollbar-track {
|
|
background: #f1f5f9;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
background: #cbd5e1;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb:hover {
|
|
background: #94a3b8;
|
|
}
|
|
|
|
/* Smooth transitions */
|
|
* {
|
|
transition-property: background-color, border-color, color, fill, stroke;
|
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
transition-duration: 150ms;
|
|
}
|
|
|
|
/* Focus styles */
|
|
*:focus-visible {
|
|
outline: 2px solid #0ea5e9;
|
|
outline-offset: 2px;
|
|
}
|
|
|
|
/* Category color utilities */
|
|
@layer utilities {
|
|
.bg-category-compliance {
|
|
@apply bg-compliance-100;
|
|
}
|
|
.border-category-compliance {
|
|
@apply border-compliance-300;
|
|
}
|
|
.text-category-compliance {
|
|
@apply text-compliance-700;
|
|
}
|
|
|
|
.bg-category-ai {
|
|
@apply bg-ai-100;
|
|
}
|
|
.border-category-ai {
|
|
@apply border-ai-300;
|
|
}
|
|
.text-category-ai {
|
|
@apply text-ai-700;
|
|
}
|
|
|
|
.bg-category-infrastructure {
|
|
@apply bg-infrastructure-100;
|
|
}
|
|
.border-category-infrastructure {
|
|
@apply border-infrastructure-300;
|
|
}
|
|
.text-category-infrastructure {
|
|
@apply text-infrastructure-700;
|
|
}
|
|
|
|
.bg-category-education {
|
|
@apply bg-education-100;
|
|
}
|
|
.border-category-education {
|
|
@apply border-education-300;
|
|
}
|
|
.text-category-education {
|
|
@apply text-education-700;
|
|
}
|
|
|
|
.bg-category-communication {
|
|
@apply bg-communication-100;
|
|
}
|
|
.border-category-communication {
|
|
@apply border-communication-300;
|
|
}
|
|
.text-category-communication {
|
|
@apply text-communication-700;
|
|
}
|
|
|
|
.bg-category-development {
|
|
@apply bg-development-100;
|
|
}
|
|
.border-category-development {
|
|
@apply border-development-300;
|
|
}
|
|
.text-category-development {
|
|
@apply text-development-700;
|
|
}
|
|
}
|