sanskrit-documentation-theme 0.1.3 → 0.1.4
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 +4 -4
- data/README.md +5 -0
- data/_includes/footer.html +3 -2
- data/_includes/topnav.html +0 -3
- data/assets/css/class-styles-general.scss +312 -0
- data/assets/css/device-specific.scss +95 -0
- data/assets/css/element-styles-general.scss +246 -0
- data/assets/css/fonts.css +2 -2
- data/assets/css/navbar-toc.scss +210 -0
- data/assets/css/theme-blue.scss +140 -0
- metadata +21 -8
- data/_includes/feedback.html +0 -13
- data/assets/css/class-styles-general.css +0 -281
- data/assets/css/device-specific.css +0 -92
- data/assets/css/element-styles-general.css +0 -229
- data/assets/css/navbar-toc.css +0 -203
- data/assets/css/theme-blue.css +0 -121
|
@@ -1,92 +0,0 @@
|
|
|
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
|
-
}
|
|
@@ -1,229 +0,0 @@
|
|
|
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
|
-
|
data/assets/css/navbar-toc.css
DELETED
|
@@ -1,203 +0,0 @@
|
|
|
1
|
-
/*Table of contents and Navbar*/
|
|
2
|
-
|
|
3
|
-
a.dropdown-toggle, .navbar-inverse .navbar-nav > li > a {
|
|
4
|
-
margin-left: 10px;
|
|
5
|
-
}
|
|
6
|
-
|
|
7
|
-
div#toc >ul::before {
|
|
8
|
-
content: "In this page:";
|
|
9
|
-
font-weight: bolder;
|
|
10
|
-
color: #9c131e;
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
li.dropdownActive a {
|
|
14
|
-
font-weight: bold;
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
|
|
18
|
-
background-color: #248ec2;
|
|
19
|
-
color: white;
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
/************************************************************/
|
|
24
|
-
.navbar-inverse .navbar-nav > li > a {
|
|
25
|
-
background-color: transparent;
|
|
26
|
-
margin-top:10px;
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
.navbar-inverse .navbar-nav > .active > a, .navbar-inverse .navbar-nav > .active > a:hover, .navbar-inverse .navbar-nav > .active > a:focus {
|
|
30
|
-
border-radius:5px;
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
.navbar-inverse .navbar-nav>.open>a, .navbar-inverse .navbar-nav>.open>a:focus, .navbar-inverse .navbar-nav>.open>a:hover {
|
|
34
|
-
border-radius: 5px;
|
|
35
|
-
}
|
|
36
|
-
|
|
37
|
-
/* not sure if using this ...*/
|
|
38
|
-
.navbar-inverse .navbar-collapse, .navbar-inverse .navbar-form {
|
|
39
|
-
border-color: #248ec2 !important;
|
|
40
|
-
}
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
/************************************************************/
|
|
44
|
-
/* FAQ page */
|
|
45
|
-
#accordion .panel-heading {
|
|
46
|
-
font-size: 18px;
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
a.accordion-toggle, a.accordion-collapsed {
|
|
50
|
-
font-size: 18px;
|
|
51
|
-
text-decoration: none;
|
|
52
|
-
}
|
|
53
|
-
/************************************************************/
|
|
54
|
-
|
|
55
|
-
/* navgoco sidebar styles (customized) */
|
|
56
|
-
.nav, .nav ul, .nav li {
|
|
57
|
-
list-style: none;
|
|
58
|
-
}
|
|
59
|
-
|
|
60
|
-
.nav ul {
|
|
61
|
-
padding: 0;
|
|
62
|
-
/*margin: 0 0 0 18px;*/
|
|
63
|
-
margin:0px;
|
|
64
|
-
}
|
|
65
|
-
|
|
66
|
-
.nav {
|
|
67
|
-
/* padding: 4px;*/
|
|
68
|
-
padding:0px;
|
|
69
|
-
margin: 0px;
|
|
70
|
-
}
|
|
71
|
-
|
|
72
|
-
.nav > li {
|
|
73
|
-
margin: 1px 0;
|
|
74
|
-
}
|
|
75
|
-
|
|
76
|
-
.nav > li li {
|
|
77
|
-
margin: 2px 0;
|
|
78
|
-
}
|
|
79
|
-
|
|
80
|
-
.nav a {
|
|
81
|
-
color: #333;
|
|
82
|
-
display: block;
|
|
83
|
-
outline: none;
|
|
84
|
-
/*-webkit-border-radius: 4px;
|
|
85
|
-
-moz-border-radius: 4px;
|
|
86
|
-
border-radius: 4px;*/
|
|
87
|
-
text-decoration: none;
|
|
88
|
-
}
|
|
89
|
-
|
|
90
|
-
.nav li > a > span {
|
|
91
|
-
float: right;
|
|
92
|
-
font-size: 19px;
|
|
93
|
-
font-weight: bolder;
|
|
94
|
-
}
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
.nav li > a > span:after {
|
|
98
|
-
content: '\25be';
|
|
99
|
-
}
|
|
100
|
-
.nav li.active > a > span:after {
|
|
101
|
-
content: '\25b4';
|
|
102
|
-
}
|
|
103
|
-
|
|
104
|
-
.nav a:hover, .nav li.active > a {
|
|
105
|
-
background-color: #8D8D8D;
|
|
106
|
-
color: #f5f5f5;
|
|
107
|
-
}
|
|
108
|
-
|
|
109
|
-
.nav > li.active > a {
|
|
110
|
-
background-color: #347DBE;
|
|
111
|
-
}
|
|
112
|
-
|
|
113
|
-
.nav li a {
|
|
114
|
-
font-size: 18px;
|
|
115
|
-
line-height: 20px;
|
|
116
|
-
padding: 2px 10px;
|
|
117
|
-
background-color: #f1f1f1;
|
|
118
|
-
}
|
|
119
|
-
|
|
120
|
-
.nav > li > a {
|
|
121
|
-
font-size: 18px;
|
|
122
|
-
line-height: 20px;
|
|
123
|
-
padding: 4px 10px;
|
|
124
|
-
}
|
|
125
|
-
|
|
126
|
-
ul#displayed_sidebar {
|
|
127
|
-
border-radius:0px;
|
|
128
|
-
}
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
.nav ul li ul li a {
|
|
132
|
-
padding-left:40px;
|
|
133
|
-
}
|
|
134
|
-
|
|
135
|
-
.nav li.thirdlevel > a {
|
|
136
|
-
color: #248EC2;
|
|
137
|
-
font-weight:bold;
|
|
138
|
-
padding-left:20px;
|
|
139
|
-
background-color: whitesmoke !important;
|
|
140
|
-
}
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
.nav ul li a {
|
|
144
|
-
background-color: #FAFAFA;
|
|
145
|
-
}
|
|
146
|
-
|
|
147
|
-
.nav li a {
|
|
148
|
-
padding-right:10px;
|
|
149
|
-
}
|
|
150
|
-
|
|
151
|
-
.nav li a:hover {
|
|
152
|
-
background-color: #8D8D8D;
|
|
153
|
-
}
|
|
154
|
-
|
|
155
|
-
.nav ul li a {
|
|
156
|
-
border-top:1px solid whitesmoke;
|
|
157
|
-
padding-left:10px;
|
|
158
|
-
}
|
|
159
|
-
|
|
160
|
-
.nav ul.series li {
|
|
161
|
-
list-style: decimal;
|
|
162
|
-
font-size:12px;
|
|
163
|
-
}
|
|
164
|
-
|
|
165
|
-
.nav ul.series li a:hover {
|
|
166
|
-
background-color: gray;
|
|
167
|
-
}
|
|
168
|
-
.nav ul.series {
|
|
169
|
-
padding-left: 30px;
|
|
170
|
-
}
|
|
171
|
-
|
|
172
|
-
.nav ul.series {
|
|
173
|
-
background-color: #FAFAFA;
|
|
174
|
-
}
|
|
175
|
-
|
|
176
|
-
.nav li.active > a.subfoldersTitle {
|
|
177
|
-
background-color: whitesmoke;
|
|
178
|
-
font-weight: bold;
|
|
179
|
-
color: black;
|
|
180
|
-
}
|
|
181
|
-
|
|
182
|
-
/************************************************************/
|
|
183
|
-
div#toc ul li ul li {
|
|
184
|
-
list-style-type: none;
|
|
185
|
-
margin: 5px 0px 0px 0px;
|
|
186
|
-
}
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
#displayed_sidebar .nav ul {
|
|
190
|
-
background-color: #FAFAFA;
|
|
191
|
-
}
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
.seriesContext .dropdown-menu li.active {
|
|
195
|
-
font-weight: bold;
|
|
196
|
-
margin-left: 43px;
|
|
197
|
-
font-size:18px;
|
|
198
|
-
}
|
|
199
|
-
|
|
200
|
-
li.activeSeries {
|
|
201
|
-
font-weight: bold;
|
|
202
|
-
}
|
|
203
|
-
|