-
Notifications
You must be signed in to change notification settings - Fork 83
/
Copy pathindex.styl
79 lines (59 loc) · 1.39 KB
/
index.styl
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
body
font-family $bodyFontFamily
h1
font-size $h1FontSize
h2
font-size $h2FontSize
table thead th
background-color $theadBgColor
color $theadFontColor
font-weight $theadFontWeight
tr:nth-child(2n)
background-color $tipBgColor
.navbar
background-color $navbarBgColor
.navbar .site-name
color $navbarFontColor
font-size $navbarFontSize
font-weight $navbarFontWeight
.navbar .links
background-color $navbarBgColor
font-family $navbarFontFamily
.nav-links a
color $navbarFontColor
font-size $navbarLinksFontSize
font-weight $navbarLinksFontWeight
.nav-links a:hover
color $navbarLinksHoverColor
.sidebar .nav-links
background-color $navbarBgColor
.sidebar-heading
font-size $sidebarFontSize
font-weight $sidebarFontWeight
.sidebar
& > .sidebar-links
& > li > a.sidebar-link
font-size $sidebarFontSize
font-weight $sidebarFontWeight
.custom-block.warning
background-color $warningBgColor
border-color $warningBorderColor
.custom-block.warning .custom-block-title
color: $warningTitleColor
.custom-block.tip
background-color $tipBgColor
border-color $tipBorderColor
.custom-block.danger
background-color $dangerBgColor
border-color $dangerBorderColor
.breadcrumbs {
font-size: 14px;
margin: 10px 0;
}
.breadcrumbs a {
text-decoration: none;
color: #017698;
}
.breadcrumbs a:hover {
text-decoration: underline;
}