@charset “UTF-8”; /**

* @package    diazsepta.master_scss
*
* @copyright  Copyright (C) 2018-2019 DiazSepta, All rights reserved.
* @license    MIT Massachusetts Institute of Technology License; see LICENSE.md
*
*

*/

$font-family:  "MesloLGS", monospace !default;
$header-image: '/assets/img/snapshot.jpg' !default;
$navbar-logo:  '/assets/img/untitled.png' !default;

// global colors
$color:      dodgerblue !default;
$text-color: white !default;
$background: #181e35 !default;
$highlight:  #151b31 !default;

// w.content area
$laptop:   1024px !default;
$mobile-l: 425px !default;
$mobile-m: 375px !default;
$mobile-s: 320px !default;

// WARNING: mixin only uses max-width, in a deprecated, desktop-first
// approach, whereas media queries used elsewhere now use min-width.
@mixin media-query($device) {
  @media screen and (max-width: $device) {
    @content;
  }
}

// mixin @font-face
@mixin font-face($weight, $url) {
  src: url($url) format('woff2');
  font-weight: $weight;
  @content;
}

// mixin background header:before
@mixin header-before($position, $opacity) {
  background-position: $position;
  opacity: $opacity;
  @content;
}

// import partials
@import "diazsepta/_base";
@import "diazsepta/_layout.scss";
@import "diazsepta/_font-face.scss";
@import "diazsepta/_syntax-highlighting.scss";