1 line
2.8 KiB
Plaintext
1 line
2.8 KiB
Plaintext
{"version":3,"sources":["experience.sass","../../node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_clearfix.scss","_mixins.sass"],"names":[],"mappings":"AAIA;EACI,oBAAsC,EAClB;EAFxB;ICWI,aAAa;IACb,eAAe,EAChB;EDbH;ICeI,YAAY,EACb;;ADZH;EACI,mBAAmB,EAAG;;AAE1B;EACI,uBAAuB,EAAG;;AAE9B;EACI,aAAa;EACb,yBAAyB;EACzB,eAAe,EAQM;EExBrB;IFaJ;MAKQ,eAAe,EAME,EAAA;EEArB;IFXJ;MAOQ,eAAe,EAIE,EAAA;EAXzB;IAUQ,aAAa;IACb,YAAY,EAAG;;AAEvB;EACI,iBAAiB,EAAG","file":"experience.css","sourcesContent":["@import '../../node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/clearfix';\n@import '../../node_modules/bootstrap-sass/assets/stylesheets/bootstrap/variables';\n@import 'mixins';\n\n.experience-item {\n margin-bottom: $padding-large-vertical * 3;\n @include clearfix; }\n\n.experience-item-website {\n margin-bottom: 2px; }\n\n.experience-item-role {\n margin-bottom: .625rem; }\n\n.experience-item-logo {\n float: right;\n margin: 25px 0 1em 1.5em;\n max-width: 25%;\n @include from(500px) {\n max-width: 20%; }\n @include desktop {\n max-width: 15%; }\n\n img {\n height: auto;\n width: 100%; } }\n\n.experience-item-description p:last-of-type {\n margin-bottom: 0; }\n","// Clearfix\n//\n// For modern browsers\n// 1. The space content is one way to avoid an Opera bug when the\n// contenteditable attribute is included anywhere else in the document.\n// Otherwise it causes space to appear at the top and bottom of elements\n// that are clearfixed.\n// 2. The use of `table` rather than `block` is only necessary if using\n// `:before` to contain the top-margins of child elements.\n//\n// Source: http://nicolasgallagher.com/micro-clearfix-hack/\n\n@mixin clearfix() {\n &:before,\n &:after {\n content: \" \"; // 1\n display: table; // 2\n }\n &:after {\n clear: both;\n }\n}\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"]} |