2
0

overlayQueueList.scss 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. @import "colors";
  2. @import "breakpoints";
  3. .overlay {
  4. .content {
  5. ul {
  6. list-style: none;
  7. li {
  8. width: 100%;
  9. background-color: $musare_color_white;
  10. border-top: solid rgba(148, 151, 153, 0.5) .5px;
  11. border-bottom: solid rgba(148, 151, 153, 0.5) .5px;
  12. border-right: solid rgba(148, 151, 153, 0.5) .5px;
  13. margin-bottom: 8px;
  14. min-height: 79.5px;
  15. position: relative;
  16. .left {
  17. margin-top: -.5px;
  18. width: 80px;
  19. top: 0;
  20. left: 0;
  21. bottom: 0;
  22. position: absolute;
  23. float: left;
  24. background-color: rgba(148, 151, 153, 0.5);
  25. img {
  26. display: block;
  27. width: 100%;
  28. height: 80px;
  29. }
  30. }
  31. .right {
  32. display: block;
  33. margin-left: 80px;
  34. height: 100%;
  35. padding: 4px;
  36. box-sizing: border-box;
  37. min-height: 79.5px;
  38. .duration {
  39. float: right;
  40. color: $musare_color_primary_gray;
  41. font-size: 14px;
  42. line-height: 19px;
  43. }
  44. .title {
  45. font-size: 14px;
  46. color: $musare_color_primary_gray;
  47. font-weight: $font_weight_semibold;
  48. line-height: 19px;
  49. display: inline;
  50. }
  51. .title-artists-spacing {
  52. display: block;
  53. }
  54. .artists {
  55. font-size: 13px;
  56. color: $musare_color_primary_gray;
  57. line-height: 17px;
  58. display: inline;
  59. margin-top: 4px;
  60. }
  61. }
  62. /*div {
  63. float: right;
  64. width: 30px;
  65. color: $musare_color_secondary_gray;
  66. margin: 5px 5px 0 0;
  67. .duration {
  68. font-size: 13px;
  69. float: left;
  70. }
  71. .add {
  72. float: left;
  73. cursor: pointer;
  74. height: 30px;
  75. i {
  76. font-size: 30px;
  77. }
  78. }
  79. }*/
  80. }
  81. }
  82. }
  83. }