source: gs3-extensions/mars-src/trunk/src/wavesurfer-player/css/style.css@ 34370

Last change on this file since 34370 was 34370, checked in by davidb, 4 years ago

WaveSurfer-JS source files and top-up player

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