style.css 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. /* Space out content a bit */
  2. body {
  3. padding-top: 20px;
  4. padding-bottom: 20px;
  5. }
  6. /* Everything but the jumbotron gets side spacing for mobile first views */
  7. .header,
  8. .marketing,
  9. .footer {
  10. padding-left: 15px;
  11. padding-right: 15px;
  12. }
  13. /* Custom page header */
  14. .header {
  15. border-bottom: 1px solid #e5e5e5;
  16. }
  17. /* Make the masthead heading the same height as the navigation */
  18. .header h3 {
  19. margin-top: 0;
  20. margin-bottom: 0;
  21. line-height: 40px;
  22. padding-bottom: 19px;
  23. }
  24. /* Custom page footer */
  25. .footer {
  26. padding-top: 19px;
  27. color: #777;
  28. border-top: 1px solid #e5e5e5;
  29. }
  30. /* Customize container */
  31. @media (min-width: 1024px) {
  32. .container {
  33. max-width: 900px;
  34. }
  35. }
  36. .container-narrow > hr {
  37. margin: 30px 0;
  38. }
  39. /* Supporting marketing content */
  40. .marketing {
  41. margin: 40px 0;
  42. }
  43. .marketing p + h4 {
  44. margin-top: 28px;
  45. }
  46. /* Responsive: Portrait tablets and up */
  47. @media screen and (min-width: 768px) {
  48. /* Remove the padding we set earlier */
  49. .header,
  50. .marketing,
  51. .footer {
  52. padding-left: 0;
  53. padding-right: 0;
  54. }
  55. /* Space out the masthead */
  56. .header {
  57. margin-bottom: 30px;
  58. }
  59. }
  60. .controls {
  61. padding: 30px 0 15px;
  62. text-align: center;
  63. }
  64. .controls .btn {
  65. margin-bottom: 15px;
  66. }
  67. @media screen and (min-width: 990px) {
  68. .controls .mark-controls {
  69. display: inline;
  70. }
  71. }
  72. .lead {
  73. text-align: center;
  74. padding: 20px;
  75. }
  76. #waveform {
  77. position: relative;
  78. }
  79. #progress-bar {
  80. position: absolute;
  81. z-index: 10;
  82. top: 50%;
  83. margin-top: -10px;
  84. left: 5%;
  85. width: 90%;
  86. }
  87. #drop {
  88. border: 3px dashed #ddd;
  89. padding: 30px;
  90. }
  91. #drop.wavesurfer-dragover {
  92. border-color: #333;
  93. }