-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
executable file
·110 lines (92 loc) · 1.62 KB
/
style.css
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
/* Styles go here */
* {
margin: 0;
}
html, body {
height: 100%;
}
.page-wrap {
min-height: 100%;
/* equal to footer height */
margin-bottom: -72px;
}
.page-wrap:after {
content: "";
display: block;
}
.site-footer, .page-wrap:after {
height: 72px;
}
.site-footer {
background-color: "#e9ecef";
}
body {
padding: 0;
margin: 0;
}
.jumbotron {
}
/* Fixed sidenav, full height */
.sidenav {
padding-top: 20px;
}
/* Style the sidenav links and the dropdown button */
.sidenav a, .dropdown-btn {
padding: 6px 8px 6px 16px;
text-decoration: none;
font-size: 20px;
color: #818181;
display: block;
border: none;
background: none;
width: 100%;
text-align: left;
cursor: pointer;
outline: none;
}
/* On mouse-over */
.sidenav a:hover, .dropdown-btn:hover {
color: #0000ff;
}
.search-result-item {
margin: 20px;
}
.dropdown-container {
display: none;
padding-left: 8px;
}
.fa-caret-down {
float: right;
padding-right: 8px;
}
.filter-items {
padding-left: 10px;
margin-top: 20px;
margin-bottom: 20px;
}
.filter-box {
padding-left: 20px !important;
padding-right: 30px !important;
background-color: "#e9ecef";
}
.tags {
font-size: 12px;
text-decoration: none;
display: inline-block;
border: 1px solid #00618e;
background-color: #f5fcff;
border-radius: 24px;
height: 24px;
line-height: 22px;
padding: 0 1rem;
margin: 1px 2px 1px 0;
vertical-align: middle;
display: inline-block;
max-width: 150px;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
.doc-descr {
margin-top: 20px;
}