Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/diwao/hestia-pure.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/scss/style.scss')
-rw-r--r--src/scss/style.scss39
1 files changed, 39 insertions, 0 deletions
diff --git a/src/scss/style.scss b/src/scss/style.scss
new file mode 100644
index 0000000..edc42e1
--- /dev/null
+++ b/src/scss/style.scss
@@ -0,0 +1,39 @@
+@charset "UTF-8";
+
+@import './modules/variables';
+
+*,
+*::after,
+*::before {
+ box-sizing: border-box;
+}
+
+body { font-family: $font-family-base; }
+a {
+ color: $color-link;
+ transition: .3s all;
+
+ &:hover {
+ opacity: .6;
+ text-decoration: none;
+ }
+}
+
+.wrap {
+ overflow: hidden;
+}
+
+.main {
+ margin: 0 auto;
+ max-width: 1080px;
+
+ &.main--single {
+ max-width: 760px;
+ }
+}
+
+@import './modules/header';
+@import './modules/footer';
+@import './modules/list';
+@import './modules/single';
+@import './modules/other';