Skip to content

Commit 5b618d3

Browse files
committed
File Import
Import Files
1 parent 16439f8 commit 5b618d3

18 files changed

+10648
-0
lines changed

css/bootstrap-responsive.css

Lines changed: 1109 additions & 0 deletions
Large diffs are not rendered by default.

css/bootstrap-responsive.min.css

Lines changed: 9 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

css/bootstrap.css

Lines changed: 6158 additions & 0 deletions
Large diffs are not rendered by default.

css/bootstrap.min.css

Lines changed: 9 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

css/main.css

Lines changed: 342 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,342 @@
1+
/*
2+
* HTML5 Boilerplate
3+
*
4+
* What follows is the result of much research on cross-browser styling.
5+
* Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
6+
* Kroc Camen, and the H5BP dev community and team.
7+
*/
8+
9+
/* ==========================================================================
10+
Base styles: opinionated defaults
11+
========================================================================== */
12+
13+
html,
14+
button,
15+
input,
16+
select,
17+
textarea {
18+
color: #222;
19+
}
20+
21+
body {
22+
font-size: 1em;
23+
line-height: 1.4;
24+
}
25+
26+
/*
27+
* Remove text-shadow in selection highlight: h5bp.com/i
28+
* These selection rule sets have to be separate.
29+
* Customize the background color to match your design.
30+
*/
31+
32+
::-moz-selection {
33+
background: #b3d4fc;
34+
text-shadow: none;
35+
}
36+
37+
::selection {
38+
background: #b3d4fc;
39+
text-shadow: none;
40+
}
41+
42+
/*
43+
* A better looking default horizontal rule
44+
*/
45+
46+
hr {
47+
display: block;
48+
height: 1px;
49+
border: 0;
50+
border-top: 1px solid #ccc;
51+
margin: 1em 0;
52+
padding: 0;
53+
}
54+
55+
/*
56+
* Remove the gap between images and the bottom of their containers: h5bp.com/i/440
57+
*/
58+
59+
img {
60+
vertical-align: middle;
61+
}
62+
63+
/*
64+
* Remove default fieldset styles.
65+
*/
66+
67+
fieldset {
68+
border: 0;
69+
margin: 0;
70+
padding: 0;
71+
}
72+
73+
/*
74+
* Allow only vertical resizing of textareas.
75+
*/
76+
77+
textarea {
78+
resize: vertical;
79+
}
80+
81+
/* ==========================================================================
82+
Chrome Frame prompt
83+
========================================================================== */
84+
85+
.chromeframe {
86+
margin: 0.2em 0;
87+
background: #ccc;
88+
color: #000;
89+
padding: 0.2em 0;
90+
}
91+
92+
/* ==========================================================================
93+
Author's custom styles
94+
========================================================================== */
95+
.playing {
96+
color: red;
97+
}
98+
99+
.playlist {
100+
display:table;
101+
}
102+
.playlist li{
103+
cursor:pointer;
104+
padding:8px;
105+
}
106+
107+
.playlist li:hover{
108+
color:blue;
109+
}
110+
#videoarea {
111+
float:left;
112+
width:640px;
113+
height:480px;
114+
margin:10px;
115+
border:1px solid silver;
116+
}
117+
118+
body {
119+
padding-top: 20px;
120+
padding-bottom: 40px;
121+
}
122+
123+
/* Custom container */
124+
.container-narrow {
125+
margin: 0 auto;
126+
max-width: 700px;
127+
}
128+
.container-narrow > hr {
129+
margin: 30px 0;
130+
}
131+
132+
/* Main marketing message and sign up button */
133+
.jumbotron {
134+
margin: 60px 0;
135+
text-align: center;
136+
}
137+
.jumbotron h1 {
138+
font-size: 72px;
139+
line-height: 1;
140+
}
141+
.jumbotron .btn {
142+
font-size: 21px;
143+
padding: 14px 24px;
144+
}
145+
146+
/* Supporting marketing content */
147+
.marketing {
148+
margin: 60px 0;
149+
}
150+
.marketing p + h4 {
151+
margin-top: 28px;
152+
}
153+
154+
/* ==========================================================================
155+
Helper classes
156+
========================================================================== */
157+
158+
/*
159+
* Image replacement
160+
*/
161+
162+
.ir {
163+
background-color: transparent;
164+
border: 0;
165+
overflow: hidden;
166+
/* IE 6/7 fallback */
167+
*text-indent: -9999px;
168+
}
169+
170+
.ir:before {
171+
content: "";
172+
display: block;
173+
width: 0;
174+
height: 150%;
175+
}
176+
177+
/*
178+
* Hide from both screenreaders and browsers: h5bp.com/u
179+
*/
180+
181+
.hidden {
182+
display: none !important;
183+
visibility: hidden;
184+
}
185+
186+
/*
187+
* Hide only visually, but have it available for screenreaders: h5bp.com/v
188+
*/
189+
190+
.visuallyhidden {
191+
border: 0;
192+
clip: rect(0 0 0 0);
193+
height: 1px;
194+
margin: -1px;
195+
overflow: hidden;
196+
padding: 0;
197+
position: absolute;
198+
width: 1px;
199+
}
200+
201+
/*
202+
* Extends the .visuallyhidden class to allow the element to be focusable
203+
* when navigated to via the keyboard: h5bp.com/p
204+
*/
205+
206+
.visuallyhidden.focusable:active,
207+
.visuallyhidden.focusable:focus {
208+
clip: auto;
209+
height: auto;
210+
margin: 0;
211+
overflow: visible;
212+
position: static;
213+
width: auto;
214+
}
215+
216+
/*
217+
* Hide visually and from screenreaders, but maintain layout
218+
*/
219+
220+
.invisible {
221+
visibility: hidden;
222+
}
223+
224+
/*
225+
* Clearfix: contain floats
226+
*
227+
* For modern browsers
228+
* 1. The space content is one way to avoid an Opera bug when the
229+
* `contenteditable` attribute is included anywhere else in the document.
230+
* Otherwise it causes space to appear at the top and bottom of elements
231+
* that receive the `clearfix` class.
232+
* 2. The use of `table` rather than `block` is only necessary if using
233+
* `:before` to contain the top-margins of child elements.
234+
*/
235+
236+
.clearfix:before,
237+
.clearfix:after {
238+
content: " "; /* 1 */
239+
display: table; /* 2 */
240+
}
241+
242+
.clearfix:after {
243+
clear: both;
244+
}
245+
246+
/*
247+
* For IE 6/7 only
248+
* Include this rule to trigger hasLayout and contain floats.
249+
*/
250+
251+
.clearfix {
252+
*zoom: 1;
253+
}
254+
255+
/* ==========================================================================
256+
EXAMPLE Media Queries for Responsive Design.
257+
These examples override the primary ('mobile first') styles.
258+
Modify as content requires.
259+
========================================================================== */
260+
261+
@media only screen and (min-width: 35em) {
262+
/* Style adjustments for viewports that meet the condition */
263+
}
264+
265+
@media print,
266+
(-o-min-device-pixel-ratio: 5/4),
267+
(-webkit-min-device-pixel-ratio: 1.25),
268+
(min-resolution: 120dpi) {
269+
/* Style adjustments for high resolution devices */
270+
}
271+
272+
/* ==========================================================================
273+
Print styles.
274+
Inlined to avoid required HTTP connection: h5bp.com/r
275+
========================================================================== */
276+
277+
@media print {
278+
* {
279+
background: transparent !important;
280+
color: #000 !important; /* Black prints faster: h5bp.com/s */
281+
box-shadow: none !important;
282+
text-shadow: none !important;
283+
}
284+
285+
a,
286+
a:visited {
287+
text-decoration: underline;
288+
}
289+
290+
a[href]:after {
291+
content: " (" attr(href) ")";
292+
}
293+
294+
abbr[title]:after {
295+
content: " (" attr(title) ")";
296+
}
297+
298+
/*
299+
* Don't show links for images, or javascript/internal links
300+
*/
301+
302+
.ir a:after,
303+
a[href^="javascript:"]:after,
304+
a[href^="#"]:after {
305+
content: "";
306+
}
307+
308+
pre,
309+
blockquote {
310+
border: 1px solid #999;
311+
page-break-inside: avoid;
312+
}
313+
314+
thead {
315+
display: table-header-group; /* h5bp.com/t */
316+
}
317+
318+
tr,
319+
img {
320+
page-break-inside: avoid;
321+
}
322+
323+
img {
324+
max-width: 100% !important;
325+
}
326+
327+
@page {
328+
margin: 0.5cm;
329+
}
330+
331+
p,
332+
h2,
333+
h3 {
334+
orphans: 3;
335+
widows: 3;
336+
}
337+
338+
h2,
339+
h3 {
340+
page-break-after: avoid;
341+
}
342+
}

0 commit comments

Comments
 (0)