1 line
1.6 KiB
Plaintext
1 line
1.6 KiB
Plaintext
{"version":3,"sources":["talk.sass","_mixins.sass"],"names":[],"mappings":"AAGA;EACI,oBAAoB,EAAG;;AAE3B;EACI,0DAAyD;EACzD,kBAAkB;EAClB,YAAY,EAIe;ECA3B;IDPJ;MAKQ,kBAAkB,EAEK,EAAA;ECY3B;IDnBJ;MAOQ,kBAAkB,EAAK,EAAA","file":"talk.css","sourcesContent":["@import '../../node_modules/bootstrap-sass/assets/stylesheets/bootstrap/variables';\n@import 'mixins';\n\n.talk-full h1 {\n margin-bottom: 25px; }\n\n.presentation {\n background: url('../images/loading.gif') no-repeat center;\n min-height: 275px;\n width: 100%;\n @include tablet {\n min-height: 460px; }\n @include desktop {\n min-height: 540px; } }\n","@mixin from($device) {\n @media screen and (min-width: $device) {\n @content; } }\n\n@mixin until($device) {\n @media screen and (max-width: $device - 1px) {\n @content; } }\n\n@mixin mobile {\n @media screen and (max-width: $screen-tablet - 1px) {\n @content; } }\n\n@mixin tablet {\n @media screen and (min-width: $screen-tablet) {\n @content; } }\n\n@mixin tablet-only {\n @media screen and (min-width: $screen-tablet) and (max-width: $screen-desktop - 1px) {\n @content; } }\n\n@mixin touch {\n @media screen and (max-width: $screen-desktop - 1px) {\n @content; } }\n\n@mixin desktop {\n @media screen and (min-width: $screen-desktop) {\n @content; } }\n\n@mixin desktop-only {\n @media screen and (min-width: $screen-desktop) and (max-width: $screen-lg - 1px) {\n @content; } }\n\n@mixin widescreen {\n @media screen and (min-width: $screen-lg) {\n @content; } }\n"]} |