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

_extend.scss « scss « assets - github.com/monkeyWzr/hugo-theme-cactus.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5eb2d5299398d9f8f169d5db63094c5594ec9050 (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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
// $base-style
h1,
.h1 {
  display: block;
  margin-top: 3rem;
  margin-bottom: 1rem;
  color: $color-accent-1;
  letter-spacing: .01em;
  font-weight: 700;
  font-style: normal;
  font-size: 1.5em;

  @include antialias();
}
h2,
.h2 {
  position: relative;
  display: block;
  margin-top: 2rem;
  margin-bottom: .5rem;
  color: $color-accent-2;
  text-transform: none;
  letter-spacing: normal;
  font-weight: bold;
  font-size: 1rem;
}
h3 {
  color: $color-accent-2;
  text-decoration: underline;
  font-weight: bold;
  font-size: .9rem;
}
h4
h5
h6 {
  display: inline;
  text-decoration: none;
  color: $color-accent-3;
  font-weight: bold;
  font-size: .9rem;
}
h3
h4
h5
h6 {
  margin-top: .9rem;
  margin-bottom: .5rem;
}
hr {
  border: .5px dashed $color-accent-3;
  opacity: .5;
  margin: 0;
  margin-top: 20px;
  margin-bottom: 20px;
}
strong {
  font-weight: bold;
}
em
cite {
  font-style: italic;
}
sup
sub {
  position: relative;
  vertical-align: baseline;
  font-size: .75em;
  line-height: 0;
}
sup {
  top: -.5em;
}
sub {
  bottom: -.2em;
}
small {
  font-size: .85em;
}
acronym
abbr {
  border-bottom: 1px dotted;
}
ul
ol
dl {
  line-height: $line-height;
}
ul ul,
ol ul,
ul ol,
ol ol {
  margin-top: 0;
  margin-bottom: 0;
}
ol {
  list-style: decimal;
}
dt {
  font-weight: bold;
}
table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: $font-size - 2px;
  overflow: auto;
  display: block;
}
th {
  padding: 8px;
  border-bottom: 1px dashed $color-border;
  color: $color-accent-2;
  font-weight: bold;
  font-size: $font-size - 1px;
}
td {
  padding: 0 8px;
  border-bottom: none;
}