style.css 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. a {
  2. color: #337ab7;
  3. }
  4. p {
  5. margin-top: 1rem;
  6. }
  7. a:hover {
  8. color:#23527c;
  9. }
  10. a:visited {
  11. color: #8d75a3;
  12. }
  13. body {
  14. line-height: 1.5;
  15. font-family: sans-serif;
  16. word-wrap: break-word;
  17. overflow-wrap: break-word;
  18. color:black;
  19. margin:2em;
  20. }
  21. h1 {
  22. text-decoration: underline red;
  23. text-decoration-thickness: 3px;
  24. text-underline-offset: 6px;
  25. font-size: 220%;
  26. font-weight: bold;
  27. }
  28. h2 {
  29. font-weight: bold;
  30. color: #005A9C;
  31. font-size: 140%;
  32. text-transform: uppercase;
  33. }
  34. red {
  35. color: red;
  36. }
  37. #controls {
  38. display: flex;
  39. margin-top: 2rem;
  40. max-width: 28em;
  41. }
  42. button, a.button {
  43. height: 3.5rem;
  44. min-width: 2rem;
  45. border: none;
  46. border-radius: 0.15rem;
  47. background: #ed341d;
  48. margin-left: 2px;
  49. box-shadow: inset 0 -0.15rem 0 rgba(0, 0, 0, 0.2);
  50. cursor: pointer;
  51. color:#ffffff;
  52. font-weight: bold;
  53. font-size: 1.5rem;
  54. }
  55. button:hover, button:focus {
  56. outline: none;
  57. background: #c72d1c;
  58. }
  59. button::-moz-focus-inner {
  60. border: 0;
  61. }
  62. button:active {
  63. box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.2);
  64. line-height: 3rem;
  65. }
  66. button:disabled {
  67. pointer-events: none;
  68. background: lightgray;
  69. }
  70. button:first-child {
  71. margin-left: 0;
  72. }
  73. audio {
  74. display: block;
  75. width: 100%;
  76. margin-top: 0.2rem;
  77. }
  78. li {
  79. list-style: none;
  80. margin-bottom: 1rem;
  81. }
  82. #formats {
  83. margin-top: 0.5rem;
  84. font-size: 80%;
  85. }
  86. #recordingsList{
  87. max-width: 28em;
  88. }
  89. #recordingsList a{ margin: 0.5em; }