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

typography.less « src - github.com/picturepan2/spectre.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 18cdacd85ea0236c8328ed0fa793dd7675a0514c (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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
// Typography
h1,
h2,
h3,
h4,
h5,
h6 {
  color: inherit;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  margin-top: 0;
}
h1 {
  font-size: 5rem;
}
h2 {
  font-size: 4rem;
}
h3 {
  font-size: 3rem;
}
h4 {
  font-size: 2.4rem;
}
h5 {
  font-size: 2rem;
}
h6 {
  font-size: 1.6rem;
}
p {
  margin: 0 0 1rem;
}
blockquote {
  border-left: .2rem solid #ddd;
  margin-left: 0;
  padding: 1rem 2rem;

  p:last-child {
    margin-bottom: 0;
  }

  cite {
    color: lighten(@body-font-color, 50%);
  }
}
ul,
ol {
  margin: 2rem 0 2rem 2rem;
  padding: 0;

  ul,
  ol {
    margin: 1.5rem 0 1.5rem 2rem;
  }

  li {
    margin-top: 1rem;
  }
}
ul {
  list-style: disc inside;

  ul {
    list-style-type: circle;
  }
}
ol {
  list-style: decimal inside;

  ol {
    list-style-type: lower-alpha;
  }
}
dl {
  dt {
    font-weight: bold;
  }
  dd {
    margin: .5rem 0 1.5rem 0;
  }
}
mark {
  background: lighten(@control-color-warning, 32%);
  .label-base();
}
kbd {
  background: @core-dark-color;
  color: @core-light-color;
  .label-base();
}
abbr[title] {
  border-bottom: .1rem dotted;
  cursor: help;
  text-decoration: none;
}
ins,
u {
  text-decoration: underline;
}

// Code
code {
  background: @core-border-color;
  color: lighten(@body-font-color, 20%);
  .label-base();
}
pre {
  background: lighten(@core-border-color, 4%);
  line-height: 1.8rem;
  margin-bottom: 1em;
  margin-top: 1em;
  overflow: auto;
  padding: 2rem 2.5rem;
  position: relative;

  > code {
    background: transparent;
    border-left: 0;
    font-size: 1em;
    line-height: 1.8rem;
    padding: 0;

    &::before {
      content: attr(data-lang);
      color: @control-color;
      font-size: 1.2rem;
      position: absolute;
      right: 1rem;
      top: .2rem;
    }
  }
}