blob: aebda0574181851e0129c57eae81968e23383f06 (
plain) (
blame)
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
|
body {
a {
color: $color-primary;
}
a:hover {
color: $color-secondary;
text-decoration: none;
}
background-color: $color-bg;
}
// main title style
.main-title {
font-family: 'Product Sans', -apple-system, BlinkMacSystemFont, Arial, monospace;
font-weight: 700;
font-size: $font-size-logo;
white-space: nowrap;
display: block;
}
.link-alter {
a {
color: $color-secondary;
}
a:hover {
color: $color-primary-dark;
text-decoration: none;
}
}
.markdown-body {
a {
color: $color-secondary;
}
a:hover {
color: $color-primary-dark;
text-decoration: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
color: $color-primary;
}
h1 {
font-size: $font-size-l1;
border-bottom: $spliter;
margin-top: 1.5rem;
}
h2 {
font-size: $font-size-l2;
border-bottom: $spliter;
margin-top: 1.25rem;
}
h3 {
font-size: $font-size-l3;
margin-top: 1.025rem;
}
h4,
h5,
h6 {
font-size: $font-size-l4;
}
hr {
background-color: $color-spliter;
}
ul {
list-style-type: circle;
}
img {
border: 2px solid $color-secondary;
border-radius: 2px;
}
}
|