Skip to content

Commit

Permalink
Commit Session Test
Browse files Browse the repository at this point in the history
  • Loading branch information
s3mPr1linux committed Dec 22, 2024
1 parent 1ae9203 commit b05cb44
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions _sass/base.scss
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@
@import "rouge-base16-dark";
@import "default_colors";

$base-font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol" !default;
$base-font-size: 16px !default;
$base-font-weight: 400 !default;
$small-font-size: $base-font-size * 0.875 !default;
$base-line-height: 1.5 !default;


$body-background: $cod-grey !default;
$body-foreground: $gallery !default;
$header: $conifer !default;
Expand All @@ -21,6 +28,17 @@ $grey-color-dark: darken($grey-color, 25%) !default;
$on-palm: 600px !default;
$on-laptop: 800px !default;

@mixin media-query($device) {
@media screen and (max-width: $device) {
@content;
}
}

@mixin relative-font-size($ratio) {
font-size: $base-font-size * $ratio;
}


body {
margin: 0;
padding: 0;
Expand Down

0 comments on commit b05cb44

Please sign in to comment.