colette
Version:
A CSS and JS starter kit for 20 Minutes web projects
23 lines (22 loc) • 471 B
text/stylus
// Media Placeholder
//
// SVG basic settings
//
// Default svg value for the logo:
// ```stylus
// $mediaPlaceholder: '../../svg/logo.svg'
// ```
// Default svg style for the logo:
// ```stylus
// $mediaPlaceholder-style: '
// path
// fill rgba(255, 255, 255, .5)
// '
// ```
//
// Styleguide: Settings.MediaPlaceholder
$mediaPlaceholder ?= '../../svg/logo.svg'
$mediaPlaceholder-style ?= '
path
fill rgba(255, 255, 255, .5)
' // @stylint ignore