|
| 1 | +/* Dark card styling */ |
| 2 | +.card-dark { |
| 3 | + background-color: #353535; |
| 4 | + color: white; |
| 5 | + border: none; |
| 6 | +} |
| 7 | + |
| 8 | +.card-dark .card-body { |
| 9 | + background-color: #353535; |
| 10 | +} |
| 11 | + |
| 12 | +.card-dark .card-footer { |
| 13 | + background-color: #353535; |
| 14 | + border-top: 1px solid #555; |
| 15 | +} |
| 16 | + |
| 17 | +.main-header { |
| 18 | + background-color: #135289; |
| 19 | + color: white; |
| 20 | + padding: 10px; |
| 21 | + text-align: center; |
| 22 | +} |
| 23 | + |
| 24 | +/* Header icon styling */ |
| 25 | +.main-header .fa-newspaper { |
| 26 | + font-size: 4rem; |
| 27 | + margin-bottom: 1rem; |
| 28 | + color: white; |
| 29 | +} |
| 30 | + |
| 31 | +/* Dark navbar styling */ |
| 32 | +.navbar-dark { |
| 33 | + background-color: #343a40 !important; |
| 34 | + border-bottom: 1px solid #495057; |
| 35 | +} |
| 36 | + |
| 37 | +.navbar-dark .navbar-brand { |
| 38 | + color: white !important; |
| 39 | +} |
| 40 | + |
| 41 | +.navbar-dark .nav-link { |
| 42 | + color: rgba(255, 255, 255, 0.75) !important; |
| 43 | +} |
| 44 | + |
| 45 | +.navbar-dark .nav-link:hover, |
| 46 | +.navbar-dark .nav-link:focus { |
| 47 | + color: white !important; |
| 48 | +} |
| 49 | + |
| 50 | +.navbar-dark .nav-link.active { |
| 51 | + color: white !important; |
| 52 | + background-color: #495057; |
| 53 | + border-radius: 0.375rem; |
| 54 | +} |
| 55 | + |
| 56 | +.bg-local { |
| 57 | + background-color: #f8f9fa !important; |
| 58 | +} |
| 59 | + |
| 60 | +.bg-canary { |
| 61 | + background-color: #d3f9d8 !important; |
| 62 | +} |
| 63 | + |
| 64 | +.bg-preview { |
| 65 | + background-color: #d3f9d8 !important; |
| 66 | +} |
| 67 | + |
| 68 | +.bg-production { |
| 69 | + background-color: #f8d7da !important; |
| 70 | +} |
| 71 | + |
| 72 | +/* Custom button styling */ |
| 73 | +.btn-primary { |
| 74 | + background-color: #1d7fd5 !important; |
| 75 | + border-color: #1d7fd5 !important; |
| 76 | +} |
| 77 | + |
| 78 | +.btn-primary:hover, |
| 79 | +.btn-primary:focus, |
| 80 | +.btn-primary:active { |
| 81 | + background-color: #1669b3 !important; |
| 82 | + border-color: #1669b3 !important; |
| 83 | +} |
| 84 | + |
| 85 | +.btn-outline-primary { |
| 86 | + color: #1d7fd5 !important; |
| 87 | + border-color: #1d7fd5 !important; |
| 88 | +} |
| 89 | + |
| 90 | +.btn-outline-primary:hover, |
| 91 | +.btn-outline-primary:focus, |
| 92 | +.btn-outline-primary:active { |
| 93 | + background-color: #1d7fd5 !important; |
| 94 | + border-color: #1d7fd5 !important; |
| 95 | + color: white !important; |
| 96 | +} |
0 commit comments