sanskrit-documentation-theme 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (66) hide show
  1. checksums.yaml +7 -0
  2. data/README.md +79 -0
  3. data/_includes/archive.html +15 -0
  4. data/_includes/callout.html +1 -0
  5. data/_includes/disqus.html +17 -0
  6. data/_includes/feedback.html +13 -0
  7. data/_includes/footer.html +9 -0
  8. data/_includes/functions/recursive_item_to_list.html +29 -0
  9. data/_includes/google_analytics.html +6 -0
  10. data/_includes/head.html +45 -0
  11. data/_includes/head_print.html +28 -0
  12. data/_includes/image.html +1 -0
  13. data/_includes/important.html +1 -0
  14. data/_includes/initialize_shuffle.html +130 -0
  15. data/_includes/inline_image.html +1 -0
  16. data/_includes/note.html +1 -0
  17. data/_includes/sidebar.html +16 -0
  18. data/_includes/taglogic.html +32 -0
  19. data/_includes/tip.html +1 -0
  20. data/_includes/toc.html +38 -0
  21. data/_includes/topnav.html +62 -0
  22. data/_includes/warning.html +1 -0
  23. data/_layouts/default.html +121 -0
  24. data/_layouts/default_print.html +25 -0
  25. data/_layouts/none.html +3 -0
  26. data/_layouts/page.html +68 -0
  27. data/_layouts/page_print.html +15 -0
  28. data/_layouts/post.html +39 -0
  29. data/assets/blog/archive.html +33 -0
  30. data/assets/blog/index.html +28 -0
  31. data/assets/css/boxshadowproperties.css +24 -0
  32. data/assets/css/class-styles-general.css +281 -0
  33. data/assets/css/device-specific.css +92 -0
  34. data/assets/css/element-styles-general.css +229 -0
  35. data/assets/css/font-awesome.min.css +4 -0
  36. data/assets/css/fonts.css +13 -0
  37. data/assets/css/modern-business.css +89 -0
  38. data/assets/css/navbar-toc.css +203 -0
  39. data/assets/css/printstyles.css +159 -0
  40. data/assets/css/theme-blue.css +121 -0
  41. data/assets/feed.xml +32 -0
  42. data/assets/fonts/FontAwesome.otf +0 -0
  43. data/assets/fonts/fontawesome-webfont.eot +0 -0
  44. data/assets/fonts/fontawesome-webfont.svg +520 -0
  45. data/assets/fonts/fontawesome-webfont.ttf +0 -0
  46. data/assets/fonts/fontawesome-webfont.woff +0 -0
  47. data/assets/fonts/glyphicons-halflings-regular.eot +0 -0
  48. data/assets/fonts/glyphicons-halflings-regular.svg +288 -0
  49. data/assets/fonts/glyphicons-halflings-regular.ttf +0 -0
  50. data/assets/fonts/glyphicons-halflings-regular.woff +0 -0
  51. data/assets/fonts/glyphicons-halflings-regular.woff2 +0 -0
  52. data/assets/google-us.md +12 -0
  53. data/assets/images/company_logo_big.png +0 -0
  54. data/assets/images/favicon.ico +0 -0
  55. data/assets/js/customscripts.js +54 -0
  56. data/assets/js/jekyll-search.js +1 -0
  57. data/assets/js/jquery.ba-throttle-debounce.min.js +9 -0
  58. data/assets/js/jquery.navgoco.min.js +8 -0
  59. data/assets/js/jquery.shuffle.min.js +1588 -0
  60. data/assets/js/toc.js +73 -0
  61. data/assets/search.json +33 -0
  62. data/licenses/LICENSE-BSD-NAVGOCO.txt +27 -0
  63. data/licenses/LICENSE-CONTENT.md +3 -0
  64. data/licenses/LICENSE-MIT-DOC-THEME-THOLT.txt +21 -0
  65. data/licenses/LICENSE-MIT-SANSKRIT-DOC-THEME.txt +21 -0
  66. metadata +193 -0
