techbubble 0.1.0
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.txt +21 -0
- data/README.md +48 -0
- data/_includes/archive.html +15 -0
- data/_includes/callout.html +1 -0
- data/_includes/custom/getting_started_series.html +19 -0
- data/_includes/custom/getting_started_series_next.html +10 -0
- data/_includes/custom/series_acme.html +19 -0
- data/_includes/custom/series_acme_next.html +30 -0
- data/_includes/custom/sidebarconfigs.html +36 -0
- data/_includes/custom/usermap.html +14 -0
- data/_includes/custom/usermapcomplex.html +91 -0
- data/_includes/disqus.html +16 -0
- data/_includes/feedback.html +1 -0
- data/_includes/footer.html +9 -0
- data/_includes/google_analytics.html +6 -0
- data/_includes/head.html +36 -0
- data/_includes/head_print.html +33 -0
- data/_includes/image.html +1 -0
- data/_includes/important.html +1 -0
- data/_includes/initialize_shuffle.html +130 -0
- data/_includes/inline_image.html +1 -0
- data/_includes/links.html +44 -0
- data/_includes/note.html +1 -0
- data/_includes/sidebar.html +56 -0
- data/_includes/taglogic.html +32 -0
- data/_includes/tip.html +1 -0
- data/_includes/toc.html +21 -0
- data/_includes/topnav.html +75 -0
- data/_includes/warning.html +1 -0
- data/_layouts/default.html +80 -0
- data/_layouts/default_print.html +25 -0
- data/_layouts/none.html +3 -0
- data/_layouts/page.html +70 -0
- data/_layouts/page_print.html +15 -0
- data/_layouts/post.html +41 -0
- data/_sass/bootstrap.min.css +5 -0
- data/_sass/customstyles.css +1181 -0
- data/_sass/font-awesome.min.css +4 -0
- data/_sass/fonts/FontAwesome.otf +0 -0
- data/_sass/fonts/fontawesome-webfont.eot +0 -0
- data/_sass/fonts/fontawesome-webfont.svg +565 -0
- data/_sass/fonts/fontawesome-webfont.ttf +0 -0
- data/_sass/fonts/fontawesome-webfont.woff +0 -0
- data/_sass/fonts/fontawesome-webfont.woff2 +0 -0
- data/_sass/lavish-bootstrap.css +5898 -0
- data/_sass/modern-business.css +93 -0
- data/_sass/printstyles.css +160 -0
- data/_sass/syntax.css +60 -0
- data/_sass/theme-blue.css +102 -0
- data/_sass/theme-green.css +99 -0
- data/assets/js/customscripts.js +55 -0
- data/assets/js/jekyll-search.js +1 -0
- data/assets/js/jquery.ba-throttle-debounce.min.js +9 -0
- data/assets/js/jquery.localScroll.min.js +7 -0
- data/assets/js/jquery.navgoco.min.js +8 -0
- data/assets/js/jquery.scrollTo.min.js +7 -0
- data/assets/js/jquery.shuffle.min.js +1588 -0
- data/assets/js/mydoc_scroll.html +240 -0
- data/assets/js/toc.js +82 -0
- metadata +145 -0
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* Start Bootstrap - Modern Business HTML Template (http://startbootstrap.com)
|
|
3
|
+
* Code licensed under the Apache License v2.0.
|
|
4
|
+
* For details, see http://www.apache.org/licenses/LICENSE-2.0.
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
/* Global Styles */
|
|
8
|
+
|
|
9
|
+
html,
|
|
10
|
+
body {
|
|
11
|
+
height: 100%;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
body {
|
|
15
|
+
padding-top: 50px; /* Required padding for .navbar-fixed-top. Remove if using .navbar-static-top. Change if height of navigation changes. */
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.img-portfolio {
|
|
19
|
+
margin-bottom: 30px;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.img-hover:hover {
|
|
23
|
+
opacity: 0.8;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
/* Home Page Carousel */
|
|
27
|
+
|
|
28
|
+
header.carousel {
|
|
29
|
+
height: 50%;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
header.carousel .item,
|
|
33
|
+
header.carousel .item.active,
|
|
34
|
+
header.carousel .carousel-inner {
|
|
35
|
+
height: 100%;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
header.carousel .fill {
|
|
39
|
+
width: 100%;
|
|
40
|
+
height: 100%;
|
|
41
|
+
background-position: center;
|
|
42
|
+
background-size: cover;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
/* 404 Page Styles */
|
|
46
|
+
|
|
47
|
+
.error-404 {
|
|
48
|
+
font-size: 100px;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
/* Pricing Page Styles */
|
|
52
|
+
|
|
53
|
+
.price {
|
|
54
|
+
display: block;
|
|
55
|
+
font-size: 50px;
|
|
56
|
+
line-height: 50px;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
.price sup {
|
|
60
|
+
top: -20px;
|
|
61
|
+
left: 2px;
|
|
62
|
+
font-size: 20px;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
.period {
|
|
66
|
+
display: block;
|
|
67
|
+
font-style: italic;
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
/* Footer Styles */
|
|
71
|
+
|
|
72
|
+
footer {
|
|
73
|
+
margin: 50px 0;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
/* Responsive Styles */
|
|
77
|
+
|
|
78
|
+
@media(max-width:991px) {
|
|
79
|
+
.client-img,
|
|
80
|
+
.img-related {
|
|
81
|
+
margin-bottom: 30px;
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
@media(max-width:767px) {
|
|
86
|
+
.img-portfolio {
|
|
87
|
+
margin-bottom: 15px;
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
header.carousel .carousel {
|
|
91
|
+
height: 70%;
|
|
92
|
+
}
|
|
93
|
+
}
|
|
@@ -0,0 +1,160 @@
|
|
|
1
|
+
|
|
2
|
+
/*body.print .container {max-width: 650px;}*/
|
|
3
|
+
|
|
4
|
+
body {
|
|
5
|
+
font-size:14px;
|
|
6
|
+
}
|
|
7
|
+
.nav ul li a {border-top:0px; background-color:transparent; color: #808080; }
|
|
8
|
+
#navig a[href] {color: #595959 !important;}
|
|
9
|
+
table .table {max-width:650px;}
|
|
10
|
+
|
|
11
|
+
#navig li.sectionHead {font-weight: bold; font-size: 18px; color: #595959 !important; }
|
|
12
|
+
#navig li {font-weight: normal; }
|
|
13
|
+
|
|
14
|
+
#navig a[href]::after { content: leader(".") target-counter(attr(href), page); }
|
|
15
|
+
|
|
16
|
+
a[href]::after {
|
|
17
|
+
content: " (page " target-counter(attr(href), page) ")"
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
a[href^="http:"]::after, a[href^="https:"]::after {
|
|
21
|
+
content: " (" attr(href) ")";
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
a[href] {
|
|
25
|
+
color: blue !important;
|
|
26
|
+
}
|
|
27
|
+
a[href*="mailto"]::after, a[data-toggle="tooltip"]::after, a[href].noCrossRef::after {
|
|
28
|
+
content: "";
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
@page {
|
|
33
|
+
margin: 60pt 90pt 60pt 90pt;
|
|
34
|
+
font-family: sans-serif;
|
|
35
|
+
font-style:none;
|
|
36
|
+
color: gray;
|
|
37
|
+
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.printTitle {
|
|
41
|
+
line-height:30pt;
|
|
42
|
+
font-size:27pt;
|
|
43
|
+
font-weight: bold;
|
|
44
|
+
letter-spacing: -.5px;
|
|
45
|
+
margin-bottom:25px;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
.printSubtitle {
|
|
49
|
+
font-size: 19pt;
|
|
50
|
+
color: #cccccc !important;
|
|
51
|
+
front-family: "Grotesque MT Light";
|
|
52
|
+
line-height: 22pt;
|
|
53
|
+
letter-spacing: -.5px;
|
|
54
|
+
margin-bottom:20px;
|
|
55
|
+
}
|
|
56
|
+
.printTitleArea hr {
|
|
57
|
+
color: #999999 !important;
|
|
58
|
+
height: 2px;
|
|
59
|
+
width: 100%;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
.printTitleImage {
|
|
63
|
+
max-width:300px;
|
|
64
|
+
margin-bottom:200px;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
|
|
68
|
+
.printTitleImage {
|
|
69
|
+
max-width: 250px;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
#navig {
|
|
73
|
+
/*page-break-before: always;*/
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
.copyrightBoilerplate {
|
|
77
|
+
page-break-before:always;
|
|
78
|
+
font-size:14px;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
.lastGeneratedDate {
|
|
82
|
+
font-style: italic;
|
|
83
|
+
font-size:14px;
|
|
84
|
+
color: gray;
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
.alert a {
|
|
88
|
+
text-decoration: none !important;
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
|
|
92
|
+
body.title { page: title }
|
|
93
|
+
|
|
94
|
+
@page title {
|
|
95
|
+
@top-left {
|
|
96
|
+
content: " ";
|
|
97
|
+
}
|
|
98
|
+
@top-right {
|
|
99
|
+
content: " "
|
|
100
|
+
}
|
|
101
|
+
@bottom-right {
|
|
102
|
+
content: " ";
|
|
103
|
+
}
|
|
104
|
+
@bottom-left {
|
|
105
|
+
content: " ";
|
|
106
|
+
}
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
body.frontmatter { page: frontmatter }
|
|
110
|
+
body.frontmatter {counter-reset: page 1}
|
|
111
|
+
|
|
112
|
+
|
|
113
|
+
@page frontmatter {
|
|
114
|
+
@top-left {
|
|
115
|
+
content: prince-script(guideName);
|
|
116
|
+
}
|
|
117
|
+
@top-right {
|
|
118
|
+
content: prince-script(datestamp);
|
|
119
|
+
}
|
|
120
|
+
@bottom-right {
|
|
121
|
+
content: counter(page, lower-roman);
|
|
122
|
+
}
|
|
123
|
+
@bottom-left {
|
|
124
|
+
content: "youremail@domain.com"; }
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
body.first_page {counter-reset: page 1}
|
|
128
|
+
|
|
129
|
+
h1 { string-set: doctitle content() }
|
|
130
|
+
|
|
131
|
+
@page {
|
|
132
|
+
@top-left {
|
|
133
|
+
content: string(doctitle);
|
|
134
|
+
font-size: 11px;
|
|
135
|
+
font-style: italic;
|
|
136
|
+
}
|
|
137
|
+
@top-right {
|
|
138
|
+
content: prince-script(datestamp);
|
|
139
|
+
font-size: 11px;
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
@bottom-right {
|
|
143
|
+
content: "Page " counter(page);
|
|
144
|
+
font-size: 11px;
|
|
145
|
+
}
|
|
146
|
+
@bottom-left {
|
|
147
|
+
content: prince-script(guideName);
|
|
148
|
+
font-size: 11px;
|
|
149
|
+
}
|
|
150
|
+
}
|
|
151
|
+
.alert {
|
|
152
|
+
background-color: #fafafa !important;
|
|
153
|
+
border-color: #dedede !important;
|
|
154
|
+
color: black;
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
pre {
|
|
158
|
+
background-color: #fafafa;
|
|
159
|
+
}
|
|
160
|
+
|
data/_sass/syntax.css
ADDED
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
.highlight { background: #ffffff; }
|
|
2
|
+
.highlight .c { color: #999988; font-style: italic } /* Comment */
|
|
3
|
+
.highlight .err { color: #a61717; background-color: #e3d2d2 } /* Error */
|
|
4
|
+
.highlight .k { font-weight: bold } /* Keyword */
|
|
5
|
+
.highlight .o { font-weight: bold } /* Operator */
|
|
6
|
+
.highlight .cm { color: #999988; font-style: italic } /* Comment.Multiline */
|
|
7
|
+
.highlight .cp { color: #999999; font-weight: bold } /* Comment.Preproc */
|
|
8
|
+
.highlight .c1 { color: #999988; font-style: italic } /* Comment.Single */
|
|
9
|
+
.highlight .cs { color: #999999; font-weight: bold; font-style: italic } /* Comment.Special */
|
|
10
|
+
.highlight .gd { color: #000000; background-color: #ffdddd } /* Generic.Deleted */
|
|
11
|
+
.highlight .gd .x { color: #000000; background-color: #ffaaaa } /* Generic.Deleted.Specific */
|
|
12
|
+
.highlight .ge { font-style: italic } /* Generic.Emph */
|
|
13
|
+
.highlight .gr { color: #aa0000 } /* Generic.Error */
|
|
14
|
+
.highlight .gh { color: #999999 } /* Generic.Heading */
|
|
15
|
+
.highlight .gi { color: #000000; background-color: #ddffdd } /* Generic.Inserted */
|
|
16
|
+
.highlight .gi .x { color: #000000; background-color: #aaffaa } /* Generic.Inserted.Specific */
|
|
17
|
+
.highlight .go { color: #888888 } /* Generic.Output */
|
|
18
|
+
.highlight .gp { color: #555555 } /* Generic.Prompt */
|
|
19
|
+
.highlight .gs { font-weight: bold } /* Generic.Strong */
|
|
20
|
+
.highlight .gu { color: #aaaaaa } /* Generic.Subheading */
|
|
21
|
+
.highlight .gt { color: #aa0000 } /* Generic.Traceback */
|
|
22
|
+
.highlight .kc { font-weight: bold } /* Keyword.Constant */
|
|
23
|
+
.highlight .kd { font-weight: bold } /* Keyword.Declaration */
|
|
24
|
+
.highlight .kp { font-weight: bold } /* Keyword.Pseudo */
|
|
25
|
+
.highlight .kr { font-weight: bold } /* Keyword.Reserved */
|
|
26
|
+
.highlight .kt { color: #445588; font-weight: bold } /* Keyword.Type */
|
|
27
|
+
.highlight .m { color: #009999 } /* Literal.Number */
|
|
28
|
+
.highlight .s { color: #d14 } /* Literal.String */
|
|
29
|
+
.highlight .na { color: #008080 } /* Name.Attribute */
|
|
30
|
+
.highlight .nb { color: #0086B3 } /* Name.Builtin */
|
|
31
|
+
.highlight .nc { color: #445588; font-weight: bold } /* Name.Class */
|
|
32
|
+
.highlight .no { color: #008080 } /* Name.Constant */
|
|
33
|
+
.highlight .ni { color: #800080 } /* Name.Entity */
|
|
34
|
+
.highlight .ne { color: #990000; font-weight: bold } /* Name.Exception */
|
|
35
|
+
.highlight .nf { color: #990000; font-weight: bold } /* Name.Function */
|
|
36
|
+
.highlight .nn { color: #555555 } /* Name.Namespace */
|
|
37
|
+
.highlight .nt { color: #000080 } /* Name.Tag */
|
|
38
|
+
.highlight .nv { color: #008080 } /* Name.Variable */
|
|
39
|
+
.highlight .ow { font-weight: bold } /* Operator.Word */
|
|
40
|
+
.highlight .w { color: #bbbbbb } /* Text.Whitespace */
|
|
41
|
+
.highlight .mf { color: #009999 } /* Literal.Number.Float */
|
|
42
|
+
.highlight .mh { color: #009999 } /* Literal.Number.Hex */
|
|
43
|
+
.highlight .mi { color: #009999 } /* Literal.Number.Integer */
|
|
44
|
+
.highlight .mo { color: #009999 } /* Literal.Number.Oct */
|
|
45
|
+
.highlight .sb { color: #d14 } /* Literal.String.Backtick */
|
|
46
|
+
.highlight .sc { color: #d14 } /* Literal.String.Char */
|
|
47
|
+
.highlight .sd { color: #d14 } /* Literal.String.Doc */
|
|
48
|
+
.highlight .s2 { color: #d14 } /* Literal.String.Double */
|
|
49
|
+
.highlight .se { color: #d14 } /* Literal.String.Escape */
|
|
50
|
+
.highlight .sh { color: #d14 } /* Literal.String.Heredoc */
|
|
51
|
+
.highlight .si { color: #d14 } /* Literal.String.Interpol */
|
|
52
|
+
.highlight .sx { color: #d14 } /* Literal.String.Other */
|
|
53
|
+
.highlight .sr { color: #009926 } /* Literal.String.Regex */
|
|
54
|
+
.highlight .s1 { color: #d14 } /* Literal.String.Single */
|
|
55
|
+
.highlight .ss { color: #990073 } /* Literal.String.Symbol */
|
|
56
|
+
.highlight .bp { color: #999999 } /* Name.Builtin.Pseudo */
|
|
57
|
+
.highlight .vc { color: #008080 } /* Name.Variable.Class */
|
|
58
|
+
.highlight .vg { color: #008080 } /* Name.Variable.Global */
|
|
59
|
+
.highlight .vi { color: #008080 } /* Name.Variable.Instance */
|
|
60
|
+
.highlight .il { color: #009999 } /* Literal.Number.Integer.Long */
|
|
@@ -0,0 +1,102 @@
|
|
|
1
|
+
.summary {
|
|
2
|
+
color: #808080;
|
|
3
|
+
border-left: 5px solid #379bb5;
|
|
4
|
+
font-size:16px;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
h3 {color: #379bb5; }
|
|
8
|
+
h4 {color: #808080; }
|
|
9
|
+
|
|
10
|
+
.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
|
|
11
|
+
background-color: #248ec2;
|
|
12
|
+
color: white;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.nav > li.active > a {
|
|
16
|
+
background-color: #347DBE;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.nav > li > a:hover {
|
|
20
|
+
background-color: #248ec2;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
div.navbar-collapse .dropdown-menu > li > a:hover {
|
|
24
|
+
background-color: #347DBE;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.nav li.thirdlevel > a {
|
|
28
|
+
background-color: #FAFAFA !important;
|
|
29
|
+
color: #248EC2;
|
|
30
|
+
font-weight: bold;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
a[data-toggle="tooltip"] {
|
|
34
|
+
color: #248EC2;
|
|
35
|
+
font-style: italic;
|
|
36
|
+
cursor: default;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
.navbar-inverse {
|
|
40
|
+
background-color: ;
|
|
41
|
+
border-color: #248ec2;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
.navbar-inverse .navbar-nav > .open > a, .navbar-inverse .navbar-nav > .open > a:hover, .navbar-inverse .navbar-nav > .open > a:focus {
|
|
45
|
+
color: #248ec2;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
.navbar-inverse .navbar-nav > .open > a, .navbar-inverse .navbar-nav > .open > a:hover, .navbar-inverse .navbar-nav > .open > a:focus {
|
|
49
|
+
background-color: ;
|
|
50
|
+
color: #ffffff;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
/* not sure if using this ...*/
|
|
54
|
+
.navbar-inverse .navbar-collapse, .navbar-inverse .navbar-form {
|
|
55
|
+
border-color: #248ec2 !important;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
.btn-primary {
|
|
59
|
+
color: #ffffff;
|
|
60
|
+
background-color: #347DBE;
|
|
61
|
+
border-color: #347DBE;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
.navbar-inverse .navbar-nav > .active > a, .navbar-inverse .navbar-nav > .active > a:hover, .navbar-inverse .navbar-nav > .active > a:focus {
|
|
65
|
+
background-color: #347DBE;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
.btn-primary:hover,
|
|
69
|
+
.btn-primary:focus,
|
|
70
|
+
.btn-primary:active,
|
|
71
|
+
.btn-primary.active,
|
|
72
|
+
.open .dropdown-toggle.btn-primary {
|
|
73
|
+
background-color: #248ec2;
|
|
74
|
+
border-color: #347DBE;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
.printTitle {
|
|
78
|
+
color: #015CAE !important;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
body.print h1 {color: #015CAE !important; font-size:28px !important;}
|
|
82
|
+
body.print h2 {color: #595959 !important; font-size:20px !important;}
|
|
83
|
+
body.print h3 {color: #E50E51 !important; font-size:14px !important;}
|
|
84
|
+
body.print h4 {color: #679DCE !important; font-size:14px; font-style: italic !important;}
|
|
85
|
+
|
|
86
|
+
.anchorjs-link:hover {
|
|
87
|
+
color: #216f9b;
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
div.sidebarTitle {
|
|
91
|
+
color: #015CAE;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
li.sidebarTitle {
|
|
95
|
+
margin-top:40px;
|
|
96
|
+
font-weight:normal;
|
|
97
|
+
font-size:130%;
|
|
98
|
+
color: #248ec2;
|
|
99
|
+
margin-bottom:10px;
|
|
100
|
+
margin-left: 5px;
|
|
101
|
+
|
|
102
|
+
}
|
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
.summary {
|
|
2
|
+
color: #808080;
|
|
3
|
+
border-left: 5px solid #E50E51;
|
|
4
|
+
font-size:16px;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
h3 {color: #E50E51; }
|
|
9
|
+
h4 {color: #808080; }
|
|
10
|
+
|
|
11
|
+
.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
|
|
12
|
+
background-color: #248ec2;
|
|
13
|
+
color: white;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
.nav > li.active > a {
|
|
17
|
+
background-color: #72ac4a;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.nav > li > a:hover {
|
|
21
|
+
background-color: #72ac4a;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
div.navbar-collapse .dropdown-menu > li > a:hover {
|
|
25
|
+
background-color: #72ac4a;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
.nav li.thirdlevel > a {
|
|
29
|
+
background-color: #FAFAFA !important;
|
|
30
|
+
color: #72ac4a;
|
|
31
|
+
font-weight: bold;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
a[data-toggle="tooltip"] {
|
|
35
|
+
color: #649345;
|
|
36
|
+
font-style: italic;
|
|
37
|
+
cursor: default;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.navbar-inverse {
|
|
41
|
+
background-color: #72ac4a;
|
|
42
|
+
border-color: #5b893c;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
.navbar-inverse .navbar-nav > .open > a, .navbar-inverse .navbar-nav > .open > a:hover, .navbar-inverse .navbar-nav > .open > a:focus {
|
|
46
|
+
color: #5b893c;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
.navbar-inverse .navbar-nav > .open > a, .navbar-inverse .navbar-nav > .open > a:hover, .navbar-inverse .navbar-nav > .open > a:focus {
|
|
50
|
+
background-color: #5b893c;
|
|
51
|
+
color: #ffffff;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
/* not sure if using this ...*/
|
|
55
|
+
.navbar-inverse .navbar-collapse, .navbar-inverse .navbar-form {
|
|
56
|
+
border-color: #72ac4a !important;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
.btn-primary {
|
|
60
|
+
color: #ffffff;
|
|
61
|
+
background-color: #5b893c;
|
|
62
|
+
border-color: #5b893c;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
.btn-primary:hover,
|
|
66
|
+
.btn-primary:focus,
|
|
67
|
+
.btn-primary:active,
|
|
68
|
+
.btn-primary.active,
|
|
69
|
+
.open .dropdown-toggle.btn-primary {
|
|
70
|
+
background-color: #72ac4a;
|
|
71
|
+
border-color: #5b893c;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
.printTitle {
|
|
75
|
+
color: #5b893c !important;
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
body.print h1 {color: #5b893c !important; font-size:28px;}
|
|
79
|
+
body.print h2 {color: #595959 !important; font-size:24px;}
|
|
80
|
+
body.print h3 {color: #E50E51 !important; font-size:14px;}
|
|
81
|
+
body.print h4 {color: #679DCE !important; font-size:14px; font-style: italic;}
|
|
82
|
+
|
|
83
|
+
.anchorjs-link:hover {
|
|
84
|
+
color: #4f7233;
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
div.sidebarTitle {
|
|
88
|
+
color: #E50E51;
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
li.sidebarTitle {
|
|
92
|
+
margin-top:40px;
|
|
93
|
+
font-weight:normal;
|
|
94
|
+
font-size:130%;
|
|
95
|
+
color: #ED1951;
|
|
96
|
+
margin-bottom:10px;
|
|
97
|
+
margin-left: 5px;
|
|
98
|
+
|
|
99
|
+
}
|