{"version":3,"sources":["webpack:///./packages/mdc-typography/mdc-typography.scss","webpack:///./packages/mdc-typography/_variables.scss"],"names":[],"mappings":";;;;;;;AA2BE,gBAgBI,mGCjBgB,CDMlB,2BA0BE,6NARU,CAlBZ,2BA0BE,uOARU,CAlBZ,2BA0BE,4NARU,CAlBZ,2BA0BE,qOARU,CAlBZ,2BA0BE,0NARU,CAlBZ,2BA0BE,4NARU,CAlBZ,2BA0BE,8NARU,CAlBZ,2BA0BE,sOARU,CAlBZ,uBA0BE,4NARU,CAlBZ,uBA0BE,qOARU,CAlBZ,yBA0BE,oOARU,CAlBZ,wBA0BE,oOARU,CAlBZ,0BA0BE,gOARU,C","file":"mdc.typography.min.css","sourcesContent":["//\n// Copyright 2017 Google Inc.\n//\n// Permission is hereby granted, free of charge, to any person obtaining a copy\n// of this software and associated documentation files (the \"Software\"), to deal\n// in the Software without restriction, including without limitation the rights\n// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n// copies of the Software, and to permit persons to whom the Software is\n// furnished to do so, subject to the following conditions:\n//\n// The above copyright notice and this permission notice shall be included in\n// all copies or substantial portions of the Software.\n//\n// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n// THE SOFTWARE.\n//\n\n@import \"@material/feature-targeting/functions\";\n@import \"@material/feature-targeting/mixins\";\n@import \"./variables\";\n\n@mixin mdc-typography-core-styles($query: mdc-feature-all()) {\n  .mdc-typography {\n    @include mdc-typography-base($query: $query);\n  }\n\n  @each $style in map-keys($mdc-typography-styles) {\n    .mdc-typography--#{$style} {\n      @include mdc-typography($style, $query: $query);\n    }\n  }\n}\n\n@mixin mdc-typography-base($query: mdc-feature-all()) {\n  $feat-typography: mdc-feature-create-target($query, typography);\n\n  @include mdc-feature-targets($feat-typography) {\n    @each $key, $value in $mdc-typography-base {\n      #{$key}: $value;\n    }\n  }\n}\n\n@mixin mdc-typography($style, $query: mdc-feature-all()) {\n  $feat-typography: mdc-feature-create-target($query, typography);\n  $style-props: map-get($mdc-typography-styles, $style);\n\n  @if not map-has-key($mdc-typography-styles, $style) {\n    @error \"Invalid style specified! #{$style} doesn't exist. Choose one of #{map-keys($mdc-typography-styles)}\";\n  }\n\n  @include mdc-feature-targets($feat-typography) {\n    @each $key, $value in $style-props {\n      #{$key}: $value;\n    }\n  }\n}\n\n// Element must be `display: block` or `display: inline-block` for this to work.\n@mixin mdc-typography-overflow-ellipsis($query: mdc-feature-all()) {\n  $feat-structure: mdc-feature-create-target($query, structure);\n\n  @include mdc-feature-targets($feat-structure) {\n    text-overflow: ellipsis;\n    white-space: nowrap;\n    overflow: hidden;\n  }\n}\n\n@mixin mdc-typography-baseline-top($distance, $query: mdc-feature-all()) {\n  $feat-structure: mdc-feature-create-target($query, structure);\n\n  @include mdc-feature-targets($feat-structure) {\n    display: block;\n    margin-top: 0;\n    /* @alternate */\n    line-height: normal;\n  }\n\n  &::before {\n    @include mdc-feature-targets($feat-structure) {\n      @include mdc-typography-baseline-strut_($distance);\n\n      vertical-align: 0;\n    }\n  }\n}\n\n@mixin mdc-typography-baseline-bottom($distance, $query: mdc-feature-all()) {\n  $feat-structure: mdc-feature-create-target($query, structure);\n\n  @include mdc-feature-targets($feat-structure) {\n    margin-bottom: -1 * $distance;\n  }\n\n  &::after {\n    @include mdc-feature-targets($feat-structure) {\n      @include mdc-typography-baseline-strut_($distance);\n\n      vertical-align: -1 * $distance;\n    }\n  }\n}\n\n@mixin mdc-typography-baseline-strut_($distance) {\n  display: inline-block;\n  width: 0;\n  height: $distance;\n  content: \"\";\n}\n","//\n// Copyright 2017 Google Inc.\n//\n// Permission is hereby granted, free of charge, to any person obtaining a copy\n// of this software and associated documentation files (the \"Software\"), to deal\n// in the Software without restriction, including without limitation the rights\n// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n// copies of the Software, and to permit persons to whom the Software is\n// furnished to do so, subject to the following conditions:\n//\n// The above copyright notice and this permission notice shall be included in\n// all copies or substantial portions of the Software.\n//\n// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n// THE SOFTWARE.\n//\n\n@import \"./functions\";\n\n$mdc-typography-font-family: unquote(\"Roboto, sans-serif\") !default;\n\n$mdc-typography-base: (\n  font-family: $mdc-typography-font-family,\n  -moz-osx-font-smoothing: grayscale,\n  -webkit-font-smoothing: antialiased,\n) !default;\n\n$mdc-typography-font-weight-values: (\n  thin: 100,\n  light: 300,\n  regular: 400,\n  medium: 500,\n  bold: 700,\n  black: 900\n) !default;\n\n$mdc-typography-styles: mdc-typography-set-styles_(\n  $mdc-typography-base,\n  (\n    headline1: (\n      font-size: 6rem, // 96sp\n      line-height: 6rem,\n      font-weight: map-get($mdc-typography-font-weight-values, light),\n      letter-spacing: mdc-typography-get-letter-spacing_(-1.5, 6),\n      text-decoration: inherit,\n      text-transform: inherit\n    ),\n    headline2: (\n      font-size: 3.75rem, // 60sp\n      line-height: 3.75rem,\n      font-weight: map-get($mdc-typography-font-weight-values, light),\n      letter-spacing: mdc-typography-get-letter-spacing_(-.5, 3.75),\n      text-decoration: inherit,\n      text-transform: inherit\n    ),\n    headline3: (\n      font-size: 3rem, // 48px\n      line-height: 3.125rem, // 50px\n      font-weight: map-get($mdc-typography-font-weight-values, regular),\n      letter-spacing: normal,\n      text-decoration: inherit,\n      text-transform: inherit\n    ),\n    headline4: (\n      font-size: 2.125rem, // 34sp\n      line-height: 2.5rem, // 40sp\n      font-weight: map-get($mdc-typography-font-weight-values, regular),\n      letter-spacing: mdc-typography-get-letter-spacing_(.25, 2.125),\n      text-decoration: inherit,\n      text-transform: inherit\n    ),\n    headline5: (\n      font-size: 1.5rem, // 24sp\n      line-height: 2rem, // 32sp\n      font-weight: map-get($mdc-typography-font-weight-values, regular),\n      letter-spacing: normal,\n      text-decoration: inherit,\n      text-transform: inherit\n    ),\n    headline6: (\n      font-size: 1.25rem, // 20sp\n      line-height: 2rem, // 32sp\n      font-weight: map-get($mdc-typography-font-weight-values, medium),\n      letter-spacing: mdc-typography-get-letter-spacing_(.25, 1.25),\n      text-decoration: inherit,\n      text-transform: inherit\n    ),\n    subtitle1: (\n      font-size: 1rem, // 16sp\n      line-height: 1.75rem, // 28sp\n      font-weight: map-get($mdc-typography-font-weight-values, regular),\n      letter-spacing: mdc-typography-get-letter-spacing_(.15, 1),\n      text-decoration: inherit,\n      text-transform: inherit\n    ),\n    subtitle2: (\n      font-size: .875rem, // 14sp\n      line-height: 1.375rem, // 22sp\n      font-weight: map-get($mdc-typography-font-weight-values, medium),\n      letter-spacing: mdc-typography-get-letter-spacing_(.1, .875),\n      text-decoration: inherit,\n      text-transform: inherit\n    ),\n    body1: (\n      font-size: 1rem, // 16sp\n      line-height: 1.5rem, // 24sp\n      font-weight: map-get($mdc-typography-font-weight-values, regular),\n      letter-spacing: mdc-typography-get-letter-spacing_(.5, 1),\n      text-decoration: inherit,\n      text-transform: inherit\n    ),\n    body2: (\n      font-size: .875rem, // 14sp\n      line-height: 1.25rem, // 20sp\n      font-weight: map-get($mdc-typography-font-weight-values, regular),\n      letter-spacing: mdc-typography-get-letter-spacing_(.25, .875),\n      text-decoration: inherit,\n      text-transform: inherit\n    ),\n    caption: (\n      font-size: .75rem, // 12sp\n      line-height: 1.25rem, // 20sp\n      font-weight: map-get($mdc-typography-font-weight-values, regular),\n      letter-spacing: mdc-typography-get-letter-spacing_(.4, .75),\n      text-decoration: inherit,\n      text-transform: inherit\n    ),\n    button: (\n      font-size: .875rem, // 14sp\n      line-height: 2.25rem, // 36sp\n      font-weight: map-get($mdc-typography-font-weight-values, medium),\n      letter-spacing: mdc-typography-get-letter-spacing_(1.25, .875),\n      text-decoration: none,\n      text-transform: uppercase\n    ),\n    overline: (\n      font-size: .75rem, // 12sp\n      line-height: 2rem, // 32sp\n      font-weight: map-get($mdc-typography-font-weight-values, medium),\n      letter-spacing: mdc-typography-get-letter-spacing_(2, .75),\n      text-decoration: none,\n      text-transform: uppercase\n    ),\n  )\n) !default;\n"],"sourceRoot":""}