@@ -0,0 +1,24 @@
1
+ /* box-shadow fonts return errors with prince, so extracting here to put in web output only */
2
+
3
+ #search-demo-container ul#results-container {
4
+ box-shadow: 2px 3px 2px #dedede;
5
+ }
6
+
7
+
8
+ hr.shaded {
9
+ box-shadow: inset 0 6px 6px -6px rgba(0,0,0,0.5);
10
+ }
11
+
12
+ .videoThumbs img {
13
+ box-shadow: 2px 2px 1px #f0f0f0;
14
+ }
15
+
16
+ .box {
17
+ box-shadow: 2px 2px 4px #dedede;
18
+ }
19
+
20
+ @media (max-width: 1200px) {
21
+ .navbar-collapse {
22
+ box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
23
+ }
24
+ }
@@ -0,0 +1,281 @@
1
+ /************************************************************/
2
+ /* Bootstrap styles*/
3
+ .bs-callout {
4
+ padding: 20px;
5
+ margin: 20px 0;
6
+ border: 1px solid #eee;
7
+ border-left-width: 5px;
8
+ border-radius: 3px;
9
+ }
10
+ .bs-callout h4 {
11
+ margin-top: 0;
12
+ margin-bottom: 5px;
13
+ }
14
+ .bs-callout p:last-child {
15
+ margin-bottom: 0;
16
+ }
17
+ .bs-callout code {
18
+ border-radius: 3px;
19
+ }
20
+ .bs-callout+.bs-callout {
21
+ margin-top: -5px;
22
+ }
23
+ .bs-callout-default {
24
+ border-left-color: #777;
25
+ }
26
+ .bs-callout-default h4 {
27
+ color: #777;
28
+ }
29
+ .bs-callout-primary {
30
+ border-left-color: #428bca;
31
+ }
32
+ .bs-callout-primary h4 {
33
+ color: #428bca;
34
+ }
35
+ .bs-callout-success {
36
+ border-left-color: #5cb85c;
37
+ }
38
+ .bs-callout-success h4 {
39
+ color: #5cb85c;
40
+ }
41
+ .bs-callout-danger {
42
+ border-left-color: #d9534f;
43
+ }
44
+ .bs-callout-danger h4 {
45
+ color: #d9534f;
46
+ }
47
+ .bs-callout-warning {
48
+ border-left-color: #f0ad4e;
49
+ }
50
+ .bs-callout-warning h4 {
51
+ color: #f0ad4e;
52
+ }
53
+ .bs-callout-info {
54
+ border-left-color: #5bc0de;
55
+ }
56
+ .bs-callout-info h4 {
57
+ color: #5bc0de;
58
+ }
59
+ .bs-example{
60
+ margin: 20px;
61
+ }
62
+ .breadcrumb li {
63
+ color: gray;
64
+ }
65
+
66
+
67
+ .btn-default {
68
+ margin-bottom: 10px;
69
+ }
70
+
71
+ /*For use with https://getbootstrap.com/docs/3.3/components/ */
72
+ .glyphicons-2x{font-size: 2em;}
73
+ .glyphicons-3x{font-size: 3em;}
74
+ .glyphicons-4x{font-size: 4em;}
75
+ .glyphicons-5x{font-size: 5em;}
76
+
77
+ .breadcrumb > .active {color: #777 !important;}
78
+ /************************************************************/
79
+
80
+ p.external a {
81
+ text-align:right;
82
+ font-size:12px;
83
+ color: #0088cc;
84
+ display:inline;
85
+ }
86
+
87
+ *[unicode_script="devanagari"] {
88
+ font-face: 'Noto Sans Devanagari From Github Hinted', serif;
89
+ font-size: 150%;
90
+ }
91
+
92
+ /************************************************************/
93
+ p.post-meta {font-size: 80%; color: #777;}
94
+
95
+ .post-content a.fa-rss {
96
+ color: orange;
97
+ }
98
+
99
+ .post-content .rssfeedLink {
100
+ color: #248EC2;
101
+ }
102
+
103
+ .post-content img.inline {
104
+ margin:0px;
105
+ margin-bottom:6px;
106
+ }
107
+
108
+ .post-content img {
109
+ margin: 12px 0px 3px 0px;
110
+ width: auto;
111
+ height: auto;
112
+ max-width: 100%;
113
+ max-height: 100%;
114
+ }
115
+
116
+
117
+ .post-meta {
118
+ font-size: 14px;
119
+ color: #828282;
120
+ }
121
+
122
+ .post-link {
123
+ font-size: 22px;
124
+ }
125
+
126
+ .post-list p {
127
+ margin: 10px 0px;
128
+ }
129
+ .post-content table th {
130
+ vertical-align: top;
131
+ }
132
+
133
+ .post-content img {
134
+ margin: 12px 0px 3px 0px;
135
+ width: auto;
136
+ height: auto;
137
+ max-width: 100%;
138
+ max-height: 100%;
139
+ }
140
+
141
+ /************************************************************/
142
+ .filter-options {
143
+ margin-bottom: 20px;
144
+ }
145
+ .filter-options button {
146
+ margin: 3px;
147
+ }
148
+
149
+ /************************************************************/
150
+ .footer {
151
+ text-align: right;
152
+ }
153
+
154
+ .footerMeta {
155
+ background-color: whitesmoke;
156
+ padding: 10px;
157
+ max-width: 250px;
158
+ border-radius: 5px;
159
+ margin-top: 50px;
160
+ font-style:italic;
161
+ font-size:12px;
162
+ }
163
+
164
+ /************************************************************/
165
+ .summary {
166
+ font-size:120%;
167
+ color: #808080;
168
+ margin:20px 0px 20px 0px;
169
+ border-left: 5px solid #ED1951;
170
+ padding-left: 10px;
171
+
172
+ }
173
+
174
+ .summary:before {
175
+ content: "Summary: ";
176
+ font-weight: bold;
177
+ }
178
+
179
+ /************************************************************/
180
+ .alert, .callout {
181
+ overflow: hidden;
182
+ }
183
+
184
+ .alert {
185
+ margin-bottom:10px;
186
+ margin-top:10px;
187
+ }
188
+
189
+ /* without this, the links in these notes aren't visible.*/
190
+ .alert a {
191
+ text-decoration: underline;
192
+ }
193
+
194
+ /************************************************************/
195
+ .projectTitle {
196
+ font-weight: bold;
197
+ }
198
+
199
+ .githubEditButton {
200
+ margin-bottom:7px;
201
+ }
202
+
203
+
204
+
205
+ *:hover > .anchorjs-link {
206
+ transition: color .25s linear;
207
+ text-decoration: none;
208
+ }
209
+
210
+ .col-lg-12 .nav li a {background-color: white}
211
+
212
+ .col-md-9 img {
213
+ max-width: 100%;
214
+ max-height: 100%;
215
+ }
216
+
217
+ .col-md-9 img {
218
+ max-width: 100%;
219
+ max-height: 100%;
220
+ }
221
+
222
+ /************************************************************/
223
+
224
+ .box {
225
+ padding: 10px;
226
+ border: 1px solid #888;
227
+ width: 100px;
228
+ height: 80px;
229
+ background-color: #f5f5f5;
230
+ font-family: Arial;
231
+ font-size: 12px;
232
+ hyphens: auto;
233
+ float: left;
234
+ font-size: 12px;
235
+ }
236
+
237
+ .box:hover {
238
+ background-color: #f0f0f0;
239
+ }
240
+
241
+
242
+
243
+ /******************************************/
244
+ /* search area */
245
+ #search-demo-container ul#results-container {
246
+ list-style: none;
247
+ font-size: 12px;
248
+ background-color: white;
249
+ position: absolute;
250
+ top: 40px; /* if you change anything about the nav, you'll prob. need to reset the top and left values here.*/
251
+ left: 20px;
252
+ z-index: -1;
253
+ width:223px;
254
+ border-left: 1px solid #dedede;
255
+ }
256
+
257
+
258
+ ul#results-container a {
259
+ background-color: transparent;
260
+ }
261
+
262
+ ul#results-container a:hover {
263
+ color: black;
264
+ }
265
+
266
+
267
+ #search-demo-container a:hover {
268
+ color: black;
269
+ }
270
+ #search-input {
271
+ padding: .5em;
272
+ margin-left:20px;
273
+ width:20em;
274
+ font-size: 0.8em;
275
+ -webkit-box-sizing: border-box;
276
+ -moz-box-sizing: border-box;
277
+ box-sizing: border-box;
278
+ margin-top:10px;
279
+ }
280
+ /* end search */
281
+ /******************************************/
@@ -0,0 +1,92 @@
1
+
2
+ /*
3
+ * Let's target IE to respect aspect ratios and sizes for img tags containing SVG files
4
+ *
5
+ * [1] IE9
6
+ * [2] IE10+
7
+ */
8
+ /* 1 */
9
+ .ie9 img[src$=".svg"] {
10
+ width: 100%;
11
+ }
12
+
13
+ /* 2
14
+ The @media rule is used in media queries to apply different styles for different media types/devices.
15
+ */
16
+ @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
17
+ img[src$=".svg"] {
18
+ width: 100%;
19
+ }
20
+ }
21
+
22
+ @media (max-width: 767px) {
23
+ .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
24
+ color: #444;
25
+ }
26
+ }
27
+
28
+ @media (max-width: 990px) {
29
+ #displayed_sidebar {
30
+ position: relative;
31
+ }
32
+ }
33
+
34
+ @media (min-width: 1000px) {
35
+
36
+ ul#displayed_sidebar {
37
+ width: 225px;
38
+ }
39
+ }
40
+
41
+ @media (max-width: 900px) {
42
+
43
+ ul#displayed_sidebar {
44
+ max-width: 100%;
45
+ }
46
+ }
47
+
48
+ @media only screen and (min-width: 900px), only screen and (min-device-width: 900px) {
49
+ .col-md-9 img {
50
+ max-width: 700px;
51
+ max-height: 700px;
52
+ }
53
+ }
54
+
55
+ /******************************************/
56
+ /*set navbar breakpoint so that it converts to hamburger earlier */
57
+
58
+ @media (max-width: 1200px) {
59
+ .navbar-header {
60
+ float: none;
61
+ }
62
+ .navbar-left,.navbar-right {
63
+ float: none !important;
64
+ }
65
+ .navbar-toggle {
66
+ display: block;
67
+ }
68
+ .navbar-collapse {
69
+ border-top: 1px solid transparent;
70
+ }
71
+ .navbar-fixed-top {
72
+ top: 0;
73
+ border-width: 0 0 1px;
74
+ }
75
+ .navbar-collapse.collapse {
76
+ display: none!important;
77
+ }
78
+ .navbar-nav {
79
+ float: none!important;
80
+ margin-top: 7.5px;
81
+ }
82
+ .navbar-nav>li {
83
+ float: none;
84
+ }
85
+ .navbar-nav>li>a {
86
+ padding-top: 10px;
87
+ padding-bottom: 10px;
88
+ }
89
+ .collapse.in{
90
+ display:block !important;
91
+ }
92
+ }
@@ -0,0 +1,229 @@
1
+ /*Some general styles*/
2
+ hr {
3
+ background: #999;
4
+ margin: 30px 0px;
5
+ width: 90%;
6
+ margin-left: auto;
7
+ margin-right: auto;
8
+ }
9
+
10
+ pre, table code {
11
+ white-space: pre-wrap; /* css-3 */
12
+ white-space: -moz-pre-wrap; /* Mozilla, since 1999 */
13
+ white-space: -pre-wrap; /* Opera 4-6 */
14
+ white-space: -o-pre-wrap; /* Opera 7 */
15
+ word-wrap: break-word; /* Internet Explorer 5.5+ */
16
+ }
17
+
18
+ pre {
19
+ margin: 25px 0px;
20
+ }
21
+
22
+ video {
23
+ display: block;
24
+ margin: 30px 0px;
25
+ border: 1px solid #c0c0c0;
26
+ }
27
+
28
+
29
+ button.cursorNorm {
30
+ cursor: pointer;
31
+ }
32
+
33
+ /************************************************************/
34
+ /* this part adds an icon after external links, using FontAwesome*/
35
+ a[href^="http://"]:after, a[href^="https://"]:after {
36
+ content: "\f08e";
37
+ font-family: FontAwesome;
38
+ font-weight: normal;
39
+ font-style: normal;
40
+ display: inline-block;
41
+ text-decoration: none;
42
+ padding-left: 3px;
43
+ }
44
+
45
+ /* Strip the outbound icon when this class is present */
46
+ a[href].noCrossRef::after,
47
+ a.no_icon:after
48
+ {
49
+ content:"" !important;
50
+ padding-left: 0;
51
+ }
52
+
53
+ a[data-toggle] {
54
+ color: #248EC2;
55
+ }
56
+
57
+ a[data-toggle="tooltip"] {
58
+ color: #649345;
59
+ font-style: italic;
60
+ cursor: default;
61
+ }
62
+
63
+ a.accordion-toggle {
64
+ font-style: normal;
65
+ }
66
+
67
+ /************************************************************/
68
+ /* make room for the nav bar */
69
+ h1[id],
70
+ h2[id],
71
+ h3[id],
72
+ h4[id],
73
+ h5[id],
74
+ h6[id],
75
+ dt[id]{
76
+ padding-top: 60px;
77
+ margin-top: -40px
78
+ }
79
+
80
+ h4.panel-title {
81
+ padding-top: 0px;
82
+ margin-top: 0px;
83
+ }
84
+
85
+ h3 {color: #ED1951; font-weight:normal; font-size:130%;}
86
+ h4 {color: #808080; font-weight:normal; font-size:120%; font-style:italic;}
87
+
88
+ h2.userMapTitle {
89
+ font-family: Arial;
90
+ }
91
+
92
+ h2 {
93
+ font-size:24px;
94
+ line-height:29px;
95
+ }
96
+
97
+ /************************************************************/
98
+ body {
99
+ font-size:15px;
100
+ }
101
+
102
+ div.content {
103
+ max-width: 110px
104
+ }
105
+
106
+ div.alert code, h2 code {
107
+ background-color: transparent !important;
108
+ }
109
+
110
+ div.tags {padding: 10px 5px;}
111
+
112
+ div.arrow {
113
+ max-width: 50px;
114
+ margin-left: 15px;
115
+ margin-right: 15px;
116
+ font-size: 20px;
117
+ }
118
+
119
+ figcaption {
120
+
121
+ padding-bottom:12px;
122
+ padding-top:6px;
123
+ max-width: 90%;
124
+ margin-bottom:20px;
125
+ font-style: italic;
126
+ color: gray;
127
+
128
+ }
129
+
130
+ footer {
131
+ font-size: smaller;
132
+ }
133
+
134
+ /******************************************/
135
+ /*Table styles*/
136
+ table {
137
+ background-color: transparent;
138
+ max-width: 90%;
139
+ margin-bottom: 20px;
140
+ border: 1px solid #dedede;
141
+ }
142
+
143
+ table thead th code.highlighter-rouge {
144
+ background-color: transparent;
145
+ }
146
+
147
+ caption {
148
+ padding-top: 8px;
149
+ padding-bottom: 8px;
150
+ color: #777;
151
+ text-align: left;
152
+ }
153
+
154
+ th {
155
+ text-align: left;
156
+ }
157
+
158
+ table > thead > tr > th,
159
+ table > tbody > tr > th,
160
+ table > tfoot > tr > th,
161
+ table > thead > tr > td,
162
+ table > tbody > tr > td,
163
+ table > tfoot > tr > td {
164
+ padding: 8px;
165
+ line-height: 1.42857143;
166
+ vertical-align: top;
167
+ border-top: 1px solid #ddd;
168
+ }
169
+ table > thead > tr > th {
170
+ vertical-align: bottom;
171
+ border-bottom: 2px solid #ddd;
172
+ text-transform: none;
173
+ background-color: #777;
174
+ color: white;
175
+ text-align: left;
176
+ }
177
+ table > caption + thead > tr:first-child > th,
178
+ table > colgroup + thead > tr:first-child > th,
179
+ table > thead:first-child > tr:first-child > th,
180
+ table > caption + thead > tr:first-child > td,
181
+ table > colgroup + thead > tr:first-child > td,
182
+ table > thead:first-child > tr:first-child > td {
183
+ border-top: 0;
184
+ }
185
+
186
+ table > tbody > tr:nth-of-type(odd) {
187
+ background-color: #f9f9f9;
188
+ }
189
+
190
+ table col[class*="col-"] {
191
+ position: static;
192
+ display: table-column;
193
+ float: none;
194
+ }
195
+ table td[class*="col-"],
196
+ table th[class*="col-"] {
197
+ position: static;
198
+ display: table-cell;
199
+ float: none;
200
+ }
201
+
202
+ table tr td {
203
+ hyphens: auto;
204
+ }
205
+ table.dataTable thead {
206
+ background-color: #444;
207
+ }
208
+ table td {
209
+ hyphens: auto;
210
+ }
211
+
212
+ section table tr.success {
213
+ background-color: #dff0d8 !important;
214
+ }
215
+
216
+ table tr.info {
217
+ background-color: #d9edf7 !important;
218
+ }
219
+
220
+ table.profile thead tr th {
221
+ background-color: #248ec2;
222
+ }
223
+
224
+ table.request thead tr th {
225
+ background-color: #ED1951;
226
+ }
227
+
228
+ /******************************************/
229
+