aboutsummaryrefslogtreecommitdiff
path: root/_scss/_tools.scss
diff options
context:
space:
mode:
authorValentin Popov <info@valentineus.link>2018-04-18 02:47:11 +0300
committerValentin Popov <info@valentineus.link>2018-04-18 02:47:11 +0300
commit2f21fb975dcffd15113995a7d36122d17823f649 (patch)
tree57b5bc43d7b448ed5dcf73bdf4747908e85e6857 /_scss/_tools.scss
parentce5db590cac665abf73d32dfcd47da006e9920d0 (diff)
downloadpopov.link-2f21fb975dcffd15113995a7d36122d17823f649.tar.xz
popov.link-2f21fb975dcffd15113995a7d36122d17823f649.zip
Removing irrelevant spare parts
Diffstat (limited to '_scss/_tools.scss')
-rw-r--r--_scss/_tools.scss42
1 files changed, 0 insertions, 42 deletions
diff --git a/_scss/_tools.scss b/_scss/_tools.scss
deleted file mode 100644
index e6f27c2..0000000
--- a/_scss/_tools.scss
+++ /dev/null
@@ -1,42 +0,0 @@
-// Box Sizing
-//
-// The box-sizing property in CSS controls how the box model
-// is handled for the element it applies to.
-//
-// Values: content-box | border-box
-// Default: content-box
-//
-// https://www.w3.org/TR/css-ui-3/#box-sizing
-@mixin borderbox($value: content-box) {
- -webkit-box-sizing: $value;
- -moz-box-sizing: $value;
- -ms-box-sizing: $value;
- box-sizing: $value;
-}
-
-// Targeting media types
-//
-// The @media rule is used in media queries to apply different styles for
-// different media types/devices.
-//
-// https://www.w3.org/TR/css3-mediaqueries/
-@mixin mobile-screen() {
- @media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
- @content;
- }
-}
-
-// Calculates the font size for the title.
-//
-// Default: 1
-@function get-font-size-for-pc($heading: 1) {
- @return 1.4rem + ($heading * .3rem);
-}
-
-// Calculates the size of the mobile font for the title.
-//
-// Default: 1
-@function get-font-size-for-phone($heading: 1) {
- $pc: get-font-size-for-pc($heading);
- @return $pc - .4rem;
-}