App.css 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. .App-logo {
  2. height: 64px;
  3. padding: 8px;
  4. float: left;
  5. }
  6. .App-header {
  7. background-color: #222;
  8. height: 80px;
  9. color: white;
  10. }
  11. .App-title {
  12. font-size: 1.5em;
  13. margin: 0;
  14. line-height: 80px;
  15. }
  16. .App-intro {
  17. font-size: large;
  18. }
  19. .Player {
  20. text-align: left;
  21. padding: 0 20px;
  22. }
  23. .section {
  24. float: left;
  25. padding: 0 10px 0 0;
  26. width: 256px;
  27. }
  28. .section:nth-child(2) { width: 128px; }
  29. .section:nth-child(5) { width: 128px; }
  30. .Filter {
  31. width: 100%;
  32. padding: 9px;
  33. border: 1px solid gray;
  34. border-radius: 4px;
  35. }
  36. .Controls {
  37. margin: 16px 0;
  38. }
  39. .Controls-progress {
  40. width: 540px;
  41. border: 1px black solid;
  42. height: 16px;
  43. position: relative;
  44. margin-bottom: 8px;
  45. }
  46. .Controls-progress span {
  47. font-size: 14px;
  48. }
  49. .Controls-bar {
  50. background: cadetblue;
  51. height: 16px;
  52. }
  53. .Controls-elapsed {
  54. position: absolute;
  55. left: 2px;
  56. top: 0;
  57. }
  58. .Controls-duration {
  59. position: absolute;
  60. right: 2px;
  61. top: 0;
  62. }
  63. .Controls button {
  64. margin-right: 8px;
  65. }
  66. .Playlist-active {
  67. background: darkseagreen;
  68. }