Split into different partials

This commit is contained in:
Oliver Davies 2017-11-19 20:03:27 +00:00
parent 5a8028f7ba
commit 9b5a8f1a1c
4 changed files with 27 additions and 33 deletions

View file

@ -1,32 +0,0 @@
.talk-video { padding-top: 56.25% }
.talk-video iframe,
.talk-video embed {
@apply .absolute;
@apply .pin-l;
@apply .pin-t;
@apply .w-full;
}
.talk-slides {
background: url('../images/loading.gif') center no-repeat;
min-height: 275px;
}
@screen md {
.talk-slides {
min-height: 375px;
}
}
@screen lg {
.talk-slides {
min-height: 450px;
}
}
@screen xl {
.talk-slides {
min-height: 560px;
}
}

View file

@ -0,0 +1,16 @@
.talk-slides {
background: url('../images/loading.gif') center no-repeat;
min-height: 275px;
}
@screen md {
.talk-slides { min-height: 375px; }
}
@screen lg {
.talk-slides { min-height: 450px; }
}
@screen xl {
.talk-slides { min-height: 560px; }
}

View file

@ -0,0 +1,9 @@
.talk-video { padding-top: 56.25% }
.talk-video iframe,
.talk-video embed {
@apply .absolute;
@apply .pin-l;
@apply .pin-t;
@apply .w-full;
}

View file

@ -64,7 +64,8 @@ svg {
@import "components/listing";
@import "components/post";
@import "components/talk";
@import "components/talk/slides";
@import "components/talk/video";
@import "components/talks-table";
@import "components/testimonial";