27 lines
432 B
CSS
27 lines
432 B
CSS
.comments {
|
|
margin-top: .5rem;
|
|
}
|
|
|
|
@media only screen and (max-width: 600px) {
|
|
.comments {
|
|
margin-top: .5rem;
|
|
margin-left: -15px;
|
|
margin-right: -15px;
|
|
}
|
|
}
|
|
|
|
.youtubeContainer {
|
|
position: relative;
|
|
width: 100%;
|
|
height: 0;
|
|
padding-bottom: 56.25%;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.youtubeContainer iframe {
|
|
width: 100%;
|
|
height: 100%;
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
} |