Subversion Repositories archerygear

Rev

Rev 5 | Rev 8 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1 - 1
/* Add a gray background color and some padding to the footer */
2
footer {
3
    background-color: #f2f2f2;
4
    padding: 25px;
5
}
6
 
7
/* iframe */
8
iframe {
9
    overflow: hidden;
10
    border-style: none;
5 - 11
}
12
 
13
/* youtube responsive video 16:9 */
14
.videoWrapper {
15
    position: relative;
16
    padding-bottom: 56.25%; /* 16:9 */
17
    padding-top: 25px; height: 0;
18
}
19
.videoWrapper iframe {
20
    position: absolute;
21
    top: 0;
22
    left: 0;
23
    width: 100%;
24
    height: 100%;
25
}