Music album web page generator
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 
 
 
 

62 líneas
861 B

  1. *{
  2. margin: 0;
  3. padding: 0;
  4. }
  5. section{
  6. height: 100vh;
  7. }
  8. section:nth-of-type(odd){
  9. background-color: white;
  10. color: blue;
  11. }
  12. section:nth-of-type(even){
  13. background-color: blue;
  14. color: white;
  15. }
  16. .cover{
  17. background : url(../images/cover.png) no-repeat center center;
  18. }
  19. .one-dpi{
  20. position : fixed;
  21. bottom: 0;
  22. right: 0;
  23. width : 72px;
  24. height: 72px;
  25. background-color: black;
  26. z-index: 10;
  27. cursor: pointer;
  28. }
  29. .one-dpi.clicked {
  30. background : white;
  31. }
  32. .player {
  33. position : fixed;
  34. right : 0;
  35. top : 0;
  36. height : 100vh;
  37. width : 25vw;
  38. color : black;
  39. z-index: 5;
  40. background-color: black;
  41. color: white;
  42. padding: 25px;
  43. }
  44. .player ul {
  45. list-style-type: none;
  46. }
  47. .player li {
  48. height: 10vh;
  49. display : flex;
  50. align-items: center;
  51. }
  52. .hidden{
  53. display: none;
  54. }