-
Notifications
You must be signed in to change notification settings - Fork 1k
/
Copy pathglossary.scss
75 lines (64 loc) · 1.36 KB
/
glossary.scss
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
// GLOSSARY
//------------------------------------------------
//------------------------------------------------
.glossary {
.filterbar {
position: relative;
margin-bottom: 24px;
#filter-count {
visibility: hidden;
font-size: $font-size-xsmall;
text-transform: uppercase;
color: $base-font-color-light;
transition: $base-transition;
}
.icon-search {
position: absolute;
left: 14px;
top: 4px;
z-index: 30;
}
input {
padding: 8px 18px 8px 40px;
background: rgba($brand-tertiary, 0.1);
appearance: none;
font-size: $base-font-size;
border-radius: $border-radius-base;
width: 100%;
box-sizing: border-box;
&:focus {
outline: none;
background: rgba($brand-tertiary, 0.07);
@include box-shadow($box-shadow-inner);
}
}
}
h5 {
font-size: $font-size-medium !important;
color: $base-font-color-light !important;
}
ul {
padding-left: 0 !important;
}
ul li {
list-style-type: none !important;
padding-left: 0 !important;
}
li {
h3 {
text-transform: none;
margin-bottom: 2px;
font-weight: $font-black;
}
}
}
.glossary-toc {
#toc {
ul {
li {
// margin-bottom: 0;
margin-top: 2px;
}
}
}
}