jekyll-theme-doc-project 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/LICENSE +204 -0
- data/README.md +3 -0
- data/_includes/audio.html +4 -0
- data/_includes/breadcrumb.html +11 -0
- data/_includes/callout.html +1 -0
- data/_includes/custom_links.html +1 -0
- data/_includes/disqus.html +17 -0
- data/_includes/feedback.html +1 -0
- data/_includes/footer.html +65 -0
- data/_includes/github_button.html +1 -0
- data/_includes/github_button_topnavbar.html +1 -0
- data/_includes/google_analytics.html +15 -0
- data/_includes/hippo_menu_logic.html +77 -0
- data/_includes/hipposidebarscripts.html +36 -0
- data/_includes/image.html +1 -0
- data/_includes/important.html +1 -0
- data/_includes/inline_image.html +1 -0
- data/_includes/links.html +130 -0
- data/_includes/logo.html +5 -0
- data/_includes/note.html +1 -0
- data/_includes/notes.html +14 -0
- data/_includes/pdfminitoc.html +39 -0
- data/_includes/sidebar.html +113 -0
- data/_includes/tip.html +1 -0
- data/_includes/tooltips.html +1 -0
- data/_includes/topnav.html +189 -0
- data/_includes/warning.html +1 -0
- data/_layouts/default.html +57 -0
- data/_layouts/printpdf.html +40 -0
- data/_sass/alerts.scss +105 -0
- data/_sass/custom.scss +391 -0
- data/_sass/footer.scss +117 -0
- data/_sass/headings.scss +52 -0
- data/_sass/navbar.scss +237 -0
- data/_sass/navtabs.scss +165 -0
- data/_sass/sidebar.scss +193 -0
- data/_sass/syntax_highlighting.scss +325 -0
- data/_sass/table.scss +137 -0
- data/_sass/workflowmaps.scss +101 -0
- data/assets/companylogo.png +0 -0
- data/assets/css/jquery.navgoco.css +69 -0
- data/assets/css/main.scss +16 -0
- data/assets/css/monokai.css +80 -0
- data/assets/css/pdf/bootstrap.min.css +7738 -0
- data/assets/css/pdf/bootstrap.min.css.map +1 -0
- data/assets/css/pdf/font-awesome.min.css +4 -0
- data/assets/css/pdf/printstyles.css +154 -0
- data/assets/css/pdf/syntax.css +60 -0
- data/assets/css/pdf/user_defined_pdf_styles.css +1 -0
- data/assets/css/syntax.css +60 -0
- data/assets/css/user_defined_web_styles.css +5 -0
- data/assets/favicon.ico +0 -0
- data/assets/js/bootstrap.min.js +7 -0
- data/assets/js/jquery.cookie.min.js +8 -0
- data/assets/js/jquery.min.js +4 -0
- data/assets/js/jquery.navgoco.min.js +9 -0
- data/assets/js/lunr.min.js +7 -0
- data/assets/js/search.js +67 -0
- data/assets/js/user_defined_javascript.js +0 -0
- data/assets/licenses/LICENSE-BOOTSNIPP.txt +10 -0
- data/assets/licenses/LICENSE-JQUERY.txt +38 -0
- data/assets/licenses/LICENSE-LUNR.txt +22 -0
- data/assets/licenses/LICENSE-NAVGOCO.txt +27 -0
- data/assets/licenses/LICENSE-jekyll-table-of-contents.txt +21 -0
- data/assets/linkstest.html +7 -0
- data/assets/pdffrontmatter/pdf_copyright_page.html +9 -0
- data/assets/pdffrontmatter/pdf_title_page.html +17 -0
- data/assets/pdffrontmatter/pdf_toc_page.html +52 -0
- data/assets/prince-list.txt +31 -0
- data/assets/search.html +55 -0
- data/assets/snippets.txt +136 -0
- metadata +158 -0
data/_sass/footer.scss
ADDED
@@ -0,0 +1,117 @@
|
|
1
|
+
footer {
|
2
|
+
background-color: dimgray;
|
3
|
+
min-height: 350px;
|
4
|
+
position: relative;
|
5
|
+
}
|
6
|
+
.footerleft {
|
7
|
+
margin-top: 50px;
|
8
|
+
padding: 0 36px;
|
9
|
+
}
|
10
|
+
.logofooter {
|
11
|
+
margin-bottom: 10px;
|
12
|
+
font-size: 25px;
|
13
|
+
color: #fff;
|
14
|
+
font-weight: 700;
|
15
|
+
}
|
16
|
+
.footerleft p {
|
17
|
+
color: #fff;
|
18
|
+
font-size: 12px !important;
|
19
|
+
margin-bottom: 15px;
|
20
|
+
}
|
21
|
+
.footerleft p i {
|
22
|
+
width: 20px;
|
23
|
+
color: #999;
|
24
|
+
}
|
25
|
+
.paddingtop-bottom {
|
26
|
+
margin-top: 50px;
|
27
|
+
}
|
28
|
+
.footer-ul {
|
29
|
+
list-style-type: none;
|
30
|
+
padding-left: 0px;
|
31
|
+
margin-left: 2px;
|
32
|
+
}
|
33
|
+
.footer-ul li {
|
34
|
+
line-height: 29px;
|
35
|
+
font-size: 12px;
|
36
|
+
}
|
37
|
+
.footer-ul li a, .footer-description a {
|
38
|
+
color: #a0a3a4;
|
39
|
+
transition: color 0.2s linear 0s, background 0.2s linear 0s;
|
40
|
+
}
|
41
|
+
.footer-ul i {
|
42
|
+
margin-right: 10px;
|
43
|
+
}
|
44
|
+
.footer-ul li a:hover, .footer-description a:hover {
|
45
|
+
transition: color 0.2s linear 0s, background 0.2s linear 0s;
|
46
|
+
color: #ff670f;
|
47
|
+
}
|
48
|
+
.social:hover {
|
49
|
+
-webkit-transform: scale(1.1);
|
50
|
+
-moz-transform: scale(1.1);
|
51
|
+
-o-transform: scale(1.1);
|
52
|
+
}
|
53
|
+
.icon-ul {
|
54
|
+
list-style-type: none !important;
|
55
|
+
margin: 0px;
|
56
|
+
padding: 0px;
|
57
|
+
}
|
58
|
+
.icon-ul li {
|
59
|
+
line-height: 75px;
|
60
|
+
width: 100%;
|
61
|
+
float: left;
|
62
|
+
}
|
63
|
+
.icon {
|
64
|
+
float: left;
|
65
|
+
margin-right: 5px;
|
66
|
+
}
|
67
|
+
.copyright {
|
68
|
+
min-height: 40px;
|
69
|
+
background-color: #333;
|
70
|
+
position: relative;
|
71
|
+
}
|
72
|
+
.copyright p {
|
73
|
+
text-align: center;
|
74
|
+
color: #FFF;
|
75
|
+
padding: 10px 0;
|
76
|
+
margin-bottom: 0px;
|
77
|
+
}
|
78
|
+
.heading7 {
|
79
|
+
font-size: 21px;
|
80
|
+
font-weight: 700;
|
81
|
+
color: #d9d6d6;
|
82
|
+
margin-bottom: 22px;
|
83
|
+
}
|
84
|
+
.post p {
|
85
|
+
font-size: 12px;
|
86
|
+
color: #FFF;
|
87
|
+
line-height: 20px;
|
88
|
+
}
|
89
|
+
.post p span {
|
90
|
+
display: block;
|
91
|
+
color: #8f8f8f;
|
92
|
+
}
|
93
|
+
.bottom_ul, bottom_ul li {
|
94
|
+
list-style-type: none;
|
95
|
+
float: right;
|
96
|
+
margin-bottom: 0px;
|
97
|
+
}
|
98
|
+
.bottom_ul li {
|
99
|
+
float: left;
|
100
|
+
line-height: 40px;
|
101
|
+
}
|
102
|
+
.bottom_ul li:after {
|
103
|
+
content: "/";
|
104
|
+
color: #FFF;
|
105
|
+
margin-right: 8px;
|
106
|
+
margin-left: 8px;
|
107
|
+
}
|
108
|
+
.bottom_ul li a {
|
109
|
+
color: #FFF;
|
110
|
+
font-size: 12px;
|
111
|
+
}
|
112
|
+
.footertop {
|
113
|
+
min-height: 60px;
|
114
|
+
background-color: darkgrey;
|
115
|
+
position: relative;
|
116
|
+
margin-top: 50px;
|
117
|
+
}
|
data/_sass/headings.scss
ADDED
@@ -0,0 +1,52 @@
|
|
1
|
+
/* heading styles */
|
2
|
+
|
3
|
+
/*make room for the nav bar */
|
4
|
+
|
5
|
+
h1[id],
|
6
|
+
h2[id],
|
7
|
+
h3[id],
|
8
|
+
h4[id],
|
9
|
+
h5[id],
|
10
|
+
h6[id],
|
11
|
+
dt[id] {
|
12
|
+
padding-top:80px;
|
13
|
+
margin-top:-60px;
|
14
|
+
}
|
15
|
+
|
16
|
+
h1 {
|
17
|
+
margin-bottom: 30px;
|
18
|
+
}
|
19
|
+
|
20
|
+
h2 {
|
21
|
+
margin-bottom: 25px;
|
22
|
+
}
|
23
|
+
|
24
|
+
h3 {
|
25
|
+
margin-bottom: 20px;
|
26
|
+
}
|
27
|
+
|
28
|
+
h2 {
|
29
|
+
color: #444;
|
30
|
+
}
|
31
|
+
h3 {
|
32
|
+
color: #777;
|
33
|
+
}
|
34
|
+
.subtitle {
|
35
|
+
font-size: 16px;
|
36
|
+
color: gray;
|
37
|
+
margin-top: 50px;
|
38
|
+
padding-bottom: 15px;
|
39
|
+
}
|
40
|
+
h1 {
|
41
|
+
margin-top: 0px;
|
42
|
+
}
|
43
|
+
|
44
|
+
.h2, h2 {
|
45
|
+
font-size: 24px;
|
46
|
+
}
|
47
|
+
.h3, h3 {
|
48
|
+
font-size: 18px;
|
49
|
+
}
|
50
|
+
.h4, h4 {
|
51
|
+
font-size: 16px;
|
52
|
+
}
|
data/_sass/navbar.scss
ADDED
@@ -0,0 +1,237 @@
|
|
1
|
+
.navbar-default {
|
2
|
+
background-color: #ffffff;
|
3
|
+
border-color: #ffffff;
|
4
|
+
}
|
5
|
+
.navbar-default .navbar-brand {
|
6
|
+
color: #111111;
|
7
|
+
}
|
8
|
+
.navbar-default .navbar-brand:hover,
|
9
|
+
.navbar-default .navbar-brand:focus {
|
10
|
+
color: #ee7600;
|
11
|
+
}
|
12
|
+
.navbar-default .navbar-text {
|
13
|
+
color: #111111;
|
14
|
+
}
|
15
|
+
.navbar-default .navbar-nav > li > a {
|
16
|
+
color: #111111;
|
17
|
+
}
|
18
|
+
.navbar-default .navbar-nav > li > a:hover,
|
19
|
+
.navbar-default .navbar-nav > li > a:focus {
|
20
|
+
color: #ee7600;
|
21
|
+
}
|
22
|
+
.navbar-default .navbar-nav > li > .dropdown-menu {
|
23
|
+
background-color: #ffffff;
|
24
|
+
}
|
25
|
+
.navbar-default .navbar-nav > li > .dropdown-menu > li > a {
|
26
|
+
color: #111111;
|
27
|
+
}
|
28
|
+
.navbar-default .navbar-nav > li > .dropdown-menu > li > a:hover,
|
29
|
+
.navbar-default .navbar-nav > li > .dropdown-menu > li > a:focus {
|
30
|
+
color: #ee7600;
|
31
|
+
background-color: #ffffff;
|
32
|
+
}
|
33
|
+
.navbar-default .navbar-nav > li > .dropdown-menu > li > .divider {
|
34
|
+
background-color: #ffffff;
|
35
|
+
}
|
36
|
+
.navbar-default .navbar-nav .open .dropdown-menu > .active > a,
|
37
|
+
.navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,
|
38
|
+
.navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
|
39
|
+
color: #ee7600;
|
40
|
+
background-color: #ffffff;
|
41
|
+
}
|
42
|
+
.navbar-default .navbar-nav > .active > a,
|
43
|
+
.navbar-default .navbar-nav > .active > a:hover,
|
44
|
+
.navbar-default .navbar-nav > .active > a:focus {
|
45
|
+
color: #ee7600;
|
46
|
+
background-color: #ffffff;
|
47
|
+
}
|
48
|
+
.navbar-default .navbar-nav > .open > a,
|
49
|
+
.navbar-default .navbar-nav > .open > a:hover,
|
50
|
+
.navbar-default .navbar-nav > .open > a:focus {
|
51
|
+
color: #ee7600;
|
52
|
+
background-color: #ffffff;
|
53
|
+
}
|
54
|
+
.navbar-default .navbar-toggle {
|
55
|
+
border-color: #ffffff;
|
56
|
+
}
|
57
|
+
.navbar-default .navbar-toggle:hover,
|
58
|
+
.navbar-default .navbar-toggle:focus {
|
59
|
+
background-color: #ffffff;
|
60
|
+
}
|
61
|
+
.navbar-default .navbar-toggle .icon-bar {
|
62
|
+
background-color: #111111;
|
63
|
+
}
|
64
|
+
.navbar-default .navbar-collapse,
|
65
|
+
.navbar-default .navbar-form {
|
66
|
+
border-color: #111111;
|
67
|
+
}
|
68
|
+
.navbar-default .navbar-link {
|
69
|
+
color: #111111;
|
70
|
+
}
|
71
|
+
.navbar-default .navbar-link:hover {
|
72
|
+
color: #ee7600;
|
73
|
+
}
|
74
|
+
|
75
|
+
@media (max-width: 767px) {
|
76
|
+
.navbar-default .navbar-nav .open .dropdown-menu > li > a {
|
77
|
+
color: #111111;
|
78
|
+
}
|
79
|
+
.navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
|
80
|
+
.navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
|
81
|
+
color: #ee7600;
|
82
|
+
}
|
83
|
+
.navbar-default .navbar-nav .open .dropdown-menu > .active > a,
|
84
|
+
.navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,
|
85
|
+
.navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
|
86
|
+
color: #ee7600;
|
87
|
+
background-color: #ffffff;
|
88
|
+
}
|
89
|
+
}
|
90
|
+
|
91
|
+
//custom tom
|
92
|
+
|
93
|
+
ul.navbar-nav a:hover {
|
94
|
+
text-decoration: underline;
|
95
|
+
}
|
96
|
+
|
97
|
+
img.navbar-logo {
|
98
|
+
max-height: 50px;
|
99
|
+
}
|
100
|
+
.navbar-brand {
|
101
|
+
margin-right: 30px;
|
102
|
+
padding-top: 10px;
|
103
|
+
}
|
104
|
+
.navbar {
|
105
|
+
border-bottom: 1px solid #dedede;
|
106
|
+
font-size: 16px;
|
107
|
+
}
|
108
|
+
|
109
|
+
@media (min-width: 768px) {
|
110
|
+
.navbar-nav > li {
|
111
|
+
padding-top: 10px;
|
112
|
+
}
|
113
|
+
}
|
114
|
+
|
115
|
+
.navbar-default .navbar-nav>li>a {
|
116
|
+
font-size: 16px;
|
117
|
+
font-family: Arial;
|
118
|
+
}
|
119
|
+
|
120
|
+
.sidebarToggle.fa.fa-columns.fa-2x {
|
121
|
+
}
|
122
|
+
|
123
|
+
ul.nav.navbar-nav li a {
|
124
|
+
white-space: nowrap;
|
125
|
+
margin-right: 7px;
|
126
|
+
}
|
127
|
+
|
128
|
+
/* search area */
|
129
|
+
|
130
|
+
#search-topnav-container {
|
131
|
+
margin-top: -26px;
|
132
|
+
}
|
133
|
+
|
134
|
+
#search-demo-container ul#results-container {
|
135
|
+
list-style: none;
|
136
|
+
font-size: 12px;
|
137
|
+
background-color: white;
|
138
|
+
position: absolute;
|
139
|
+
top: 40px;
|
140
|
+
left: 20px;
|
141
|
+
z-index: -1;
|
142
|
+
width: 223px;
|
143
|
+
border-left: 1px solid #dedede;
|
144
|
+
box-shadow: 2px 3px 2px #dedede;
|
145
|
+
}
|
146
|
+
ul#results-container a {
|
147
|
+
background-color: transparent;
|
148
|
+
}
|
149
|
+
ul#results-container a:hover {
|
150
|
+
color: black;
|
151
|
+
}
|
152
|
+
#search-demo-container a:hover {
|
153
|
+
color: black;
|
154
|
+
}
|
155
|
+
#search-input {
|
156
|
+
width: 20em;
|
157
|
+
font-size: 0.8em;
|
158
|
+
-webkit-box-sizing: border-box;
|
159
|
+
-moz-box-sizing: border-box;
|
160
|
+
box-sizing: border-box;
|
161
|
+
float: right;
|
162
|
+
margin-top:10px;
|
163
|
+
}
|
164
|
+
#search-results {
|
165
|
+
margin-top: 30px;
|
166
|
+
}
|
167
|
+
div.searchFormDisplay {
|
168
|
+
display: none;
|
169
|
+
}
|
170
|
+
|
171
|
+
.navbar-brand {
|
172
|
+
margin-right: 50px;
|
173
|
+
}
|
174
|
+
|
175
|
+
.navbar-brand-text {
|
176
|
+
margin-top: 15px;
|
177
|
+
font-size: 25px;
|
178
|
+
margin-right: 50px;
|
179
|
+
}
|
180
|
+
|
181
|
+
a.navbarHomeLink {
|
182
|
+
color: black;
|
183
|
+
text-decoration: none;
|
184
|
+
}
|
185
|
+
|
186
|
+
i.fa.fa-home.fa-lg {
|
187
|
+
padding-right: 10px;
|
188
|
+
vertical-align: 0%;
|
189
|
+
}
|
190
|
+
/* end search */
|
191
|
+
|
192
|
+
/*set navbar breakpoint so that it converts to hamburger earlier */
|
193
|
+
//
|
194
|
+
// @media (max-width: 900px) {
|
195
|
+
// .navbar-header {
|
196
|
+
// float: none;
|
197
|
+
// }
|
198
|
+
// .navbar-left,.navbar-right {
|
199
|
+
// float: none !important;
|
200
|
+
// }
|
201
|
+
// .navbar-toggle {
|
202
|
+
// display: block;
|
203
|
+
// }
|
204
|
+
// .navbar-collapse {
|
205
|
+
// border-top: 1px solid transparent;
|
206
|
+
// box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
|
207
|
+
// }
|
208
|
+
// .navbar-fixed-top {
|
209
|
+
// top: 0;
|
210
|
+
// border-width: 0 0 1px;
|
211
|
+
// }
|
212
|
+
// .navbar-collapse.collapse {
|
213
|
+
// display: none!important;
|
214
|
+
// }
|
215
|
+
// .navbar-nav {
|
216
|
+
// float: none!important;
|
217
|
+
// margin-top: 7.5px;
|
218
|
+
// }
|
219
|
+
// .navbar-nav>li {
|
220
|
+
// float: none;
|
221
|
+
// }
|
222
|
+
// .navbar-nav>li>a {
|
223
|
+
// padding-top: 10px;
|
224
|
+
// padding-bottom: 10px;
|
225
|
+
// }
|
226
|
+
// .collapse.in{
|
227
|
+
// display:block !important;
|
228
|
+
// }
|
229
|
+
// }
|
230
|
+
|
231
|
+
/* end earlier breakpoint code */
|
232
|
+
|
233
|
+
/* Feedback button */
|
234
|
+
|
235
|
+
i.fa.fa-envelope-o.topnavfeedback {
|
236
|
+
padding-right: 8px;
|
237
|
+
}
|
data/_sass/navtabs.scss
ADDED
@@ -0,0 +1,165 @@
|
|
1
|
+
/*nav tabs */
|
2
|
+
|
3
|
+
.nav-tabs > li.active > a,
|
4
|
+
.nav-tabs > li.active > a:hover,
|
5
|
+
.nav-tabs > li.active > a:focus {
|
6
|
+
background-color: #248ec2;
|
7
|
+
color: white;
|
8
|
+
}
|
9
|
+
.nav-tabs {
|
10
|
+
border-bottom: 1px solid #ddd;
|
11
|
+
}
|
12
|
+
.nav-tabs>li {
|
13
|
+
float: left;
|
14
|
+
margin-bottom: -1px;
|
15
|
+
}
|
16
|
+
.nav-tabs>li>a {
|
17
|
+
margin-right: 2px;
|
18
|
+
line-height: 1.42857143;
|
19
|
+
border: 1px solid transparent;
|
20
|
+
border-radius: 4px 4px 0 0;
|
21
|
+
}
|
22
|
+
.nav-tabs>li>a:hover {
|
23
|
+
border-color: #eee #eee #ddd;
|
24
|
+
}
|
25
|
+
.nav-tabs>li.active>a,
|
26
|
+
.nav-tabs>li.active>a:hover,
|
27
|
+
.nav-tabs>li.active>a:focus {
|
28
|
+
color: #555;
|
29
|
+
background-color: #fff;
|
30
|
+
border: 1px solid #ddd;
|
31
|
+
border-bottom-color: transparent;
|
32
|
+
cursor: default;
|
33
|
+
}
|
34
|
+
.nav-tabs.nav-justified {
|
35
|
+
width: 100%;
|
36
|
+
border-bottom: 0;
|
37
|
+
}
|
38
|
+
.nav-tabs.nav-justified>li {
|
39
|
+
float: none;
|
40
|
+
}
|
41
|
+
.nav-tabs.nav-justified>li>a {
|
42
|
+
text-align: center;
|
43
|
+
margin-bottom: 5px;
|
44
|
+
}
|
45
|
+
.nav-tabs.nav-justified>.dropdown .dropdown-menu {
|
46
|
+
top: auto;
|
47
|
+
left: auto;
|
48
|
+
}
|
49
|
+
@media (min-width: 768px) {
|
50
|
+
.nav-tabs.nav-justified>li {
|
51
|
+
display: table-cell;
|
52
|
+
width: 1%
|
53
|
+
}
|
54
|
+
.nav-tabs.nav-justified>li>a {
|
55
|
+
margin-bottom: 0;
|
56
|
+
}
|
57
|
+
}
|
58
|
+
.nav-tabs.nav-justified>li>a {
|
59
|
+
margin-right: 0;
|
60
|
+
border-radius: 4px;
|
61
|
+
}
|
62
|
+
.nav-tabs.nav-justified>.active>a,
|
63
|
+
.nav-tabs.nav-justified>.active>a:hover,
|
64
|
+
.nav-tabs.nav-justified>.active>a:focus {
|
65
|
+
border: 1px solid #ddd;
|
66
|
+
}
|
67
|
+
@media (min-width: 768px) {
|
68
|
+
.nav-tabs.nav-justified>li>a {
|
69
|
+
border-bottom: 1px solid #ddd;
|
70
|
+
border-radius: 4px 4px 0 0;
|
71
|
+
}
|
72
|
+
.nav-tabs.nav-justified>.active>a,
|
73
|
+
.nav-tabs.nav-justified>.active>a:hover,
|
74
|
+
.nav-tabs.nav-justified>.active>a:focus {
|
75
|
+
border-bottom-color: #fff;
|
76
|
+
}
|
77
|
+
}
|
78
|
+
@media (min-width: 768px) {
|
79
|
+
.nav-justified>li {
|
80
|
+
display: table-cell;
|
81
|
+
width: 1%
|
82
|
+
}
|
83
|
+
.nav-justified>li>a {
|
84
|
+
margin-bottom: 0;
|
85
|
+
}
|
86
|
+
}
|
87
|
+
.nav-tabs-justified {
|
88
|
+
border-bottom: 0;
|
89
|
+
}
|
90
|
+
.nav-tabs-justified>li>a {
|
91
|
+
margin-right: 0;
|
92
|
+
border-radius: 4px;
|
93
|
+
}
|
94
|
+
.nav-tabs-justified>.active>a,
|
95
|
+
.nav-tabs-justified>.active>a:hover,
|
96
|
+
.nav-tabs-justified>.active>a:focus {
|
97
|
+
border: 1px solid #ddd;
|
98
|
+
}
|
99
|
+
@media (min-width: 768px) {
|
100
|
+
.nav-tabs-justified>li>a {
|
101
|
+
border-bottom: 1px solid #ddd;
|
102
|
+
border-radius: 4px 4px 0 0;
|
103
|
+
}
|
104
|
+
.nav-tabs-justified>.active>a,
|
105
|
+
.nav-tabs-justified>.active>a:hover,
|
106
|
+
.nav-tabs-justified>.active>a:focus {
|
107
|
+
border-bottom-color: #fff;
|
108
|
+
}
|
109
|
+
}
|
110
|
+
.tab-content>.tab-pane {
|
111
|
+
display: none;
|
112
|
+
}
|
113
|
+
.tab-content>.active {
|
114
|
+
display: block;
|
115
|
+
}
|
116
|
+
.nav-tabs .dropdown-menu {
|
117
|
+
margin-top: -1px;
|
118
|
+
border-top-right-radius: 0;
|
119
|
+
border-top-left-radius: 0;
|
120
|
+
}
|
121
|
+
.nav-tabs>li.active>a,
|
122
|
+
.nav-tabs>li.active>a:focus,
|
123
|
+
.nav-tabs>li.active>a:hover {
|
124
|
+
background-color: #EEEEEE;
|
125
|
+
}
|
126
|
+
.nav-tabs>li>a[data-toggle="tab"] {
|
127
|
+
border-radius: 4px 4px 0 0;
|
128
|
+
background-color: white;
|
129
|
+
border: 1px solid #dedede;
|
130
|
+
border-bottom: none;
|
131
|
+
}
|
132
|
+
li a[data-toggle="tab"] {
|
133
|
+
margin-bottom: -15px;
|
134
|
+
}
|
135
|
+
a[data-toggle="tab"]:hover {
|
136
|
+
color: black;
|
137
|
+
}
|
138
|
+
.tab-content {
|
139
|
+
margin-left: 0px;
|
140
|
+
}
|
141
|
+
.nav-tabs li {
|
142
|
+
padding-right: 5px;
|
143
|
+
padding-left: 5px;
|
144
|
+
}
|
145
|
+
.nav-tabs > li.active > a,
|
146
|
+
.nav-tabs > li.active > a:hover,
|
147
|
+
.nav-tabs > li.active > a:focus {
|
148
|
+
background-color: #fa9500;
|
149
|
+
color: white;
|
150
|
+
}
|
151
|
+
ul#profileTabs {
|
152
|
+
margin-left: 0px;
|
153
|
+
padding-bottom: 7px;
|
154
|
+
}
|
155
|
+
.subheading {
|
156
|
+
font-size: 20px;
|
157
|
+
line-height: 26px;
|
158
|
+
margin-bottom: 16px;
|
159
|
+
margin-top: 30px;
|
160
|
+
}
|
161
|
+
|
162
|
+
.tab-content .tab-pane.active {
|
163
|
+
padding: 15px;
|
164
|
+
border: 1px solid #dedede;
|
165
|
+
}
|