1 line
37 KiB
Text
1 line
37 KiB
Text
|
{"version":3,"sources":["<no source>","file:///Users/ket/Documents/work/dsfr/src/component/logo/style/_module.scss","file:///Users/ket/Documents/work/dsfr/src/core/style/typography/tool/_styles.scss","file:///Users/ket/Documents/work/dsfr/src/core/style/action/tool/_link.scss","file:///Users/ket/Documents/work/dsfr/module/color/mixin/_element.scss","file:///Users/ket/Documents/work/dsfr/src/component/logo/style/_tool.scss","file:///Users/ket/Documents/work/dsfr/src/core/style/typography/tool/_font-weight.scss","%3Cinput%20css%20LkNBBe%3E","file:///Users/ket/Documents/work/dsfr/src/core/style/selector/tool/_pseudo.scss","file:///Users/ket/Documents/work/dsfr/src/core/style/spacing/tool/_size.scss","file:///Users/ket/Documents/work/dsfr/src/core/style/spacing/tool/_space.scss","file:///Users/ket/Documents/work/dsfr/module/media-query/mixin/_respond-from.scss","file:///Users/ket/Documents/work/dsfr/module/shame/media-query/mixin/_order.scss"],"names":[],"mappings":"AAAA;;GAAA,ACQA,SCiGI,gBAAA,CCxEF,oBAAA,CCQE,kCAAA,CH9BF,oBAAA,CIDA,iBAAA,CCSA,eAAA,CLLA,qBAAA,CADA,0BAAA,CAIA,iBAAA,CAFA,wBAAA,CACA,qBMWF,CCXE,gBPOE,8+GAAA,CIPA,uCAAA,CJKA,+CAAA,CINA,+CAAA,CGIE,UPCY,COGZ,aAAA,CCsCA,WAAA,CChCA,4BAXA,CDwCA,aFxBN,CFhBa,wCACP,+CAAA,CJwBF,yBMNJ,CCrBE,ePaE,mnLAAA,CIHA,2CAAA,CJCA,2BAAA,CIFA,+BAAA,CGNE,UPOW,COHX,aAAA,CHCF,kBAAA,CAGA,2BEiBJ,CFfa,oCACP,kCEiBN,CNfE,aItBA,kBEqDF,CC/CE,oBHAE,yCAAA,CADA,sDAAA,CI8CE,aAAA,CChCA,oBAXA,CDwCA,eFYN,CFpDa,4CACP,sDEsDN,CCzDE,mBHUE,6CAAA,CADA,mCAAA,CADA,oBAAA,CAGA,sBEqDJ,CFnDa,wCACP,oCEqDN,CN/CE,aI1BA,mBE6EF,CCvEE,oBHAE,yCAAA,CADA,wDAAA,CI8CE,cAAA,CChCA,4BAXA,CDwCA,eFoCN,CF5Ea,4CACP,wDE8EN,CCjFE,mBHUE,6CAAA,CADA,mCAAA,CADA,oBAAA,CAGA,2BE6EJ,CF3Ea,wCACP,oCE6EN,CI5FI;ECRI,cAAA,CLDR,CISI;ECRI,cAAA,CLER,CIMI;ECRI,cAAA,CLKR,CIGI;ECRI,cAAA,CLQR","file":"logo.main.min.css","sourcesContent":[null,"////\n/// Logo Module\n/// @group logo\n////\n\n@use 'sass:math';\n@use 'module/color';\n\n#{ns(logo)} {\n @include set-text-margin(0);\n @include disable-underline;\n display: inline-block;\n @include font-weight(bold);\n line-height: #{math.div(13, 12.6)}em;\n letter-spacing: -0.01em;\n text-transform: uppercase;\n vertical-align: middle;\n text-indent: -0.1em;\n @include logo-size(md);\n\n @include before('', block) {\n background-repeat: no-repeat, no-repeat, no-repeat;\n $marianne: svg-encode($svg-marianne, true);\n background-image: url($marianne), linear-gradient(90deg, color.$blue-france 0%, color.$blue-france 50%, color.$red-marianne 50%, color.$red-marianne 100%), linear-gradient(90deg, color.$absolute-black 0%, color.$absolute-black 100%);\n }\n\n @include after('', block) {\n background-repeat: no-repeat;\n $motto: svg-encode($svg-motto, true);\n background-image: url($motto);\n }\n\n &--sm {\n @include logo-size(sm);\n }\n\n &--lg {\n @include logo-size(lg);\n }\n}\n\n:root#{ns-attr(mourning)} #{ns(logo)} {\n @include before {\n box-shadow: 0 0 0 1px color.$white;\n }\n}\n","////\n/// Core Tool : Typography build\n/// @group core\n////\n\n@use 'module/spacing';\n\n@function get-text-style($font-size) {\n @return map-get($text-styles, $font-size);\n}\n\n@function get-title-style($font-size) {\n @return map-get($title-styles, $font-size);\n}\n\n@mixin _stylize($font-size, $styles, $prepend, $append) {\n $style: map-get($styles, $font-size);\n\n @if $prepend == null {\n $prepend: '';\n }\n\n @if $append == null {\n $append: '';\n }\n\n font-size: #{$prepend} spacing.space($font-size) #{$append};\n\n @if map-has-key($style, line-height) {\n line-height: #{$prepend} spacing.space(map-get($style, line-height)) #{$append};\n }\n}\n\n@mixin _responsive-styles($settings, $styles, $is-responsive, $prepend, $append) {\n $breakpoints: map-get($settings, breakpoints);\n\n @if map-has-key($settings, weight) {\n font-weight: #{$prepend} map-get($font-weight-scale, map-get($settings, weight)) #{$append};\n }\n\n @if $is-responsive {\n @each $breakpoint, $size in $breakpoints {\n @if $breakpoint == first {\n @include _stylize($size,
|