Graphs and tables for your Spotify account.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

240 lines
4.0 KiB

  1. // Darkly 4.1.3
  2. // Bootswatch
  3. // Variables ===================================================================
  4. $web-font-path: "https://fonts.googleapis.com/css?family=Lato:400,700,400italic" !default;
  5. @import url($web-font-path);
  6. // Navbar ======================================================================
  7. .bg-primary {
  8. .navbar-nav .active > .nav-link {
  9. color: $success !important;
  10. }
  11. }
  12. .bg-dark {
  13. background-color: $success !important;
  14. &.navbar-dark .navbar-nav {
  15. .nav-link:focus,
  16. .nav-link:hover,
  17. .active > .nav-link {
  18. color: $primary !important;
  19. }
  20. }
  21. }
  22. // Buttons =====================================================================
  23. /* .btn-primary {
  24. font-family: $font-family-sans-serif;
  25. } */
  26. // Typography ==================================================================
  27. .blockquote {
  28. &-footer {
  29. color: $gray-600;
  30. }
  31. }
  32. // Tables ======================================================================
  33. .table {
  34. &-primary {
  35. &, > th, > td {
  36. background-color: $primary;
  37. }
  38. }
  39. &-secondary {
  40. &, > th, > td {
  41. background-color: $secondary;
  42. }
  43. }
  44. &-light {
  45. &, > th, > td {
  46. background-color: $light;
  47. }
  48. }
  49. &-dark {
  50. &, > th, > td {
  51. background-color: $dark;
  52. }
  53. }
  54. &-success {
  55. &, > th, > td {
  56. background-color: $success;
  57. }
  58. }
  59. &-info {
  60. &, > th, > td {
  61. background-color: $info;
  62. }
  63. }
  64. &-danger {
  65. &, > th, > td {
  66. background-color: $danger;
  67. }
  68. }
  69. &-warning {
  70. &, > th, > td {
  71. background-color: $warning;
  72. }
  73. }
  74. &-active {
  75. &, > th, > td {
  76. background-color: $table-active-bg;
  77. }
  78. }
  79. &-hover {
  80. .table-primary:hover {
  81. &, > th, > td {
  82. background-color: darken($primary, 5%);
  83. }
  84. }
  85. .table-secondary:hover {
  86. &, > th, > td {
  87. background-color: darken($secondary, 5%);
  88. }
  89. }
  90. .table-light:hover {
  91. &, > th, > td {
  92. background-color: darken($light, 5%);
  93. }
  94. }
  95. .table-dark:hover {
  96. &, > th, > td {
  97. background-color: darken($dark, 5%);
  98. }
  99. }
  100. .table-success:hover {
  101. &, > th, > td {
  102. background-color: darken($success, 5%);
  103. }
  104. }
  105. .table-info:hover {
  106. &, > th, > td {
  107. background-color: darken($info, 5%);
  108. }
  109. }
  110. .table-danger:hover {
  111. &, > th, > td {
  112. background-color: darken($danger, 5%);
  113. }
  114. }
  115. .table-warning:hover {
  116. &, > th, > td {
  117. background-color: darken($warning, 5%);
  118. }
  119. }
  120. .table-active:hover {
  121. &, > th, > td {
  122. background-color: $table-active-bg;
  123. }
  124. }
  125. }
  126. }
  127. // Forms =======================================================================
  128. .input-group-addon {
  129. color: #fff;
  130. }
  131. // Navs ========================================================================
  132. .nav-tabs,
  133. .nav-pills {
  134. .nav-link,
  135. .nav-link.active,
  136. .nav-link.active:focus,
  137. .nav-link.active:hover,
  138. .nav-item.open .nav-link,
  139. .nav-item.open .nav-link:focus,
  140. .nav-item.open .nav-link:hover {
  141. color: #fff;
  142. }
  143. }
  144. .breadcrumb a {
  145. color: #fff;
  146. }
  147. .pagination {
  148. a:hover {
  149. text-decoration: none;
  150. }
  151. }
  152. // Indicators ==================================================================
  153. .close {
  154. opacity: 0.4;
  155. &:hover,
  156. &:focus {
  157. opacity: 1;
  158. }
  159. }
  160. .alert {
  161. border: none;
  162. color: $white;
  163. a,
  164. .alert-link {
  165. color: #fff;
  166. text-decoration: underline;
  167. }
  168. @each $color, $value in $theme-colors {
  169. &-#{$color} {
  170. @if $enable-gradients {
  171. background: $value linear-gradient(180deg, mix($white, $value, 15%), $value) repeat-x;
  172. } @else {
  173. background-color: $value;
  174. }
  175. }
  176. }
  177. }
  178. // Progress bars ===============================================================
  179. // Containers ==================================================================
  180. .list-group-item-action {
  181. color: #fff;
  182. &:hover,
  183. &:focus {
  184. background-color: $gray-700;
  185. color: #fff;
  186. }
  187. .list-group-item-heading {
  188. color: #fff;
  189. }
  190. }