Layout von Websiten mit Bootstrap und Foundation
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

_root.scss 627B

1234567891011121314151617181920
  1. // Do not forget to update getting-started/theming.md!
  2. :root {
  3. // Custom variable values only support SassScript inside `#{}`.
  4. @each $color, $value in $colors {
  5. --#{$color}: #{$value};
  6. }
  7. @each $color, $value in $theme-colors {
  8. --#{$color}: #{$value};
  9. }
  10. @each $bp, $value in $grid-breakpoints {
  11. --breakpoint-#{$bp}: #{$value};
  12. }
  13. // Use `inspect` for lists so that quoted items keep the quotes.
  14. // See https://github.com/sass/sass/issues/2383#issuecomment-336349172
  15. --font-family-sans-serif: #{inspect($font-family-sans-serif)};
  16. --font-family-monospace: #{inspect($font-family-monospace)};
  17. }