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

style.scss « scss « src - github.com/diwao/hestia-pure.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fef5f9a19412ed1836308ecc4b7ff50eff950b47 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
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: 620px;
  }
}

@import './modules/header';
@import './modules/footer';
@import './modules/list';
@import './modules/single';
@import './modules/other';