TEXT 10
Azuracast Global CSS By jorgenio on 2nd June 2026 11:13:44 AM
  1. /* ==========================================================================
  2.    AZURACAST REQUEST PAGE CUSTOM STYLING
  3.    ========================================================================== */
  4.  
  5. /* 1. Global Page Background & Theme Wrapper */
  6. [data-bs-theme="dark"] body.page-minimal,
  7. [data-bs-theme="light"] body.page-minimal {
  8.     background-color: #12141c !important; /* Custom background color */
  9.     font-family: 'Helvetica Neue', Arial, sans-serif;
  10.     color: #ffffff;
  11. }
  12.  
  13. /* 2. Style the Request Table & Form Containers */
  14. body.page-minimal .card {
  15.     background-color: #1a1d29 !important;
  16.     border: 1px solid #2d3247 !important;
  17.     border-radius: 12px;
  18.     box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  19. }
  20.  
  21. /* 3. Customize Search Input Field */
  22. body.page-minimal .form-control {
  23.     background-color: #25293c !important;
  24.     border: 1px solid #3b4261 !important;
  25.     color: #ffffff !important;
  26.     border-radius: 8px;
  27. }
  28.  
  29. body.page-minimal .form-control:focus {
  30.     border-color: #ff5e00 !important; /* Accent color on focus */
  31.     box-shadow: 0 0 0 0.25rem rgba(255, 94, 0, 0.25);
  32. }
  33.  
  34. /* 4. Request Button & Action Links Styling */
  35. body.page-minimal .btn-primary,
  36. body.page-minimal .btn-success {
  37.     background-color: #ff5e00 !important; /* Custom branding primary color */
  38.     border-color: #ff5e00 !important;
  39.     color: #ffffff !important;
  40.     font-weight: 600;
  41.     border-radius: 6px;
  42.     transition: all 0.3s ease;
  43. }
  44.  
  45. body.page-minimal .btn-primary:hover,
  46. body.page-minimal .btn-success:hover {
  47.     background-color: #e05200 !important;
  48.     border-color: #e05200 !important;
  49.     transform: translateY(-1px);
  50. }
  51.  
  52. /* 5. Table Rows & Typography Styling */
  53. body.page-minimal table th {
  54.     background-color: #222638 !important;
  55.     color: #a0aec0 !important;
  56.     text-transform: uppercase;
  57.     font-size: 0.85rem;
  58.     letter-spacing: 0.5px;
  59. }
  60.  
  61. body.page-minimal table td {
  62.     color: #e2e8f0 !important;
  63.     vertical-align: middle;
  64. }
  65.  
  66. /* Target Album Art / Covers if present */
  67. body.page-minimal table img {
  68.     border-radius: 6px;
  69.     box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  70. }

Pasteboard is for source code and general debugging text.

Login or Register to edit, delete and keep track of your pastes and more.

Raw Paste

Login or Register to edit or fork this paste. It's free.