This repository has been archived on 2025-01-19. You can view files and clone it, but cannot push or open issues or pull requests.
oliverdavies.uk-old-sculpin/docs/assets/css/project.css.map
2017-07-10 22:28:39 +01:00

1 line
1.6 KiB
Plaintext

{"version":3,"sources":["project.sass","_mixins.sass"],"names":[],"mappings":"AAGA;;EAIY,iBAAiB;EACjB,eAAe,EAAG;;AAL9B;EAQY,eAAe,EAMW;ECJlC;IDVJ;MAWgB,eAAe,EAGO,EAAA;ECQlC;IDtBJ;MAcgB,iBAAiB,EAAK,EAAA","file":"project.css","sourcesContent":["@import '../../node_modules/bootstrap-sass/assets/stylesheets/bootstrap/variables';\n@import 'mixins';\n\n.project-company {\n &.has-logo {\n a:link,\n a:hover {\n border-bottom: 0;\n display: block; }\n\n img {\n max-width: 75%;\n\n @include tablet {\n max-width: 50%; }\n\n @include desktop {\n max-width: 33.3%; } } } }\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"]}