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

_base.scss « pages « scss « static - github.com/iCyris/hugo-theme-yuki.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: da863f2afaa008e13a75f379e417b5dd805140f0 (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
40
41
42
43
44
45
/*
 * Base style
 */
* {
  padding: 0;
  margin: 0;
}
body {
  font-family: Helvetica neue, "Open Sans", sans-serif, Arial, serif;
  font-size: 16px;
}
.main {
  position: relative;
  width: 100%; height: 100%;
  left: 0; top: 0;
  text-align: center;
  min-height: 65vh;
}
a {
  text-decoration: none;
  color: $theme-color-gold;
  transition: color .2s ease;
  &:hover { color: $theme-color-gold-light ;}
}
article {
  margin: 4vh 0;
  word-wrap: break-word;
  color: $theme-color-black;
  p {
    font-size: 1rem;
    line-height: 30px;
    font-weight: 340;
    margin: 24px 0;
    word-wrap: break-word;
    letter-spacing: 1px;
    @media screen and (max-width: 800px) { line-height: 28px ;}
  }
}
blockquote {
  p {
    border-left: $theme-color-gold 3px solid;
    padding: 0 15px;
  }
}
h1, h2, h3, h4 { color: $theme-color-black ;}