blob: ce33740736ffc2ab32026b41e49f4fcec793f11f (
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
|
@font-face {
font-family: 'Raleway';
font-style: normal;
font-weight: 125 950;
src: url(/css/fonts/Raleway-VariableFont_wght.ttf);
}
@font-face {
font-family: 'Poppins';
font-style: normal;
font-weight: 600;
src: url(/css/fonts/Poppins-SemiBold.ttf);
}
@font-face {
font-family: 'Harmonia Sans Pro';
font-style: normal;
font-weight: 600;
src: url(/css/fonts/HarmoniaSansProCyr-Regular.ttf);
}
@font-face {
font-family: 'Harmonia Sans Pro';
font-style: normal;
font-weight: bold;
src: url(/css/fonts/HarmoniaSansProCyr-Bold.ttf);
}
body {
font-family: 'Raleway';
}
.wy-menu, h1, h2, h3, h4, h5, h6 {
font-family: 'Poppins';
}
.rst-versions, .btn {
font-family: 'Harmonia Sans Pro', sans-serif;
}
.wy-side-nav-search, .wy-nav-top {
background-color: #6700be;
}
.wy-nav-side {
background-color: #dadbdc;
}
.wy-menu-vertical a {
color: #757679;
}
.wy-menu-vertical header,
.wy-menu-vertical p.caption {
color: #6700be;
}
.rst-content code {
color: #757679;
border-radius: 5px;
}
|