Skip to content

Commit 755e95b

Browse files
authored
Revert "fixes deprecation warnings"
This reverts commit bc4ec49.
1 parent e23bef8 commit 755e95b

File tree

3 files changed

+49
-9
lines changed

3 files changed

+49
-9
lines changed

Gemfile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,3 @@ gem "jekyll-paginate"
44
gem "jekyll-sitemap"
55
gem "jekyll-redirect-from"
66
gem "jekyll-seo-tag", "2.7.0"
7-
gem "logger"

_sass/_layout.scss

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
@use "variables" as *;
2-
31
html,body {
42
font-family: $base-font-family;
53
font-size: $base-font-size;

css/main.scss

Lines changed: 49 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,53 @@
11
---
22
---
33

4-
@use "variables" as *;
5-
@use "bootstrap-readable";
6-
@use "layout";
7-
@use "custom";
8-
@use "syntax-highlighting";
94

10-
@import url("https://fonts.googleapis.com/css?family=Raleway:400,700");
5+
@import url("https://fonts.googleapis.com/css?family=Raleway:400,700");
6+
7+
// Our variables
8+
$base-font-family: "Raleway", "Helvetica Neue", Helvetica, Arial, sans-serif;
9+
$base-font-size: 16px;
10+
$base-font-weight: 400;
11+
$small-font-size: $base-font-size * 0.875;
12+
$base-line-height: 1.5;
13+
14+
$spacing-unit: 30px;
15+
16+
$text-color: #111;
17+
$background-color: #fdfdfd;
18+
$brand-color: #2a7ae2;
19+
20+
$grey-color: #828282;
21+
$grey-color-light: lighten($grey-color, 40%);
22+
$grey-color-dark: darken($grey-color, 25%);
23+
24+
// Width of the content area
25+
$content-width: 800px;
26+
27+
$on-palm: 600px;
28+
$on-laptop: 800px;
29+
30+
31+
32+
// Use media queries like this:
33+
// @include media-query($on-palm) {
34+
// .wrapper {
35+
// padding-right: $spacing-unit / 2;
36+
// padding-left: $spacing-unit / 2;
37+
// }
38+
// }
39+
@mixin media-query($device) {
40+
@media screen and (max-width: $device) {
41+
@content;
42+
}
43+
}
44+
45+
46+
47+
// Import partials from `sass_dir` (defaults to `_sass`)
48+
@import
49+
"bootstrap-readable",
50+
"layout",
51+
"custom",
52+
"syntax-highlighting"
53+
;

0 commit comments

Comments
 (0)