Music album web page generator
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
 
 

107 行
1.6 KiB

  1. :root{
  2. --one-dpi: 72px;
  3. --dd-blue: rgb(0,42,255);
  4. }
  5. .dd-player{
  6. width: 25vw;
  7. height: 100vh;
  8. position:fixed;
  9. top: 0px;
  10. background-color: white;
  11. right:0px;
  12. color: black;
  13. padding-top: var(--one-dpi);
  14. padding-bottom: var(--one-dpi);
  15. display: flex;
  16. flex-direction: column;
  17. justify-content: space-between;
  18. }
  19. .collapsed{
  20. display: none;
  21. }
  22. .dd-player-switch{
  23. position :fixed;
  24. bottom: 0;
  25. right: 0;
  26. width: var(--one-dpi);
  27. height:var(--one-dpi);
  28. background-color: white;
  29. cursor: pointer;
  30. }
  31. .dd-player-switch.opened{
  32. background-color: var(--dd-blue);
  33. }
  34. .dd-player h3 {
  35. font-size: 1rem;
  36. /*margin-top: calc(2 * var(--one-dpi));*/
  37. margin: calc(var(--one-dpi) / 2);
  38. /* margin-bottom : var(--one-dpi); */
  39. }
  40. .dd-player ul {
  41. margin-left : calc(var(--one-dpi) / 2);
  42. color: var(--dd-blue);
  43. font-size: 1.5rem;
  44. }
  45. .dd-player ul li img{
  46. width:24px;
  47. height:24px;
  48. margin-right: 12px;
  49. }
  50. .playing{
  51. font-weight: bold;
  52. color : black;
  53. }
  54. .progress-wrap{
  55. display:flex;
  56. width: 100%;
  57. justify-content: space-around;
  58. }
  59. .progress-wrap .time-info{
  60. font-size:0.66rem;
  61. display: flex;
  62. justify-content: center;
  63. /* align-items: center; */
  64. }
  65. progress{
  66. display: inline;
  67. /* margin: 0 calc(var(--one-dpi) / 2); */
  68. /* max-width: calc(100% - var(--one-dpi)); */
  69. height: 10px;
  70. width:66%;
  71. }
  72. #play-button{
  73. max-width: calc(var(--one-dpi) / 2);
  74. max-height: calc(var(--one-dpi) / 2);
  75. margin: calc(var(--one-dpi) / 2);
  76. }
  77. progress::-moz-progress-bar{
  78. background-color: black;
  79. }
  80. progress{
  81. background-color: #rgba(200,200,200,0.5);
  82. }
  83. .dd-player ul li, #play-button{
  84. cursor : pointer;
  85. }
  86. #wrap-playlist{
  87. flex: 1;
  88. }