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

basic.scss « css « assets - github.com/wayjam/hugo-theme-mixedpaper.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: edf6f1a307b52504a6ba50d8c3d072b637b19efc (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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
/**
* Basic
*/

* {
  box-sizing: content-box;
  -webkit-box-sizing: content-box;
}

html,
body {
  height: 100%;
}

body {
  color: rgba(0, 0, 0, 0.7);
  background: #f8f8f8;
  overflow-x: hidden;
  font-size: 1em;
  line-height: 1.8;
}

a {
  color: #58b798;
  text-decoration: none;
}

a:active {
  color: #58b798;
}

a:hover {
  color: #6abfa3;
  border-bottom: 1px solid #6abfa3;
}

body,
select,
input,
textarea,
button {
  font-family: PingFang SC, Verdana, Helvetica Neue, Microsoft Yahei,
    Hiragino Sans GB, Microsoft Sans Serif, WenQuanYi Micro Hei, sans-serif;
}

::selection {
  background: #58b798;
  color: #fff;
}

::-moz-selection {
  background: #58b798;
  color: #fff;
}

.hidden {
  display: none;
}

.clearfix {
  clear: both;
}