├── .gitignore
├── README.md
├── documentation
├── css
│ ├── 32px.png
│ ├── bootstrap.min.css
│ ├── style.css
│ ├── throbber.gif
│ └── tree-viewer.css
├── img
│ ├── Thumbs.db
│ └── logo.png
├── index.html
└── js
│ ├── bootstrap.min.js
│ ├── jquery-3.1.0.min.js
│ ├── jstree.active.js
│ └── jstree.min.js
└── srtdash
├── 403.html
├── 404.html
├── 500.html
├── accordion.html
├── alert.html
├── assets
├── css
│ ├── bootstrap.min.css
│ ├── default-css.css
│ ├── font-awesome.min.css
│ ├── metisMenu.css
│ ├── owl.carousel.min.css
│ ├── responsive.css
│ ├── slicknav.min.css
│ ├── styles.css
│ ├── themify-icons.css
│ └── typography.css
├── fonts
│ ├── FontAwesome.otf
│ ├── fontawesome-webfont.eot
│ ├── fontawesome-webfont.svg
│ ├── fontawesome-webfont.ttf
│ ├── fontawesome-webfont.woff
│ ├── fontawesome-webfont.woff2
│ ├── themify.eot
│ ├── themify.svg
│ ├── themify.ttf
│ └── themify.woff
├── images
│ ├── author
│ │ ├── author-img1.jpg
│ │ ├── author-img2.jpg
│ │ ├── author-img3.jpg
│ │ ├── author-img4.jpg
│ │ └── avatar.png
│ ├── bg
│ │ └── singin-bg.jpg
│ ├── blog
│ │ ├── post-thumb1.jpg
│ │ └── post-thumb2.jpg
│ ├── card
│ │ ├── card-img1.jpg
│ │ ├── card-img10.jpg
│ │ ├── card-img2.jpg
│ │ ├── card-img3.jpg
│ │ ├── card-img4.jpg
│ │ ├── card-img5.jpg
│ │ ├── card-img6.jpg
│ │ ├── card-img7.jpg
│ │ ├── card-img8.jpg
│ │ └── card-img9.jpg
│ ├── icon
│ │ ├── Thumbs.db
│ │ ├── loader.gif
│ │ ├── logo.png
│ │ ├── logo2.png
│ │ └── market-value
│ │ │ ├── Thumbs.db
│ │ │ ├── icon1.png
│ │ │ ├── icon2.png
│ │ │ ├── icon3.png
│ │ │ ├── icon4.png
│ │ │ ├── trends-down-icon.png
│ │ │ ├── trends-up-icon.png
│ │ │ ├── triangle-down.png
│ │ │ └── triangle-up.png
│ ├── media
│ │ ├── media1.jpg
│ │ └── media2.jpg
│ └── team
│ │ ├── team-author1.jpg
│ │ ├── team-author2.jpg
│ │ ├── team-author3.jpg
│ │ ├── team-author4.jpg
│ │ └── team-author5.jpg
└── js
│ ├── bar-chart.js
│ ├── bootstrap.min.js
│ ├── jquery.slicknav.min.js
│ ├── jquery.slimscroll.min.js
│ ├── line-chart.js
│ ├── maps.js
│ ├── metisMenu.min.js
│ ├── owl.carousel.min.js
│ ├── pie-chart.js
│ ├── plugins.js
│ ├── popper.min.js
│ ├── scripts.js
│ └── vendor
│ ├── jquery-2.2.4.min.js
│ └── modernizr-2.8.3.min.js
├── badge.html
├── barchart.html
├── button-group.html
├── button.html
├── cards.html
├── datatable.html
├── dropdown.html
├── fontawesome.html
├── forgot-password.html
├── form.html
├── grid.html
├── index.html
├── index2.html
├── index3-horizontalmenu.html
├── index3.html
├── invoice.html
├── linechart.html
├── list-group.html
├── login.html
├── login2.html
├── login3.html
├── maps.html
├── media-object.html
├── modal.html
├── pagination.html
├── piechart.html
├── popovers.html
├── pricing.html
├── progressbar.html
├── register.html
├── register2.html
├── register3.html
├── register4.html
├── reset-pass.html
├── screenlock.html
├── screenlock2.html
├── starter.html
├── tab.html
├── table-basic.html
├── table-layout.html
├── themify.html
└── typography.html
/.gitignore:
--------------------------------------------------------------------------------
1 | .idea
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # SRTdash admin dashboard
2 | Free admin dashboard template
3 |
4 | # Preview
5 |
6 | 
7 |
8 | # Overview
9 | SRTdash is a full-featured, multipurpose, premium bootstrap admin template built with Bootstrap 4 Framework, HTML5, CSS and JQuery.
10 |
11 | It is a fully responsive bootstrap admin template/bootstrap admin dashboard template that comes with a huge collection of reusable UI components & plugins.
12 |
13 | We believe we have covered everything you need to set up an All kind of website.If there is something that you would like to know then we are happy to help you out.
14 |
15 | ## Getting started
16 | If you want to kickstart your webapp right now, there is a [starter template](srtdash/starter.html) in place. This one includes everything you need to set up your app.
17 |
18 | # Template Features:
19 |
20 | - 3 Deferent Home Version
21 | - Totall Pages 46+
22 | - Based on Bootstrap 4
23 | - HTML5, CSS3, jQuery
24 | - Fully Responsive
25 | - Easy to customize
26 | - W3C Validated Code
27 | - Fontawesome Icons
28 | - Themify Icons
29 | - Free Google Fonts.
30 | - All files are well commented
31 | - Minimal and Clean
32 | - Documentation
33 | - Clean UI Elements
34 | - Free Updates
35 | - Quick support
36 | - Displays well in all modern browsers and devices
37 |
38 | ## Note:
39 | Images are only for demo purpose and not included with the download bundle.
40 |
41 | ### Changelog
42 | #### V 1.0.0
43 | Initial Release
44 | ### Authors
45 | [Colorlib](https://colorlib.com)
46 |
47 | ### More info
48 | - [Bootstrap Dashboards](https://colorlib.com/wp/free-bootstrap-admin-dashboard-templates/)
49 | - [Angular Dashboards](https://colorlib.com/wp/angularjs-admin-templates/)
50 | - [Free Admin Dashboards](https://colorlib.com/wp/free-html5-admin-dashboard-templates/)
51 | - [Bootstrap Templates](https://colorlib.com/wp/templates/)
52 | - [WordPress Themes](https://colorlib.com/wp/free-wordpress-themes/)
53 |
54 | ### License
55 |
56 | SRTdash is licensed under The MIT License (MIT). Which means that you can use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the final products. But you always need to state that Colorlib is the original author of this template.
57 |
--------------------------------------------------------------------------------
/documentation/css/32px.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/puikinsh/srtdash-admin-dashboard/50bfdbb14ea149b7f6234f7de1fcf121105603d4/documentation/css/32px.png
--------------------------------------------------------------------------------
/documentation/css/style.css:
--------------------------------------------------------------------------------
1 | * {
2 | margin: 0px;
3 | padding: 0px;
4 | }
5 |
6 |
7 | /*
8 | *::-moz-selection {
9 | background-attachment: scroll;
10 | background-clip: border-box;
11 | background-color: #ef4836;
12 | background-image: none;
13 | background-origin: padding-box;
14 | background-position: 0 0;
15 | background-repeat: repeat;
16 | background-size: auto auto;
17 | color: #fff;
18 | }
19 | */
20 |
21 | h1,
22 | h2,
23 | h3,
24 | h4,
25 | h5,
26 | h6,
27 | p {
28 | margin-top: 0px;
29 | }
30 |
31 | body,
32 | html {
33 | height: 100%;
34 | }
35 |
36 | a:hover,
37 | a:focus {
38 | outline: none;
39 | text-decoration: none;
40 | }
41 |
42 | .body {
43 | font-size: 14px;
44 | }
45 |
46 | .wrapper {
47 | position: relative;
48 | height: 100%;
49 | }
50 |
51 | .left-side {
52 | background-color: #212121;
53 | height: 100%;
54 | left: 0;
55 | position: fixed;
56 | top: 0;
57 | width: 300px;
58 | }
59 |
60 | .logo {
61 | background-color: #ffffff;
62 | box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.4) inset;
63 | height: 174px;
64 | line-height: 160px;
65 | text-align: center;
66 | }
67 |
68 | .left-content {
69 | text-align: right;
70 | }
71 |
72 | .left-content {}
73 |
74 | .left-content ul {}
75 |
76 | .left-content ul li {
77 | border-bottom: 1px solid #6a56a5;
78 | display: block;
79 | height: 50px;
80 | }
81 |
82 | .left-content ul li.active {
83 | background-color: #6a56a5;
84 | }
85 |
86 | .left-content ul li.active a span {
87 | border-color: #ffffff;
88 | }
89 |
90 | .left-content ul li a {
91 | color: #fff;
92 | line-height: 50px;
93 | padding-right: 30px;
94 | display: block;
95 | text-decoration: none;
96 | }
97 |
98 | .left-content ul li a span {
99 | border-right: 1px solid #6a56a5;
100 | color: #ffffff;
101 | display: inline-block;
102 | float: left;
103 | font-size: 20px;
104 | height: 49px;
105 | line-height: 50px;
106 | text-align: center;
107 | width: 50px;
108 | }
109 |
110 | .copyright {
111 | background-color: #6a56a5;
112 | bottom: 0;
113 | color: #ffffff;
114 | left: 0;
115 | padding: 20px;
116 | position: absolute;
117 | text-align: right;
118 | width: 100%;
119 | }
120 |
121 | .copyright p {
122 | margin-bottom: 0px;
123 | }
124 |
125 | .copyright p a {
126 | color: #212121;
127 | font-weight: 700;
128 | }
129 |
130 | .copyright p span {
131 | display: block;
132 | }
133 |
134 | .right-side {
135 | padding-left: 300px;
136 | }
137 |
138 | .right-content {
139 | padding: 50px;
140 | }
141 |
142 | .content {
143 | display: none;
144 | }
145 |
146 | .content.active {
147 | display: block;
148 | }
149 |
150 | pre {
151 | background: url(../img/pre_bg.png);
152 | line-height: 19px;
153 | text-align: left;
154 | padding: 0px;
155 | margin-top: 35px;
156 | font-size: 13px;
157 | margin-bottom: 35px;
158 | }
159 |
160 | .content {}
161 |
162 | .content a {
163 | color: #6a56a5;
164 | }
165 |
166 | .content h1 {
167 | text-transform: uppercase;
168 | font-weight: 700;
169 | padding-bottom: 35px;
170 | margin-bottom: 35px;
171 | border-bottom: 1px solid #ddd;
172 | }
173 |
174 | #one span {
175 | color: #6a56a5;
176 | }
177 |
178 | .content#source {}
179 |
180 | .content#source > ul li {}
181 |
182 | .content#source > ul li span {
183 | font-weight: 700;
184 | display: block;
185 | }
186 |
187 | .content#source > ul li > ul {
188 | padding-left: 25px;
189 | }
190 | .logo h1 {
191 | padding: 65px 0;
192 | }
193 | .tree-viewer-pd{
194 | padding:30px;
195 | }
--------------------------------------------------------------------------------
/documentation/css/throbber.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/puikinsh/srtdash-admin-dashboard/50bfdbb14ea149b7f6234f7de1fcf121105603d4/documentation/css/throbber.gif
--------------------------------------------------------------------------------
/documentation/img/Thumbs.db:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/puikinsh/srtdash-admin-dashboard/50bfdbb14ea149b7f6234f7de1fcf121105603d4/documentation/img/Thumbs.db
--------------------------------------------------------------------------------
/documentation/img/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/puikinsh/srtdash-admin-dashboard/50bfdbb14ea149b7f6234f7de1fcf121105603d4/documentation/img/logo.png
--------------------------------------------------------------------------------
/documentation/js/jstree.active.js:
--------------------------------------------------------------------------------
1 |
2 | (function ($) {
3 | "use strict";
4 |
5 |
6 | $('#jstree1').jstree({
7 | 'core' : {
8 | 'check_callback' : true
9 | },
10 | 'plugins' : [ 'types', 'dnd' ],
11 | 'types' : {
12 | 'default' : {
13 | 'icon' : 'fa fa-folder'
14 | },
15 | 'html' : {
16 | 'icon' : 'fa fa-file-code-o'
17 | },
18 | 'svg' : {
19 | 'icon' : 'fa fa-file-picture-o'
20 | },
21 | 'css' : {
22 | 'icon' : 'fa fa-file-code-o'
23 | },
24 | 'img' : {
25 | 'icon' : 'fa fa-file-image-o'
26 | },
27 | 'js' : {
28 | 'icon' : 'fa fa-file-text-o'
29 | }
30 |
31 | }
32 | });
33 |
34 | $('#using_json').jstree({
35 | 'core' : {
36 | 'data' : [
37 | 'Empty Folder',
38 | {
39 | 'text': 'Resources',
40 | 'state': {
41 | 'opened': true
42 | },
43 | 'children': [
44 | {
45 | 'text': 'css',
46 | 'children': [
47 | {
48 | 'text': 'animate.css', 'icon': 'none'
49 | },
50 | {
51 | 'text': 'bootstrap.css', 'icon': 'none'
52 | },
53 | {
54 | 'text': 'main.css', 'icon': 'none'
55 | },
56 | {
57 | 'text': 'style.css', 'icon': 'none'
58 | }
59 | ],
60 | 'state': {
61 | 'opened': true
62 | }
63 | },
64 | {
65 | 'text': 'js',
66 | 'children': [
67 | {
68 | 'text': 'bootstrap.js', 'icon': 'none'
69 | },
70 | {
71 | 'text': 'inspinia.min.js', 'icon': 'none'
72 | },
73 | {
74 | 'text': 'jquery.min.js', 'icon': 'none'
75 | },
76 | {
77 | 'text': 'jsTree.min.js', 'icon': 'none'
78 | },
79 | {
80 | 'text': 'custom.min.js', 'icon': 'none'
81 | }
82 | ],
83 | 'state': {
84 | 'opened': true
85 | }
86 | },
87 | {
88 | 'text': 'html',
89 | 'children': [
90 | {
91 | 'text': 'layout.html', 'icon': 'none'
92 | },
93 | {
94 | 'text': 'navigation.html', 'icon': 'none'
95 | },
96 | {
97 | 'text': 'navbar.html', 'icon': 'none'
98 | },
99 | {
100 | 'text': 'footer.html', 'icon': 'none'
101 | },
102 | {
103 | 'text': 'sidebar.html', 'icon': 'none'
104 | }
105 | ],
106 | 'state': {
107 | 'opened': true
108 | }
109 | }
110 | ]
111 | },
112 | 'Fonts',
113 | 'Images',
114 | 'Scripts',
115 | 'Templates',
116 | ]
117 | } });
118 |
119 |
120 | })(jQuery);
121 |
122 |
--------------------------------------------------------------------------------
/srtdash/403.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 | 403 Forbidden - srtdash
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
30 |
31 |
34 |
35 |
36 |
37 |
38 |
39 |
403
40 |
Access to this resource on the server is denied
41 |
Back to Dashboard
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
56 |
57 |
58 |
59 |
60 |
61 |
--------------------------------------------------------------------------------
/srtdash/404.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 | 404 Error - srtdash
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
30 |
31 |
34 |
35 |
36 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
56 |
57 |
58 |
59 |
60 |
61 |
--------------------------------------------------------------------------------
/srtdash/500.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 | 500 Error - srtdash
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
30 |
31 |
34 |
35 |
36 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
56 |
57 |
58 |
59 |
60 |
61 |
--------------------------------------------------------------------------------
/srtdash/assets/css/default-css.css:
--------------------------------------------------------------------------------
1 | /*
2 | --------------------------
3 | - 1.1 Default CSS
4 | --------------------------
5 | */
6 |
7 | /*google font*/
8 |
9 | @import url('https://fonts.googleapis.com/css?family=Lato:300,400,700,900|Poppins:100,300,400,500,600,700,800,900');
10 | /* Your default CSS. */
11 |
12 | * {
13 | margin: 0;
14 | padding: 0;
15 | box-sizing: border-box;
16 | }
17 |
18 | *, *:before, *:after {
19 | -moz-box-sizing: border-box;
20 | -webkit-box-sizing: border-box;
21 | box-sizing: border-box;
22 | }
23 |
24 | *:focus {
25 | outline: 0;
26 | }
27 |
28 | html {
29 | -webkit-font-smoothing: antialiased;
30 | }
31 |
32 | body {
33 | background: #fff;
34 | font-weight: normal;
35 | -webkit-font-smoothing: antialiased;
36 | /* Fix for webkit rendering */
37 | -webkit-text-size-adjust: 100%;
38 | }
39 |
40 | img {
41 | max-width: 100%;
42 | height: auto;
43 | }
44 |
45 | /*custome css*/
46 |
47 | /*--------------------------
48 | Padding top
49 | ---------------------------*/
50 |
51 | .pt--0 {
52 | padding-top: 0
53 | }
54 |
55 | .pt--10 {
56 | padding-top: 10px
57 | }
58 |
59 | .pt--15 {
60 | padding-top: 15px
61 | }
62 |
63 | .pt--20 {
64 | padding-top: 20px
65 | }
66 |
67 | .pt--30 {
68 | padding-top: 30px
69 | }
70 |
71 | .pt--40 {
72 | padding-top: 40px
73 | }
74 |
75 | .pt--50 {
76 | padding-top: 50px
77 | }
78 |
79 | .pt--60 {
80 | padding-top: 60px
81 | }
82 |
83 | .pt--70 {
84 | padding-top: 70px
85 | }
86 |
87 | .pt--80 {
88 | padding-top: 80px
89 | }
90 |
91 | .pt--90 {
92 | padding-top: 90px
93 | }
94 |
95 | .pt--100 {
96 | padding-top: 100px
97 | }
98 |
99 | .pt--110 {
100 | padding-top: 110px
101 | }
102 |
103 | .pt--120 {
104 | padding-top: 120px
105 | }
106 |
107 | .pt--130 {
108 | padding-top: 130px
109 | }
110 |
111 | .pt--140 {
112 | padding-top: 140px
113 | }
114 |
115 | .pt--150 {
116 | padding-top: 150px
117 | }
118 |
119 | .pt--160 {
120 | padding-top: 160px
121 | }
122 |
123 | .pt--170 {
124 | padding-top: 170px
125 | }
126 |
127 | .pt--180 {
128 | padding-top: 180px
129 | }
130 |
131 | .pt--190 {
132 | padding-top: 190px
133 | }
134 |
135 | /*------------------------
136 | Padding bottom
137 | ---------------------------*/
138 |
139 | .pb--0 {
140 | padding-bottom: 0
141 | }
142 |
143 | .pb--10 {
144 | padding-bottom: 10px
145 | }
146 |
147 | .pb--15 {
148 | padding-bottom: 15px
149 | }
150 |
151 | .pb--20 {
152 | padding-bottom: 20px
153 | }
154 |
155 | .pb--30 {
156 | padding-bottom: 30px
157 | }
158 |
159 | .pb--40 {
160 | padding-bottom: 40px
161 | }
162 |
163 | .pb--50 {
164 | padding-bottom: 50px
165 | }
166 |
167 | .pb--60 {
168 | padding-bottom: 60px
169 | }
170 |
171 | .pb--70 {
172 | padding-bottom: 70px
173 | }
174 |
175 | .pb--80 {
176 | padding-bottom: 80px
177 | }
178 |
179 | .pb--90 {
180 | padding-bottom: 90px
181 | }
182 |
183 | .pb--100 {
184 | padding-bottom: 100px
185 | }
186 |
187 | .pb--110 {
188 | padding-bottom: 110px
189 | }
190 |
191 | .pb--120 {
192 | padding-bottom: 120px
193 | }
194 |
195 | .pb--130 {
196 | padding-bottom: 130px
197 | }
198 |
199 | .pb--140 {
200 | padding-bottom: 140px
201 | }
202 |
203 | .pb--150 {
204 | padding-bottom: 150px
205 | }
206 |
207 | .pb--160 {
208 | padding-bottom: 160px
209 | }
210 |
211 | .pb--170 {
212 | padding-bottom: 170px
213 | }
214 |
215 | .pb--180 {
216 | padding-bottom: 180px
217 | }
218 |
219 | .pb--190 {
220 | padding-bottom: 190px
221 | }
222 |
223 | /*------------------------------
224 | Page section padding
225 | -------------------------------*/
226 |
227 | .ptb--0 {
228 | padding: 0
229 | }
230 |
231 | .ptb--10 {
232 | padding: 10px 0
233 | }
234 |
235 | .ptb--20 {
236 | padding: 20px 0
237 | }
238 |
239 | .ptb--30 {
240 | padding: 30px 0
241 | }
242 |
243 | .ptb--40 {
244 | padding: 40px 0
245 | }
246 |
247 | .ptb--50 {
248 | padding: 50px 0
249 | }
250 |
251 | .ptb--60 {
252 | padding: 60px 0
253 | }
254 |
255 | .ptb--70 {
256 | padding: 70px 0
257 | }
258 |
259 | .ptb--80 {
260 | padding: 80px 0
261 | }
262 |
263 | .ptb--90 {
264 | padding: 90px 0
265 | }
266 |
267 | .ptb--100 {
268 | padding: 100px 0
269 | }
270 |
271 | .ptb--110 {
272 | padding: 110px 0
273 | }
274 |
275 | .ptb--120 {
276 | padding: 120px 0
277 | }
278 |
279 | .ptb--130 {
280 | padding: 130px 0
281 | }
282 |
283 | .ptb--140 {
284 | padding: 140px 0
285 | }
286 |
287 | .ptb--150 {
288 | padding: 150px 0
289 | }
290 |
291 | .ptb--160 {
292 | padding: 160px 0
293 | }
294 |
295 | .ptb--170 {
296 | padding: 170px 0
297 | }
298 |
299 | .ptb--180 {
300 | padding: 180px 0
301 | }
302 |
303 | /*------------------------------
304 | Page section padding left
305 | -------------------------------*/
306 |
307 | .pl--0 {
308 | padding-left: 0px;
309 | }
310 |
311 | .pl--10 {
312 | padding-left: 10px;
313 | }
314 |
315 | .pl--20 {
316 | padding-left: 20px;
317 | }
318 |
319 | .pl--30 {
320 | padding-left: 30px;
321 | }
322 |
323 | .pl--40 {
324 | padding-left: 40px;
325 | }
326 |
327 | .pl--50 {
328 | padding-left: 50px;
329 | }
330 |
331 | .pl--60 {
332 | padding-left: 60px;
333 | }
334 |
335 | .pl--70 {
336 | padding-left: 70px;
337 | }
338 |
339 | .pl--80 {
340 | padding-left: 80px;
341 | }
342 |
343 | .pl--90 {
344 | padding-left: 90px;
345 | }
346 |
347 | .pl--100 {
348 | padding-left: 100px;
349 | }
350 |
351 | .pl--110 {
352 | padding-left: 110px;
353 | }
354 |
355 | /*------------------------------
356 | Page section padding right
357 | -------------------------------*/
358 |
359 | .pr--0 {
360 | padding-right: 0px;
361 | }
362 |
363 | .pr--10 {
364 | padding-right: 10px;
365 | }
366 |
367 | .pr--20 {
368 | padding-right: 20px;
369 | }
370 |
371 | .pr--30 {
372 | padding-right: 30px;
373 | }
374 |
375 | .pr--40 {
376 | padding-right: 40px;
377 | }
378 |
379 | .pr--50 {
380 | padding-right: 50px;
381 | }
382 |
383 | .pr--60 {
384 | padding-right: 60px;
385 | }
386 |
387 | .pr--70 {
388 | padding-right: 70px;
389 | }
390 |
391 | .pr--80 {
392 | padding-right: 80px;
393 | }
394 |
395 | .pr--90 {
396 | padding-right: 90px;
397 | }
398 |
399 | .pr--100 {
400 | padding-right: 100px;
401 | }
402 |
403 | .pr--110 {
404 | padding-right: 110px;
405 | }
406 |
407 | /* Colors */
408 |
409 | :root {
410 | --primary-color: #4336FB;
411 | }
412 |
413 | #preloader {
414 | position: fixed;
415 | left: 0;
416 | top: 0;
417 | z-index: 99999;
418 | height: 100%;
419 | width: 100%;
420 | background: #fff;
421 | display: flex;
422 | }
423 | .loader{
424 | margin: auto;
425 | height: 50px;
426 | width: 50px;
427 | border-radius: 50%;
428 | position: relative;
429 | }
430 | .loader:before{
431 | content: '';
432 | position: absolute;
433 | left: 0;
434 | top: 0;
435 | height: 100%;
436 | width: 100%;
437 | background: #000;
438 | border-radius: 50%;
439 | opacity: 0;
440 | animation: popin 1.5s linear infinite 0s;
441 | }
442 | .loader:after{
443 | content: '';
444 | position: absolute;
445 | left: 0;
446 | top: 0;
447 | height: 100%;
448 | width: 100%;
449 | background: #000;
450 | border-radius: 50%;
451 | opacity: 0;
452 | animation: popin 1.5s linear infinite 0.5s;
453 | }
454 |
455 | @keyframes popin{
456 | 0%{
457 | opacity: 0;
458 | transform: scale(0);
459 | }
460 | 1%{
461 | opacity: 0.1;
462 | transform: scale(0);
463 | }
464 | 99%{
465 | opacity: 0;
466 | transform: scale(2);
467 | }
468 | 100%{
469 | opacity: 0;
470 | transform: scale(0);
471 | }
472 | }
--------------------------------------------------------------------------------
/srtdash/assets/css/metisMenu.css:
--------------------------------------------------------------------------------
1 | /*!
2 | * metismenu - v2.7.8
3 | * A jQuery menu plugin
4 | * https://github.com/onokumus/metismenu#readme
5 | *
6 | * Made by Osman Nuri Okumus (https://github.com/onokumus)
7 | * Under MIT License
8 | */
9 | .metismenu .arrow {
10 | float: right;
11 | line-height: 1.42857;
12 | }
13 | *[dir="rtl"] .metismenu .arrow {
14 | float: left;
15 | }
16 |
17 | /*
18 | * Require Bootstrap 3.x
19 | * https://github.com/twbs/bootstrap
20 | */
21 |
22 | .metismenu .glyphicon.arrow:before {
23 | content: "\e079";
24 | }
25 | .metismenu .active > a > .glyphicon.arrow:before {
26 | content: "\e114";
27 | }
28 |
29 | /*
30 | * Require Font-Awesome
31 | * http://fortawesome.github.io/Font-Awesome/
32 | */
33 |
34 | .metismenu .fa.arrow:before {
35 | content: "\f104";
36 | }
37 | .metismenu .active > a > .fa.arrow:before {
38 | content: "\f107";
39 | }
40 |
41 | /*
42 | * Require Ionicons
43 | * http://ionicons.com/
44 | */
45 |
46 | .metismenu .ion.arrow:before {
47 | content: "\f3d2"
48 | }
49 | .metismenu .active > a > .ion.arrow:before {
50 | content: "\f3d0";
51 | }
52 | .metismenu .plus-times {
53 | float: right;
54 | }
55 | *[dir="rtl"] .metismenu .plus-times {
56 | float: left;
57 | }
58 | .metismenu .fa.plus-times:before {
59 | content: "\f067";
60 | }
61 | .metismenu .active > a > .fa.plus-times {
62 | -webkit-transform: rotate(45deg);
63 | transform: rotate(45deg);
64 | }
65 | .metismenu .plus-minus {
66 | float: right;
67 | }
68 | *[dir="rtl"] .metismenu .plus-minus {
69 | float: left;
70 | }
71 | .metismenu .fa.plus-minus:before {
72 | content: "\f067";
73 | }
74 | .metismenu .active > a > .fa.plus-minus:before {
75 | content: "\f068";
76 | }
77 | .metismenu .collapse {
78 | display: none;
79 | }
80 | .metismenu .collapse.in {
81 | display: block;
82 | }
83 | .metismenu .collapsing {
84 | position: relative;
85 | height: 0;
86 | overflow: hidden;
87 | transition-timing-function: ease;
88 | transition-duration: .35s;
89 | transition-property: height, visibility;
90 | }
91 |
92 | .metismenu .has-arrow {
93 | position: relative;
94 | }
95 |
96 | .metismenu .has-arrow::after {
97 | position: absolute;
98 | content: '';
99 | width: .5em;
100 | height: .5em;
101 | border-width: 1px 0 0 1px;
102 | border-style: solid;
103 | border-color: initial;
104 | right: 1em;
105 | -webkit-transform: rotate(-45deg) translate(0, -50%);
106 | transform: rotate(-45deg) translate(0, -50%);
107 | -webkit-transform-origin: top;
108 | transform-origin: top;
109 | top: 50%;
110 | transition: all .3s ease-out;
111 | }
112 |
113 | *[dir="rtl"] .metismenu .has-arrow::after {
114 | right: auto;
115 | left: 1em;
116 | -webkit-transform: rotate(135deg) translate(0, -50%);
117 | transform: rotate(135deg) translate(0, -50%);
118 | }
119 |
120 | .metismenu .active > .has-arrow::after,
121 | .metismenu .has-arrow[aria-expanded="true"]::after {
122 | -webkit-transform: rotate(-135deg) translate(0, -50%);
123 | transform: rotate(-135deg) translate(0, -50%);
124 | }
125 |
126 | *[dir="rtl"] .metismenu .active > .has-arrow::after,
127 | *[dir="rtl"] .metismenu .has-arrow[aria-expanded="true"]::after {
128 | -webkit-transform: rotate(225deg) translate(0, -50%);
129 | transform: rotate(225deg) translate(0, -50%);
130 | }
131 |
132 | /*# sourceMappingURL=metisMenu.css.map */
--------------------------------------------------------------------------------
/srtdash/assets/css/owl.carousel.min.css:
--------------------------------------------------------------------------------
1 | /**
2 | * Owl Carousel v2.2.1
3 | * Copyright 2013-2017 David Deutsch
4 | * Licensed under ()
5 | */
6 | .owl-carousel,.owl-carousel .owl-item{-webkit-tap-highlight-color:transparent;position:relative}.owl-carousel{display:none;width:100%;z-index:1}.owl-carousel .owl-stage{position:relative;-ms-touch-action:pan-Y;-moz-backface-visibility:hidden}.owl-carousel .owl-stage:after{content:".";display:block;clear:both;visibility:hidden;line-height:0;height:0}.owl-carousel .owl-stage-outer{position:relative;overflow:hidden;-webkit-transform:translate3d(0,0,0)}.owl-carousel .owl-item,.owl-carousel .owl-wrapper{-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0)}.owl-carousel .owl-item{min-height:1px;float:left;-webkit-backface-visibility:hidden;-webkit-touch-callout:none}.owl-carousel .owl-item img{display:block;width:100%}.owl-carousel .owl-dots.disabled,.owl-carousel .owl-nav.disabled{display:none}.no-js .owl-carousel,.owl-carousel.owl-loaded{display:block}.owl-carousel .owl-dot,.owl-carousel .owl-nav .owl-next,.owl-carousel .owl-nav .owl-prev{cursor:pointer;cursor:hand;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel.owl-loading{opacity:0;display:block}.owl-carousel.owl-hidden{opacity:0}.owl-carousel.owl-refresh .owl-item{visibility:hidden}.owl-carousel.owl-drag .owl-item{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel.owl-grab{cursor:move;cursor:grab}.owl-carousel.owl-rtl{direction:rtl}.owl-carousel.owl-rtl .owl-item{float:right}.owl-carousel .animated{animation-duration:1s;animation-fill-mode:both}.owl-carousel .owl-animated-in{z-index:0}.owl-carousel .owl-animated-out{z-index:1}.owl-carousel .fadeOut{animation-name:fadeOut}@keyframes fadeOut{0%{opacity:1}100%{opacity:0}}.owl-height{transition:height .5s ease-in-out}.owl-carousel .owl-item .owl-lazy{opacity:0;transition:opacity .4s ease}.owl-carousel .owl-item img.owl-lazy{transform-style:preserve-3d}.owl-carousel .owl-video-wrapper{position:relative;height:100%;background:#000}.owl-carousel .owl-video-play-icon{position:absolute;height:80px;width:80px;left:50%;top:50%;margin-left:-40px;margin-top:-40px;background:url(owl.video.play.png) no-repeat;cursor:pointer;z-index:1;-webkit-backface-visibility:hidden;transition:transform .1s ease}.owl-carousel .owl-video-play-icon:hover{-ms-transform:scale(1.3,1.3);transform:scale(1.3,1.3)}.owl-carousel .owl-video-playing .owl-video-play-icon,.owl-carousel .owl-video-playing .owl-video-tn{display:none}.owl-carousel .owl-video-tn{opacity:0;height:100%;background-position:center center;background-repeat:no-repeat;background-size:contain;transition:opacity .4s ease}.owl-carousel .owl-video-frame{position:relative;z-index:1;height:100%;width:100%}
--------------------------------------------------------------------------------
/srtdash/assets/css/responsive.css:
--------------------------------------------------------------------------------
1 | /* (1366x768) WXGA Display */
2 |
3 | @media screen and (min-width: 1441px) and (max-width: 1920px) {
4 | .error-content {
5 | margin-top: 100px;
6 | }
7 | }
8 |
9 | /*Medium Desktop Device*/
10 |
11 | @media screen and (min-width: 1200px) and (max-width: 1440px) {
12 | .col-ml-6 {
13 | -webkit-box-flex: 0;
14 | -ms-flex: 0 0 50%;
15 | flex: 0 0 50%;
16 | max-width: 50%;
17 | }
18 | .col-ml-12 {
19 | -webkit-box-flex: 0;
20 | -ms-flex: 0 0 100%;
21 | flex: 0 0 100%;
22 | max-width: 100%;
23 | }
24 | .col-ml-8 {
25 | -webkit-box-flex: 0;
26 | -ms-flex: 0 0 66.666667%;
27 | flex: 0 0 66.666667%;
28 | max-width: 66.666667%;
29 | }
30 | .col-ml-4 {
31 | -webkit-box-flex: 0;
32 | -ms-flex: 0 0 33.333333%;
33 | flex: 0 0 33.333333%;
34 | max-width: 33.333333%;
35 | }
36 |
37 | #coin_distribution-wrapper {
38 | margin-top: -68px;
39 | }
40 | .cripto-live ul li .icon {
41 | height: 23px;
42 | width: 23px;
43 | margin-right: 3px;
44 | font-size: 13px;
45 | line-height: 23px;
46 | }
47 | .cripto-live ul li {
48 | margin-bottom: 35px;
49 | font-size: 15px;
50 | }
51 | .exhcange-rate {
52 | padding: 48px 38px;
53 | }
54 | .exchange-btn button {
55 | margin-top: 37px;
56 | }
57 | .single-report h2 {
58 | font-size: 19px;
59 | }
60 | .s-report-title {
61 | margin-bottom: 17px;
62 | }
63 | .card-title {
64 | font-size: 20px;
65 | }
66 | .s-report-inner {
67 | padding-left: 73px;
68 | }
69 | /* dashboard two */
70 | .s-report-title .header-title {
71 | font-size: 15px;
72 | }
73 | .member-box .media-body p {
74 | font-size: 15px;
75 | }
76 | .s-member img {
77 | max-width: 60px;
78 | }
79 | .s-member .media-body {
80 | margin-left: 20px!important;
81 | }
82 | .tm-social a {
83 | margin-left: 3px;
84 | font-size: 18px;
85 | }
86 | .member-box .media-body span {
87 | font-size: 14px;
88 | line-height: 21px;
89 | }
90 | .team-search {
91 | margin-top: 20px;
92 | }
93 | .team-search input {
94 | width: 100%;
95 | }
96 |
97 | /* error page */
98 | .error-content {
99 | margin-top: 100px;
100 | }
101 |
102 | /* dashboard three */
103 | #salesanalytic {
104 | height: 500px;
105 | }
106 | #seomap {
107 | height: 346px;
108 | }
109 | #seolinechart8 {
110 | margin-top: 60px;
111 | }
112 | }
113 |
114 | /* Normal desktop :992px. */
115 |
116 | @media (min-width: 1200px) and (max-width: 1364px) {
117 |
118 | /* sidebar */
119 | .sidebar-menu {
120 | width: 365px;
121 | }
122 | .nav-btn {
123 | position: fixed;
124 | z-index: 99;
125 | left: 363px;
126 | background: #303641;
127 | padding: 14px;
128 | top: 0;
129 | margin: 0;
130 | }
131 | .nav-btn span {
132 | background: #fffbfb;
133 | }
134 | .sbar_collapsed .sidebar-menu {
135 | left: -90%;
136 | }
137 | .sbar_collapsed .nav-btn {
138 | position: initial;
139 | background: none;
140 | padding: 0;
141 | margin: 10px 30px 0 0;
142 | }
143 | .sbar_collapsed .nav-btn span {
144 | background: #b3aaaa;
145 | }
146 | .sbar_collapsed .logo a span {
147 | display: block;
148 | }
149 | .minisidebar.main-menu {
150 | margin-right: 0;
151 | }
152 | /* main content */
153 | .main-content-inner {
154 | padding: 0 15px 50px;
155 | }
156 | .page-container,
157 | .sbar_collapsed.page-container {
158 | padding-left: 0;
159 | }
160 | /* sidebar collapsed end */
161 | /* pricing */
162 | .col-mdl-4 {
163 | -webkit-box-flex: 0;
164 | -ms-flex: 0 0 33.333333%;
165 | flex: 0 0 33.333333%;
166 | max-width: 33.333333%;
167 | }
168 | }
169 |
170 | @media (min-width: 992px) and (max-width: 1199px) {
171 | /* dashboard one */
172 | .mt-md-30 {
173 | margin-top: 30px;
174 | }
175 | /* sidebar */
176 | .sidebar-menu {
177 | width: 306px;
178 | }
179 | .nav-btn {
180 | position: fixed;
181 | z-index: 99;
182 | left: 304px;
183 | background: #303641;
184 | padding: 14px;
185 | top: 0;
186 | margin: 0;
187 | }
188 | .nav-btn span {
189 | background: #fffbfb;
190 | }
191 | .sbar_collapsed .sidebar-menu {
192 | left: -90%;
193 | }
194 | .sbar_collapsed .nav-btn {
195 | position: initial;
196 | background: none;
197 | padding: 0;
198 | margin: 10px 30px 0 0;
199 | }
200 | .sbar_collapsed .nav-btn span {
201 | background: #b3aaaa;
202 | }
203 | .sbar_collapsed .logo a span {
204 | display: block;
205 | }
206 | .minisidebar.main-menu {
207 | margin-right: 0;
208 | }
209 | /* main content */
210 | .main-content-inner {
211 | padding: 0 15px 50px;
212 | }
213 | .page-container,
214 | .sbar_collapsed.page-container {
215 | padding-left: 0;
216 | }
217 | /* fact area */
218 | .single-report h2 {
219 | font-size: 17px;
220 | }
221 | .s-report-inner {
222 | padding-left: 73px;
223 | }
224 | .s-report-title {
225 | margin-bottom: 17px;
226 | }
227 | .s-report-title .card-title {
228 | font-size: 20px;
229 | }
230 | #coin_distribution-wrapper {
231 | margin-top: -65px;
232 | }
233 | #verview-shart-wrapper {
234 | margin-top: -26px;
235 | }
236 | .cripto-live ul li .icon {
237 | height: 23px;
238 | width: 23px;
239 | margin-right: 3px;
240 | font-size: 13px;
241 | line-height: 23px;
242 | }
243 | .cripto-live ul li {
244 | margin-bottom: 35px;
245 | font-size: 15px;
246 | }
247 | .letest-news {
248 | display: flex;
249 | flex-wrap: wrap;
250 | justify-content: space-between;
251 | }
252 | .exchange-btn button {
253 | margin-top: 37px;
254 | }
255 | .single-post {
256 | flex-basis: calc(50% - 15px);
257 | display: block;
258 | }
259 | .lts-thumb {
260 | margin-bottom: 10px;
261 | }
262 | /* dashboard two */
263 | .member-box .media-body p {
264 | font-size: 16px;
265 | }
266 |
267 | /* dahsboard three */
268 | #seolinechart8 {
269 | margin-top: 60px;
270 | }
271 |
272 | /* horizontal header dashboard */
273 | .horizontal-menu ul li a {
274 | padding: 10px 8px;
275 | }
276 | .seo-fact #seolinechart3,
277 | .seo-fact #seolinechart4 {
278 | max-width: 144px;
279 | }
280 | }
281 |
282 | /* Normal desktop :991px. */
283 |
284 | @media (min-width: 768px) and (max-width: 991px) {
285 | /* dashboard one */
286 | /* sidebar */
287 | .sidebar-menu {
288 | width: 306px;
289 | }
290 | .nav-btn {
291 | position: fixed;
292 | z-index: 99;
293 | left: 304px;
294 | background: #303641;
295 | padding: 14px;
296 | top: 0;
297 | margin: 0;
298 | }
299 | .nav-btn span {
300 | background: #fffbfb;
301 | }
302 | .sbar_collapsed .sidebar-menu {
303 | left: -90%;
304 | }
305 | .sbar_collapsed .nav-btn {
306 | position: initial;
307 | background: none;
308 | padding: 0;
309 | margin: 10px 30px 0 0;
310 | }
311 | .sbar_collapsed .nav-btn span {
312 | background: #b3aaaa;
313 | }
314 | .sbar_collapsed .logo a span {
315 | display: block;
316 | }
317 | .minisidebar.main-menu {
318 | margin-right: 0;
319 | }
320 | .sbar_collapsed .metismenu li a span,
321 | .sbar_collapsed .metismenu li a:after,
322 | .sbar_collapsed .metismenu .collapse.in {
323 | display: inline-block;
324 | }
325 | /* main content */
326 | .main-content-inner {
327 | padding: 0 15px 50px;
328 | }
329 | .page-container,
330 | .sbar_collapsed.page-container {
331 | padding-left: 0;
332 | }
333 | /* main content */
334 | .search-box input {
335 | width: 278px;
336 | }
337 | /* fact area */
338 | .s-report-inner {
339 | padding-left: 18px;
340 | }
341 | .single-report .icon {
342 | display: none;
343 | }
344 | .single-report h2 {
345 | font-size: 16px;
346 | }
347 | .single-report span {
348 | font-size: 13px;
349 | }
350 | .s-report-title {
351 | margin-bottom: 19px;
352 | }
353 | .card-title {
354 | font-size: 18px;
355 | }
356 | /* coin distribution */
357 | .coin-distribution {
358 | margin-top: 30px;
359 | }
360 | #coin_distribution-wrapper {
361 | margin-top: -101px;
362 | }
363 | .mt-sm-30 {
364 | margin-top: 30px;
365 | }
366 | /* criptio price */
367 | .cripto-live ul li {
368 | width: 49%;
369 | display: inline-block;
370 | }
371 | .input-form input {
372 | height: 70px;
373 | padding-left: 20px;
374 | }
375 | .exchange-btn button {
376 | height: 70px;
377 | }
378 | .input-form span {
379 | height: 70px;
380 | line-height: 70px;
381 | }
382 | /* icons */
383 | .icon-container {
384 | flex-basis: calc(100% * (1/3));
385 | }
386 |
387 | /* maps */
388 | #mapamchart1,
389 | #mapamchart2,
390 | #mapamchart3,
391 | #mapamchart4,
392 | #mapamchart5,
393 | #mapamchart6 {
394 | height: 300px;
395 | }
396 | #google_map {
397 | height: 400px;
398 | }
399 |
400 | /* login page */
401 | .ptb--100 {
402 | padding: 90px 0;
403 | }
404 | /* horizontal header dashboard */
405 | .header-bottom .search-box input {
406 | max-width: 100%;
407 | }
408 | }
409 |
410 | /* small mobile :320px. */
411 |
412 | @media (max-width: 767px) {
413 | .ptb--100 {
414 | padding: 90px 0;
415 | }
416 | }
417 |
418 | /* Large Mobile :480px. */
419 |
420 | @media only screen and (min-width: 480px) and (max-width: 767px) {
421 | /* dashboard one */
422 | .mb-xs-30 {
423 | margin-bottom: 30px;
424 | }
425 | .mt-sm-30 {
426 | margin-top: 30px;
427 | }
428 | .mb-sm-40 {
429 | margin-bottom: 40px;
430 | }
431 | /* sidebar */
432 | .sidebar-menu {
433 | width: 365px;
434 | }
435 | .nav-btn {
436 | position: fixed;
437 | z-index: 99;
438 | left: 363px;
439 | background: #303641;
440 | padding: 14px;
441 | top: 0;
442 | margin: 0;
443 | }
444 | .nav-btn span {
445 | background: #fffbfb;
446 | }
447 | .sbar_collapsed .sidebar-menu {
448 | left: -90%;
449 | }
450 | .sbar_collapsed .nav-btn {
451 | position: initial;
452 | background: none;
453 | padding: 0;
454 | margin: 10px 30px 0 0;
455 | }
456 | .sbar_collapsed .nav-btn span {
457 | background: #b3aaaa;
458 | }
459 | .sbar_collapsed .logo a span {
460 | display: block;
461 | }
462 | .minisidebar.main-menu {
463 | margin-right: 0;
464 | }
465 | /* main content */
466 | .main-content-inner {
467 | padding: 0 15px 35px;
468 | }
469 | .page-container,
470 | .sbar_collapsed.page-container {
471 | padding-left: 0;
472 | }
473 | /* main content */
474 | .search-box input {
475 | width: 278px;
476 | }
477 | .notification-area li {
478 | margin-left: 21px;
479 | }
480 | .page-title {
481 | font-size: 21px;
482 | }
483 | #coin_distribution-wrapper {
484 | margin-top: -74px;
485 | }
486 | .coin-distribution {
487 | margin-top: 30px;
488 | }
489 | .trd-history-tabs ul li a {
490 | margin: 0 8px;
491 | }
492 | table.dbkit-table tr {
493 | height: 64px;
494 | }
495 | .lts-thumb {
496 | margin-bottom: 15px;
497 | }
498 | .lts-content h2 a {
499 | font-size: 19px;
500 | font-weight: 500;
501 | }
502 | .lts-content span {
503 | font-size: 16px;
504 | font-weight: 500;
505 | margin-bottom: 6px;
506 | }
507 | .input-form input {
508 | height: 70px;
509 | padding-left: 20px;
510 | }
511 | .exchange-btn button {
512 | height: 70px;
513 | }
514 | .input-form span {
515 | height: 70px;
516 | line-height: 70px;
517 | }
518 | /* icons */
519 | .icon-container {
520 | flex-basis: calc(100% * (1/2));
521 | }
522 |
523 | /* maps */
524 | #mapamchart1,
525 | #mapamchart2,
526 | #mapamchart3,
527 | #mapamchart4,
528 | #mapamchart5,
529 | #mapamchart6 {
530 | height: 300px;
531 | }
532 | #google_map {
533 | height: 400px;
534 | }
535 |
536 | /* horizontal header dashboard */
537 | .header-bottom .search-box input {
538 | max-width: 100%;
539 | }
540 | }
541 |
542 | /* small mobile :320px. */
543 |
544 | @media (min-width: 240px) and (max-width: 479px) {
545 | /* dashboard one */
546 | /* sidebar */
547 | .sidebar-menu {
548 | width: calc(100% - 48px);
549 | }
550 | .nav-btn {
551 | position: fixed;
552 | z-index: 99;
553 | right: 0;
554 | background: #303641;
555 | padding: 14px;
556 | top: 0;
557 | margin: 0;
558 | }
559 | .nav-btn span {
560 | background: #fffbfb;
561 | }
562 | .sbar_collapsed .sidebar-menu {
563 | left: -100%;
564 | }
565 | .sbar_collapsed .nav-btn {
566 | position: initial;
567 | background: none;
568 | padding: 0;
569 | margin: 10px 30px 0 0;
570 | }
571 | .sbar_collapsed .nav-btn span {
572 | background: #b3aaaa;
573 | }
574 | .sbar_collapsed .logo a span {
575 | display: block;
576 | }
577 | .minisidebar.main-menu {
578 | margin-right: 0;
579 | }
580 | /* main content */
581 | .main-content-inner {
582 | padding: 0 15px 50px;
583 | }
584 | .page-container,
585 | .sbar_collapsed.page-container {
586 | padding-left: 0;
587 | }
588 | .card-body {
589 | padding: 1.25rem;
590 | }
591 | /* hedaer */
592 | .search-box input {
593 | width: 223px;
594 | }
595 | .notification-area {
596 | text-align: center;
597 | margin: 30px 0 3px;
598 | float: none;
599 | }
600 | .notification-area li {
601 | margin: 0 15px;
602 | }
603 | .user-profile {
604 | margin: 16px 0 10px 0;
605 | }
606 | .user-profile .dropdown-menu {
607 | width: 100%;
608 | right: 0px!important;
609 | }
610 | .nt-enveloper-box.notify-box {
611 | width: 286px;
612 | right: -101px!important;
613 | }
614 | .bell-notify-box.notify-box {
615 | width: 286px;
616 | right: -160px!important;
617 | }
618 | .page-title-area {
619 | padding: 15px 30px 0;
620 | }
621 | /* fact area */
622 | .s-report-inner {
623 | padding-left: 20px;
624 | }
625 | .single-report .icon {
626 | display: none;
627 | }
628 | .single-report h2 {
629 | font-size: 20px;
630 | }
631 | .card-title {
632 | font-size: 18px;
633 | }
634 | .mb-xs-30 {
635 | margin-bottom: 30px;
636 | }
637 | .mt-xs-30 {
638 | margin-top: 30px;
639 | }
640 | .coin-distribution {
641 | margin-top: 30px;
642 | }
643 | #verview-shart {
644 | height: 235px;
645 | }
646 | #coin_distribution-wrapper {
647 | margin-top: -88px;
648 | }
649 | .market-status-table {
650 | padding-top: 0!important;
651 | }
652 | .cripto-live ul li {
653 | font-size: 14px;
654 | }
655 | .cripto-live ul li .icon {
656 | height: 25px;
657 | width: 25px;
658 | margin-right: 4px;
659 | font-size: 14px;
660 | line-height: 25px;
661 | }
662 | .cripto-live ul li span {
663 | width: 45%;
664 | }
665 | .trd-history-tabs ul li a {
666 | margin-right: 18px;
667 | margin-left: 0;
668 | }
669 | .trd-history-tabs {
670 | margin: 10px 0;
671 | }
672 | table.dbkit-table tr {
673 | height: 63px;
674 | }
675 | /* blog */
676 | .lts-content h2 a {
677 | font-size: 18px;
678 | font-weight: 500;
679 | }
680 | .lts-thumb {
681 | flex-basis: 100%;
682 | margin-bottom: 10px;
683 | }
684 | .lts-content {
685 | flex-basis: 100%;
686 | }
687 | .mb-xs-20 {
688 | margin-bottom: 20px;
689 | }
690 | .mb-xs-40 {
691 | margin-bottom: 40px;
692 | }
693 | .input-form input {
694 | height: 60px;
695 | padding-left: 15px;
696 | box-shadow: 0 0 12px rgba(0, 0, 0, 0.07);
697 | }
698 | .input-form span {
699 | width: 86px;
700 | line-height: 60px;
701 | font-size: 17px;
702 | }
703 | .exhcange-rate {
704 | padding: 0;
705 | background-color: #fff;
706 | }
707 | .exhcange-rate .exchange-devider {
708 | font-size: 21px;
709 | margin: 13px 0;
710 | }
711 | .exchange-btn button {
712 | height: 60px;
713 | }
714 | .lts-content span {
715 | font-size: 14px;
716 | margin-bottom: 5px;
717 | display: block;
718 | }
719 | /* Dashboard Two */
720 | #visitor_graph {
721 | height: 300px;
722 | }
723 | .pagination_area {
724 | float: none;
725 | text-align: center;
726 | }
727 | .s-member .media img {
728 | max-width: 45px;
729 | }
730 | .member-box .media-body {
731 | margin-left: 10px!important;
732 | }
733 | .member-box .media-body p {
734 | font-size: 15px;
735 | }
736 | .tm-social a {
737 | margin-left: 5px;
738 | font-size: 16px;
739 | }
740 | .member-box .media-body span {
741 | font-size: 13px;
742 | line-height: 20px;
743 | }
744 | form.team-search {
745 | margin-top: 20px;
746 | }
747 | .s-member {
748 | padding: 21px 0px 7px;
749 | background: #fff;
750 | margin: 15px 0;
751 | border-top: 1px solid #f1ebeb;
752 | }
753 | .s-member:last-child {
754 | margin-bottom: 0;
755 | }
756 | /* bar Chart*/
757 | #ambarchart1,
758 | #ambarchart2,
759 | #ambarchart3,
760 | #ambarchart4,
761 | #ambarchart5,
762 | #ambarchart6 {
763 | height: 250px;
764 | }
765 | /* line chart */
766 | #amlinechart1,
767 | #amlinechart2,
768 | #amlinechart3,
769 | #amlinechart4,
770 | #amlinechart5 {
771 | height: 250px;
772 | }
773 | /* pie chart */
774 | #ampiechart1,
775 | #ampiechart2,
776 | #ampiechart3,
777 | #highpiechart4,
778 | #highpiechart5,
779 | #highpiechart6 {
780 | height: 250px;
781 | }
782 | /* accordion */
783 | .according .card-header a {
784 | padding: 12px 15px;
785 | }
786 | .accordion-s2 .card-header a:before,
787 | .accordion-s3 .card-header a:before {
788 | right: 9px;
789 | }
790 | /* dropdown */
791 | .btn {
792 | padding: 11px 16px;
793 | }
794 | /* media object */
795 | .child-media {
796 | padding-left: 20px;
797 | }
798 | /* typography */
799 | blockquote {
800 | padding: 20px 15px 20px 60px;
801 | }
802 | /* icons */
803 | .icon-container {
804 | flex-basis: 100%;
805 | }
806 |
807 | /* maps */
808 | #mapamchart1,
809 | #mapamchart2,
810 | #mapamchart3,
811 | #mapamchart4,
812 | #mapamchart5,
813 | #mapamchart6 {
814 | height: 200px;
815 | }
816 | #google_map {
817 | height: 300px;
818 | }
819 |
820 | /* invoice */
821 | .invoice-date {
822 | margin-top: 20px;
823 | }
824 | .invoice-buttons a {
825 | padding: 12px 12px;
826 | }
827 | .login-form-head,
828 | .login-form-body {
829 | padding: 40px 20px;
830 | }
831 | .rmber-area {
832 | font-size: 12px;
833 | }
834 |
835 | /* dashboard thee */
836 | .seo-fact #seolinechart3,
837 | .seo-fact #seolinechart4 {
838 | max-width: 128px;
839 | }
840 | .seofct-icon i {
841 | font-size: 37px;
842 | }
843 | .seo-fact h2 {
844 | font-size: 22px;
845 | }
846 | #user-statistics {
847 | height: 250px;
848 | }
849 | #salesanalytic {
850 | height: 400px;
851 | }
852 | #seomap {
853 | height: 180px;
854 | }
855 | .tstu-img {
856 | width: 60px;
857 | margin-right: 14px;
858 | }
859 | .offset-area {
860 | width: 300px;
861 | }
862 | }
--------------------------------------------------------------------------------
/srtdash/assets/css/slicknav.min.css:
--------------------------------------------------------------------------------
1 | /*!
2 | * SlickNav Responsive Mobile Menu v1.0.10
3 | * (c) 2016 Josh Cope
4 | * licensed under MIT
5 | */.slicknav_btn,.slicknav_nav .slicknav_item{cursor:pointer}.slicknav_menu,.slicknav_menu *{box-sizing:border-box}.slicknav_btn{position:relative;display:block;vertical-align:middle;float:right;padding:.438em .625em;line-height:1.125em}.slicknav_btn .slicknav_icon-bar+.slicknav_icon-bar{margin-top:.188em}.slicknav_menu .slicknav_menutxt{display:block;line-height:1.188em;float:left;color:#fff;font-weight:700;text-shadow:0 1px 3px #000}.slicknav_menu .slicknav_icon{float:left;width:1.125em;height:.875em;margin:.188em 0 0 .438em}.slicknav_menu .slicknav_icon:before{background:0 0;width:1.125em;height:.875em;display:block;content:"";position:absolute}.slicknav_menu .slicknav_no-text{margin:0}.slicknav_menu .slicknav_icon-bar{display:block;width:1.125em;height:.125em;-webkit-border-radius:1px;-moz-border-radius:1px;border-radius:1px;-webkit-box-shadow:0 1px 0 rgba(0,0,0,.25);-moz-box-shadow:0 1px 0 rgba(0,0,0,.25);box-shadow:0 1px 0 rgba(0,0,0,.25)}.slicknav_menu:after,.slicknav_menu:before{content:" ";display:table}.slicknav_menu:after{clear:both}.slicknav_nav li,.slicknav_nav ul{display:block}.slicknav_nav .slicknav_arrow{font-size:.8em;margin:0 0 0 .4em}.slicknav_nav .slicknav_item a{display:inline}.slicknav_nav .slicknav_row,.slicknav_nav a{display:block}.slicknav_nav .slicknav_parent-link a{display:inline}.slicknav_menu{*zoom:1;font-size:16px;background:#4c4c4c;padding:5px}.slicknav_nav,.slicknav_nav ul{list-style:none;overflow:hidden;padding:0}.slicknav_menu .slicknav_icon-bar{background-color:#fff}.slicknav_btn{margin:5px 5px 6px;text-decoration:none;text-shadow:0 1px 1px rgba(255,255,255,.75);-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;background-color:#222}.slicknav_nav{clear:both;color:#fff;margin:0;font-size:.875em}.slicknav_nav ul{margin:0 0 0 20px}.slicknav_nav .slicknav_row,.slicknav_nav a{padding:5px 10px;margin:2px 5px}.slicknav_nav .slicknav_row:hover{-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;background:#ccc;color:#fff}.slicknav_nav a{text-decoration:none;color:#fff}.slicknav_nav a:hover{-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;background:#ccc;color:#222}.slicknav_nav .slicknav_txtnode{margin-left:15px}.slicknav_nav .slicknav_item a,.slicknav_nav .slicknav_parent-link a{padding:0;margin:0}.slicknav_brand{float:left;color:#fff;font-size:18px;line-height:30px;padding:7px 12px;height:44px}
--------------------------------------------------------------------------------
/srtdash/assets/css/typography.css:
--------------------------------------------------------------------------------
1 | /*
2 | Table Of Contents
3 | =========================
4 | - Default Typography
5 | - Custom Typography
6 | =========================
7 | */
8 |
9 |
10 | /*
11 | --------------------------
12 | - Default Typography
13 | --------------------------
14 | */
15 |
16 | body {
17 | font-size: 14px;
18 | font-family: 'Lato', sans-serif;
19 | }
20 |
21 | h1,
22 | h2,
23 | h3,
24 | h4,
25 | h5,
26 | h6 {
27 | margin: 0;
28 | font-family: 'Poppins', sans-serif;
29 | }
30 | p{
31 | font-family: 'Lato', sans-serif;
32 | font-size: 15px;
33 | line-height: 26px;
34 | color: #444;
35 | margin-bottom: 0;
36 | }
37 | p img {
38 | margin: 0;
39 | }
40 |
41 | /* links */
42 |
43 | a,
44 | a:visited {
45 | text-decoration: none;
46 | transition: all 0.3s ease-in-out;
47 | -webkit-transition: all 0.3s ease-in-out;
48 | -moz-transition: all 0.3s ease-in-out;
49 | -o-transition: all 0.3s ease-in-out;
50 | outline: 0;
51 | font-family: 'Poppins', sans-serif;
52 | }
53 | a:hover{
54 | text-decoration: none;
55 | }
56 | a:focus {
57 | text-decoration: none;
58 | outline: 0;
59 | }
60 |
61 | p a,
62 | p a:visited {
63 | line-height: inherit;
64 | outline: 0;
65 | }
66 |
67 |
68 | /* list */
69 |
70 | ul,
71 | ol {
72 | margin-bottom: 0px;
73 | margin-top: 0px;
74 | padding: 0;
75 | }
76 |
77 | ul {
78 | margin: 0;
79 | list-style-type: none;
80 | }
81 |
82 | ol {
83 | list-style: decimal;
84 | }
85 |
86 | ol,
87 | ul.square,
88 | ul.circle,
89 | ul.disc {
90 | margin-left: 0px;
91 | }
92 |
93 | ul.square {
94 | list-style: square outside;
95 | }
96 |
97 | ul.circle {
98 | list-style: circle outside;
99 | }
100 |
101 | ul.disc {
102 | list-style: disc outside;
103 | }
104 |
105 | ul ul,
106 | ul ol,
107 | ol ol,
108 | ol ul {
109 | margin: 0;
110 | }
111 |
112 | ul ul li,
113 | ul ol li,
114 | ol ol li,
115 | ol ul li {
116 | margin-bottom: 0px;
117 | }
118 |
119 | button {
120 | cursor: pointer;
121 | outline: none!important;
122 | letter-spacing: 0;
123 | }
124 |
125 | /*
126 | --------------------------
127 | - Custom Typography
128 | --------------------------
129 | */
130 | /* blockquote */
131 | blockquote{
132 | padding: 60px;
133 | position: relative;
134 | background: #853BFA;
135 | }
136 | blockquote:before{
137 | content: '\f10d';
138 | font-family: fontawesome;
139 | color: #fff;
140 | font-size: 32px;
141 | position: absolute;
142 | left: 16px;
143 | top: 46px;
144 | }
145 | blockquote p{
146 | font-size: 17px;
147 | color: #fff;
148 | }
149 | .blockquote-footer{
150 | color: #fff;
151 | }
--------------------------------------------------------------------------------
/srtdash/assets/fonts/FontAwesome.otf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/puikinsh/srtdash-admin-dashboard/50bfdbb14ea149b7f6234f7de1fcf121105603d4/srtdash/assets/fonts/FontAwesome.otf
--------------------------------------------------------------------------------
/srtdash/assets/fonts/fontawesome-webfont.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/puikinsh/srtdash-admin-dashboard/50bfdbb14ea149b7f6234f7de1fcf121105603d4/srtdash/assets/fonts/fontawesome-webfont.eot
--------------------------------------------------------------------------------
/srtdash/assets/fonts/fontawesome-webfont.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/puikinsh/srtdash-admin-dashboard/50bfdbb14ea149b7f6234f7de1fcf121105603d4/srtdash/assets/fonts/fontawesome-webfont.ttf
--------------------------------------------------------------------------------
/srtdash/assets/fonts/fontawesome-webfont.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/puikinsh/srtdash-admin-dashboard/50bfdbb14ea149b7f6234f7de1fcf121105603d4/srtdash/assets/fonts/fontawesome-webfont.woff
--------------------------------------------------------------------------------
/srtdash/assets/fonts/fontawesome-webfont.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/puikinsh/srtdash-admin-dashboard/50bfdbb14ea149b7f6234f7de1fcf121105603d4/srtdash/assets/fonts/fontawesome-webfont.woff2
--------------------------------------------------------------------------------
/srtdash/assets/fonts/themify.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/puikinsh/srtdash-admin-dashboard/50bfdbb14ea149b7f6234f7de1fcf121105603d4/srtdash/assets/fonts/themify.eot
--------------------------------------------------------------------------------
/srtdash/assets/fonts/themify.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/puikinsh/srtdash-admin-dashboard/50bfdbb14ea149b7f6234f7de1fcf121105603d4/srtdash/assets/fonts/themify.ttf
--------------------------------------------------------------------------------
/srtdash/assets/fonts/themify.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/puikinsh/srtdash-admin-dashboard/50bfdbb14ea149b7f6234f7de1fcf121105603d4/srtdash/assets/fonts/themify.woff
--------------------------------------------------------------------------------
/srtdash/assets/images/author/author-img1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/puikinsh/srtdash-admin-dashboard/50bfdbb14ea149b7f6234f7de1fcf121105603d4/srtdash/assets/images/author/author-img1.jpg
--------------------------------------------------------------------------------
/srtdash/assets/images/author/author-img2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/puikinsh/srtdash-admin-dashboard/50bfdbb14ea149b7f6234f7de1fcf121105603d4/srtdash/assets/images/author/author-img2.jpg
--------------------------------------------------------------------------------
/srtdash/assets/images/author/author-img3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/puikinsh/srtdash-admin-dashboard/50bfdbb14ea149b7f6234f7de1fcf121105603d4/srtdash/assets/images/author/author-img3.jpg
--------------------------------------------------------------------------------
/srtdash/assets/images/author/author-img4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/puikinsh/srtdash-admin-dashboard/50bfdbb14ea149b7f6234f7de1fcf121105603d4/srtdash/assets/images/author/author-img4.jpg
--------------------------------------------------------------------------------
/srtdash/assets/images/author/avatar.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/puikinsh/srtdash-admin-dashboard/50bfdbb14ea149b7f6234f7de1fcf121105603d4/srtdash/assets/images/author/avatar.png
--------------------------------------------------------------------------------
/srtdash/assets/images/bg/singin-bg.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/puikinsh/srtdash-admin-dashboard/50bfdbb14ea149b7f6234f7de1fcf121105603d4/srtdash/assets/images/bg/singin-bg.jpg
--------------------------------------------------------------------------------
/srtdash/assets/images/blog/post-thumb1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/puikinsh/srtdash-admin-dashboard/50bfdbb14ea149b7f6234f7de1fcf121105603d4/srtdash/assets/images/blog/post-thumb1.jpg
--------------------------------------------------------------------------------
/srtdash/assets/images/blog/post-thumb2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/puikinsh/srtdash-admin-dashboard/50bfdbb14ea149b7f6234f7de1fcf121105603d4/srtdash/assets/images/blog/post-thumb2.jpg
--------------------------------------------------------------------------------
/srtdash/assets/images/card/card-img1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/puikinsh/srtdash-admin-dashboard/50bfdbb14ea149b7f6234f7de1fcf121105603d4/srtdash/assets/images/card/card-img1.jpg
--------------------------------------------------------------------------------
/srtdash/assets/images/card/card-img10.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/puikinsh/srtdash-admin-dashboard/50bfdbb14ea149b7f6234f7de1fcf121105603d4/srtdash/assets/images/card/card-img10.jpg
--------------------------------------------------------------------------------
/srtdash/assets/images/card/card-img2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/puikinsh/srtdash-admin-dashboard/50bfdbb14ea149b7f6234f7de1fcf121105603d4/srtdash/assets/images/card/card-img2.jpg
--------------------------------------------------------------------------------
/srtdash/assets/images/card/card-img3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/puikinsh/srtdash-admin-dashboard/50bfdbb14ea149b7f6234f7de1fcf121105603d4/srtdash/assets/images/card/card-img3.jpg
--------------------------------------------------------------------------------
/srtdash/assets/images/card/card-img4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/puikinsh/srtdash-admin-dashboard/50bfdbb14ea149b7f6234f7de1fcf121105603d4/srtdash/assets/images/card/card-img4.jpg
--------------------------------------------------------------------------------
/srtdash/assets/images/card/card-img5.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/puikinsh/srtdash-admin-dashboard/50bfdbb14ea149b7f6234f7de1fcf121105603d4/srtdash/assets/images/card/card-img5.jpg
--------------------------------------------------------------------------------
/srtdash/assets/images/card/card-img6.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/puikinsh/srtdash-admin-dashboard/50bfdbb14ea149b7f6234f7de1fcf121105603d4/srtdash/assets/images/card/card-img6.jpg
--------------------------------------------------------------------------------
/srtdash/assets/images/card/card-img7.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/puikinsh/srtdash-admin-dashboard/50bfdbb14ea149b7f6234f7de1fcf121105603d4/srtdash/assets/images/card/card-img7.jpg
--------------------------------------------------------------------------------
/srtdash/assets/images/card/card-img8.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/puikinsh/srtdash-admin-dashboard/50bfdbb14ea149b7f6234f7de1fcf121105603d4/srtdash/assets/images/card/card-img8.jpg
--------------------------------------------------------------------------------
/srtdash/assets/images/card/card-img9.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/puikinsh/srtdash-admin-dashboard/50bfdbb14ea149b7f6234f7de1fcf121105603d4/srtdash/assets/images/card/card-img9.jpg
--------------------------------------------------------------------------------
/srtdash/assets/images/icon/Thumbs.db:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/puikinsh/srtdash-admin-dashboard/50bfdbb14ea149b7f6234f7de1fcf121105603d4/srtdash/assets/images/icon/Thumbs.db
--------------------------------------------------------------------------------
/srtdash/assets/images/icon/loader.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/puikinsh/srtdash-admin-dashboard/50bfdbb14ea149b7f6234f7de1fcf121105603d4/srtdash/assets/images/icon/loader.gif
--------------------------------------------------------------------------------
/srtdash/assets/images/icon/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/puikinsh/srtdash-admin-dashboard/50bfdbb14ea149b7f6234f7de1fcf121105603d4/srtdash/assets/images/icon/logo.png
--------------------------------------------------------------------------------
/srtdash/assets/images/icon/logo2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/puikinsh/srtdash-admin-dashboard/50bfdbb14ea149b7f6234f7de1fcf121105603d4/srtdash/assets/images/icon/logo2.png
--------------------------------------------------------------------------------
/srtdash/assets/images/icon/market-value/Thumbs.db:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/puikinsh/srtdash-admin-dashboard/50bfdbb14ea149b7f6234f7de1fcf121105603d4/srtdash/assets/images/icon/market-value/Thumbs.db
--------------------------------------------------------------------------------
/srtdash/assets/images/icon/market-value/icon1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/puikinsh/srtdash-admin-dashboard/50bfdbb14ea149b7f6234f7de1fcf121105603d4/srtdash/assets/images/icon/market-value/icon1.png
--------------------------------------------------------------------------------
/srtdash/assets/images/icon/market-value/icon2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/puikinsh/srtdash-admin-dashboard/50bfdbb14ea149b7f6234f7de1fcf121105603d4/srtdash/assets/images/icon/market-value/icon2.png
--------------------------------------------------------------------------------
/srtdash/assets/images/icon/market-value/icon3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/puikinsh/srtdash-admin-dashboard/50bfdbb14ea149b7f6234f7de1fcf121105603d4/srtdash/assets/images/icon/market-value/icon3.png
--------------------------------------------------------------------------------
/srtdash/assets/images/icon/market-value/icon4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/puikinsh/srtdash-admin-dashboard/50bfdbb14ea149b7f6234f7de1fcf121105603d4/srtdash/assets/images/icon/market-value/icon4.png
--------------------------------------------------------------------------------
/srtdash/assets/images/icon/market-value/trends-down-icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/puikinsh/srtdash-admin-dashboard/50bfdbb14ea149b7f6234f7de1fcf121105603d4/srtdash/assets/images/icon/market-value/trends-down-icon.png
--------------------------------------------------------------------------------
/srtdash/assets/images/icon/market-value/trends-up-icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/puikinsh/srtdash-admin-dashboard/50bfdbb14ea149b7f6234f7de1fcf121105603d4/srtdash/assets/images/icon/market-value/trends-up-icon.png
--------------------------------------------------------------------------------
/srtdash/assets/images/icon/market-value/triangle-down.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/puikinsh/srtdash-admin-dashboard/50bfdbb14ea149b7f6234f7de1fcf121105603d4/srtdash/assets/images/icon/market-value/triangle-down.png
--------------------------------------------------------------------------------
/srtdash/assets/images/icon/market-value/triangle-up.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/puikinsh/srtdash-admin-dashboard/50bfdbb14ea149b7f6234f7de1fcf121105603d4/srtdash/assets/images/icon/market-value/triangle-up.png
--------------------------------------------------------------------------------
/srtdash/assets/images/media/media1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/puikinsh/srtdash-admin-dashboard/50bfdbb14ea149b7f6234f7de1fcf121105603d4/srtdash/assets/images/media/media1.jpg
--------------------------------------------------------------------------------
/srtdash/assets/images/media/media2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/puikinsh/srtdash-admin-dashboard/50bfdbb14ea149b7f6234f7de1fcf121105603d4/srtdash/assets/images/media/media2.jpg
--------------------------------------------------------------------------------
/srtdash/assets/images/team/team-author1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/puikinsh/srtdash-admin-dashboard/50bfdbb14ea149b7f6234f7de1fcf121105603d4/srtdash/assets/images/team/team-author1.jpg
--------------------------------------------------------------------------------
/srtdash/assets/images/team/team-author2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/puikinsh/srtdash-admin-dashboard/50bfdbb14ea149b7f6234f7de1fcf121105603d4/srtdash/assets/images/team/team-author2.jpg
--------------------------------------------------------------------------------
/srtdash/assets/images/team/team-author3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/puikinsh/srtdash-admin-dashboard/50bfdbb14ea149b7f6234f7de1fcf121105603d4/srtdash/assets/images/team/team-author3.jpg
--------------------------------------------------------------------------------
/srtdash/assets/images/team/team-author4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/puikinsh/srtdash-admin-dashboard/50bfdbb14ea149b7f6234f7de1fcf121105603d4/srtdash/assets/images/team/team-author4.jpg
--------------------------------------------------------------------------------
/srtdash/assets/images/team/team-author5.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/puikinsh/srtdash-admin-dashboard/50bfdbb14ea149b7f6234f7de1fcf121105603d4/srtdash/assets/images/team/team-author5.jpg
--------------------------------------------------------------------------------
/srtdash/assets/js/jquery.slicknav.min.js:
--------------------------------------------------------------------------------
1 | /*!
2 | * SlickNav Responsive Mobile Menu v1.0.10
3 | * (c) 2016 Josh Cope
4 | * licensed under MIT
5 | */
6 | !function(e,t,n){function a(t,n){this.element=t,this.settings=e.extend({},i,n),this.settings.duplicate||n.hasOwnProperty("removeIds")||(this.settings.removeIds=!1),this._defaults=i,this._name=s,this.init()}var i={label:"MENU",duplicate:!0,duration:200,easingOpen:"swing",easingClose:"swing",closedSymbol:"►",openedSymbol:"▼",prependTo:"body",appendTo:"",parentTag:"a",closeOnClick:!1,allowParentLinks:!1,nestedParentLinks:!0,showChildren:!1,removeIds:!0,removeClasses:!1,removeStyles:!1,brand:"",animations:"jquery",init:function(){},beforeOpen:function(){},beforeClose:function(){},afterOpen:function(){},afterClose:function(){}},s="slicknav",o="slicknav",l={DOWN:40,ENTER:13,ESCAPE:27,LEFT:37,RIGHT:39,SPACE:32,TAB:9,UP:38};a.prototype.init=function(){var n,a,i=this,s=e(this.element),r=this.settings;if(r.duplicate?i.mobileNav=s.clone():i.mobileNav=s,r.removeIds&&(i.mobileNav.removeAttr("id"),i.mobileNav.find("*").each(function(t,n){e(n).removeAttr("id")})),r.removeClasses&&(i.mobileNav.removeAttr("class"),i.mobileNav.find("*").each(function(t,n){e(n).removeAttr("class")})),r.removeStyles&&(i.mobileNav.removeAttr("style"),i.mobileNav.find("*").each(function(t,n){e(n).removeAttr("style")})),n=o+"_icon",""===r.label&&(n+=" "+o+"_no-text"),"a"==r.parentTag&&(r.parentTag='a href="#"'),i.mobileNav.attr("class",o+"_nav"),a=e(''),""!==r.brand){var c=e(''+r.brand+"
");e(a).append(c)}i.btn=e(["<"+r.parentTag+' aria-haspopup="true" role="button" tabindex="0" class="'+o+"_btn "+o+'_collapsed">','",'','','','',"",""+r.parentTag+">"].join("")),e(a).append(i.btn),""!==r.appendTo?e(r.appendTo).append(a):e(r.prependTo).prepend(a),a.append(i.mobileNav);var p=i.mobileNav.find("li");e(p).each(function(){var t=e(this),n={};if(n.children=t.children("ul").attr("role","menu"),t.data("menu",n),n.children.length>0){var a=t.contents(),s=!1,l=[];e(a).each(function(){return e(this).is("ul")?!1:(l.push(this),void(e(this).is("a")&&(s=!0)))});var c=e("<"+r.parentTag+' role="menuitem" aria-haspopup="true" tabindex="-1" class="'+o+'_item"/>');if(r.allowParentLinks&&!r.nestedParentLinks&&s)e(l).wrapAll('').parent();else{var p=e(l).wrapAll(c).parent();p.addClass(o+"_row")}r.showChildren?t.addClass(o+"_open"):t.addClass(o+"_collapsed"),t.addClass(o+"_parent");var d=e(''+(r.showChildren?r.openedSymbol:r.closedSymbol)+"");r.allowParentLinks&&!r.nestedParentLinks&&s&&(d=d.wrap(c).parent()),e(l).last().after(d)}else 0===t.children().length&&t.addClass(o+"_txtnode");t.children("a").attr("role","menuitem").click(function(t){r.closeOnClick&&!e(t.target).parent().closest("li").hasClass(o+"_parent")&&e(i.btn).click()}),r.closeOnClick&&r.allowParentLinks&&(t.children("a").children("a").click(function(t){e(i.btn).click()}),t.find("."+o+"_parent-link a:not(."+o+"_item)").click(function(t){e(i.btn).click()}))}),e(p).each(function(){var t=e(this).data("menu");r.showChildren||i._visibilityToggle(t.children,null,!1,null,!0)}),i._visibilityToggle(i.mobileNav,null,!1,"init",!0),i.mobileNav.attr("role","menu"),e(t).mousedown(function(){i._outlines(!1)}),e(t).keyup(function(){i._outlines(!0)}),e(i.btn).click(function(e){e.preventDefault(),i._menuToggle()}),i.mobileNav.on("click","."+o+"_item",function(t){t.preventDefault(),i._itemClick(e(this))}),e(i.btn).keydown(function(t){var n=t||event;switch(n.keyCode){case l.ENTER:case l.SPACE:case l.DOWN:t.preventDefault(),n.keyCode===l.DOWN&&e(i.btn).hasClass(o+"_open")||i._menuToggle(),e(i.btn).next().find('[role="menuitem"]').first().focus()}}),i.mobileNav.on("keydown","."+o+"_item",function(t){var n=t||event;switch(n.keyCode){case l.ENTER:t.preventDefault(),i._itemClick(e(t.target));break;case l.RIGHT:t.preventDefault(),e(t.target).parent().hasClass(o+"_collapsed")&&i._itemClick(e(t.target)),e(t.target).next().find('[role="menuitem"]').first().focus()}}),i.mobileNav.on("keydown",'[role="menuitem"]',function(t){var n=t||event;switch(n.keyCode){case l.DOWN:t.preventDefault();var a=e(t.target).parent().parent().children().children('[role="menuitem"]:visible'),s=a.index(t.target),r=s+1;a.length<=r&&(r=0);var c=a.eq(r);c.focus();break;case l.UP:t.preventDefault();var a=e(t.target).parent().parent().children().children('[role="menuitem"]:visible'),s=a.index(t.target),c=a.eq(s-1);c.focus();break;case l.LEFT:if(t.preventDefault(),e(t.target).parent().parent().parent().hasClass(o+"_open")){var p=e(t.target).parent().parent().prev();p.focus(),i._itemClick(p)}else e(t.target).parent().parent().hasClass(o+"_nav")&&(i._menuToggle(),e(i.btn).focus());break;case l.ESCAPE:t.preventDefault(),i._menuToggle(),e(i.btn).focus()}}),r.allowParentLinks&&r.nestedParentLinks&&e("."+o+"_item a").click(function(e){e.stopImmediatePropagation()})},a.prototype._menuToggle=function(e){var t=this,n=t.btn,a=t.mobileNav;n.hasClass(o+"_collapsed")?(n.removeClass(o+"_collapsed"),n.addClass(o+"_open")):(n.removeClass(o+"_open"),n.addClass(o+"_collapsed")),n.addClass(o+"_animating"),t._visibilityToggle(a,n.parent(),!0,n)},a.prototype._itemClick=function(e){var t=this,n=t.settings,a=e.data("menu");a||(a={},a.arrow=e.children("."+o+"_arrow"),a.ul=e.next("ul"),a.parent=e.parent(),a.parent.hasClass(o+"_parent-link")&&(a.parent=e.parent().parent(),a.ul=e.parent().next("ul")),e.data("menu",a)),a.parent.hasClass(o+"_collapsed")?(a.arrow.html(n.openedSymbol),a.parent.removeClass(o+"_collapsed"),a.parent.addClass(o+"_open"),a.parent.addClass(o+"_animating"),t._visibilityToggle(a.ul,a.parent,!0,e)):(a.arrow.html(n.closedSymbol),a.parent.addClass(o+"_collapsed"),a.parent.removeClass(o+"_open"),a.parent.addClass(o+"_animating"),t._visibilityToggle(a.ul,a.parent,!0,e))},a.prototype._visibilityToggle=function(t,n,a,i,s){function l(t,n){e(t).removeClass(o+"_animating"),e(n).removeClass(o+"_animating"),s||p.afterOpen(t)}function r(n,a){t.attr("aria-hidden","true"),d.attr("tabindex","-1"),c._setVisAttr(t,!0),t.hide(),e(n).removeClass(o+"_animating"),e(a).removeClass(o+"_animating"),s?"init"==n&&p.init():p.afterClose(n)}var c=this,p=c.settings,d=c._getActionItems(t),u=0;a&&(u=p.duration),t.hasClass(o+"_hidden")?(t.removeClass(o+"_hidden"),s||p.beforeOpen(i),"jquery"===p.animations?t.stop(!0,!0).slideDown(u,p.easingOpen,function(){l(i,n)}):"velocity"===p.animations&&t.velocity("finish").velocity("slideDown",{duration:u,easing:p.easingOpen,complete:function(){l(i,n)}}),t.attr("aria-hidden","false"),d.attr("tabindex","0"),c._setVisAttr(t,!1)):(t.addClass(o+"_hidden"),s||p.beforeClose(i),"jquery"===p.animations?t.stop(!0,!0).slideUp(u,this.settings.easingClose,function(){r(i,n)}):"velocity"===p.animations&&t.velocity("finish").velocity("slideUp",{duration:u,easing:p.easingClose,complete:function(){r(i,n)}}))},a.prototype._setVisAttr=function(t,n){var a=this,i=t.children("li").children("ul").not("."+o+"_hidden");n?i.each(function(){var t=e(this);t.attr("aria-hidden","true");var i=a._getActionItems(t);i.attr("tabindex","-1"),a._setVisAttr(t,n)}):i.each(function(){var t=e(this);t.attr("aria-hidden","false");var i=a._getActionItems(t);i.attr("tabindex","0"),a._setVisAttr(t,n)})},a.prototype._getActionItems=function(e){var t=e.data("menu");if(!t){t={};var n=e.children("li"),a=n.find("a");t.links=a.add(n.find("."+o+"_item")),e.data("menu",t)}return t.links},a.prototype._outlines=function(t){t?e("."+o+"_item, ."+o+"_btn").css("outline",""):e("."+o+"_item, ."+o+"_btn").css("outline","none")},a.prototype.toggle=function(){var e=this;e._menuToggle()},a.prototype.open=function(){var e=this;e.btn.hasClass(o+"_collapsed")&&e._menuToggle()},a.prototype.close=function(){var e=this;e.btn.hasClass(o+"_open")&&e._menuToggle()},e.fn[s]=function(t){var n=arguments;if(void 0===t||"object"==typeof t)return this.each(function(){e.data(this,"plugin_"+s)||e.data(this,"plugin_"+s,new a(this,t))});if("string"==typeof t&&"_"!==t[0]&&"init"!==t){var i;return this.each(function(){var o=e.data(this,"plugin_"+s);o instanceof a&&"function"==typeof o[t]&&(i=o[t].apply(o,Array.prototype.slice.call(n,1)))}),void 0!==i?i:this}}}(jQuery,document,window);
--------------------------------------------------------------------------------
/srtdash/assets/js/jquery.slimscroll.min.js:
--------------------------------------------------------------------------------
1 | /*! Copyright (c) 2011 Piotr Rochala (http://rocha.la)
2 | * Dual licensed under the MIT (http://www.opensource.org/licenses/mit-license.php)
3 | * and GPL (http://www.opensource.org/licenses/gpl-license.php) licenses.
4 | *
5 | * Version: 1.3.8
6 | *
7 | */
8 | (function(e){e.fn.extend({slimScroll:function(f){var a=e.extend({width:"auto",height:"250px",size:"7px",color:"#000",position:"right",distance:"1px",start:"top",opacity:.4,alwaysVisible:!1,disableFadeOut:!1,railVisible:!1,railColor:"#333",railOpacity:.2,railDraggable:!0,railClass:"slimScrollRail",barClass:"slimScrollBar",wrapperClass:"slimScrollDiv",allowPageScroll:!1,wheelStep:20,touchScrollStep:200,borderRadius:"7px",railBorderRadius:"7px"},f);this.each(function(){function v(d){if(r){d=d||window.event;
9 | var c=0;d.wheelDelta&&(c=-d.wheelDelta/120);d.detail&&(c=d.detail/3);e(d.target||d.srcTarget||d.srcElement).closest("."+a.wrapperClass).is(b.parent())&&n(c,!0);d.preventDefault&&!k&&d.preventDefault();k||(d.returnValue=!1)}}function n(d,g,e){k=!1;var f=b.outerHeight()-c.outerHeight();g&&(g=parseInt(c.css("top"))+d*parseInt(a.wheelStep)/100*c.outerHeight(),g=Math.min(Math.max(g,0),f),g=0=b.outerHeight()?k=!0:(c.stop(!0,
11 | !0).fadeIn("fast"),a.railVisible&&m.stop(!0,!0).fadeIn("fast"))}function p(){a.alwaysVisible||(B=setTimeout(function(){a.disableFadeOut&&r||y||z||(c.fadeOut("slow"),m.fadeOut("slow"))},1E3))}var r,y,z,B,A,u,l,C,k=!1,b=e(this);if(b.parent().hasClass(a.wrapperClass)){var q=b.scrollTop(),c=b.siblings("."+a.barClass),m=b.siblings("."+a.railClass);x();if(e.isPlainObject(f)){if("height"in f&&"auto"==f.height){b.parent().css("height","auto");b.css("height","auto");var h=b.parent().parent().height();b.parent().css("height",
12 | h);b.css("height",h)}else"height"in f&&(h=f.height,b.parent().css("height",h),b.css("height",h));if("scrollTo"in f)q=parseInt(a.scrollTo);else if("scrollBy"in f)q+=parseInt(a.scrollBy);else if("destroy"in f){c.remove();m.remove();b.unwrap();return}n(q,!1,!0)}}else if(!(e.isPlainObject(f)&&"destroy"in f)){a.height="auto"==a.height?b.parent().height():a.height;q=e("").addClass(a.wrapperClass).css({position:"relative",overflow:"hidden",width:a.width,height:a.height});b.css({overflow:"hidden",
13 | width:a.width,height:a.height});var m=e("").addClass(a.railClass).css({width:a.size,height:"100%",position:"absolute",top:0,display:a.alwaysVisible&&a.railVisible?"block":"none","border-radius":a.railBorderRadius,background:a.railColor,opacity:a.railOpacity,zIndex:90}),c=e("").addClass(a.barClass).css({background:a.color,width:a.size,position:"absolute",top:0,opacity:a.opacity,display:a.alwaysVisible?"block":"none","border-radius":a.borderRadius,BorderRadius:a.borderRadius,MozBorderRadius:a.borderRadius,
14 | WebkitBorderRadius:a.borderRadius,zIndex:99}),h="right"==a.position?{right:a.distance}:{left:a.distance};m.css(h);c.css(h);b.wrap(q);b.parent().append(c);b.parent().append(m);a.railDraggable&&c.bind("mousedown",function(a){var b=e(document);z=!0;t=parseFloat(c.css("top"));pageY=a.pageY;b.bind("mousemove.slimscroll",function(a){currTop=t+a.pageY-pageY;c.css("top",currTop);n(0,c.position().top,!1)});b.bind("mouseup.slimscroll",function(a){z=!1;p();b.unbind(".slimscroll")});return!1}).bind("selectstart.slimscroll",
15 | function(a){a.stopPropagation();a.preventDefault();return!1});m.hover(function(){w()},function(){p()});c.hover(function(){y=!0},function(){y=!1});b.hover(function(){r=!0;w();p()},function(){r=!1;p()});b.bind("touchstart",function(a,b){a.originalEvent.touches.length&&(A=a.originalEvent.touches[0].pageY)});b.bind("touchmove",function(b){k||b.originalEvent.preventDefault();b.originalEvent.touches.length&&(n((A-b.originalEvent.touches[0].pageY)/a.touchScrollStep,!0),A=b.originalEvent.touches[0].pageY)});
16 | x();"bottom"===a.start?(c.css({top:b.outerHeight()-c.outerHeight()}),n(0,!0)):"top"!==a.start&&(n(e(a.start).position().top,null,!0),a.alwaysVisible||c.hide());window.addEventListener?(this.addEventListener("DOMMouseScroll",v,!1),this.addEventListener("mousewheel",v,!1)):document.attachEvent("onmousewheel",v)}});return this}});e.fn.extend({slimscroll:e.fn.slimScroll})})(jQuery);
--------------------------------------------------------------------------------
/srtdash/assets/js/metisMenu.min.js:
--------------------------------------------------------------------------------
1 | /*!
2 | * metismenu - v2.7.8
3 | * A jQuery menu plugin
4 | * https://github.com/onokumus/metismenu#readme
5 | *
6 | * Made by Osman Nuri Okumus (https://github.com/onokumus)
7 | * Under MIT License
8 | */
9 | !function(n,e){"object"==typeof exports&&"undefined"!=typeof module?module.exports=e(require("jquery")):"function"==typeof define&&define.amd?define(["jquery"],e):n.metisMenu=e(n.jQuery)}(this,function(n){"use strict";function a(s){for(var n=1;n{point.percentage:.1f}%'
266 | },
267 | plotOptions: {
268 | pie: {
269 | allowPointSelect: true,
270 | cursor: 'pointer',
271 | colors: pieColors,
272 | dataLabels: {
273 | style: { "color": "contrast", "fontSize": "11px", "fontWeight": "bold", "textOutline": "" },
274 | enabled: true,
275 | format: '{point.name}
{point.percentage:.1f} %',
276 | distance: -50,
277 | filter: {
278 | property: 'percentage',
279 | operator: '>',
280 | value: 4
281 | }
282 | }
283 | }
284 | },
285 | series: [{
286 | name: 'Share',
287 | data: [
288 | { name: 'USD', y: 61.41 },
289 | { name: 'BTC', y: 11.84 },
290 | { name: 'TCN', y: 10.85 }
291 | ]
292 | }]
293 | });
294 | }
295 | /*-------------- 4 Pie chart highcharts end ------------*/
296 |
297 | /*-------------- 5 Pie chart highcharts start ------------*/
298 | if ($('#highpiechart5').length) {
299 | Highcharts.chart('highpiechart5', {
300 | chart: {
301 | plotBackgroundColor: null,
302 | plotBorderWidth: null,
303 | plotShadow: false,
304 | type: 'pie'
305 | },
306 | title: {
307 | text: 'Dollar market Values, 2018'
308 | },
309 | tooltip: {
310 | pointFormat: '{series.name}: {point.percentage:.1f}%'
311 | },
312 | plotOptions: {
313 | pie: {
314 | allowPointSelect: true,
315 | cursor: 'pointer',
316 | dataLabels: {
317 | enabled: false,
318 | format: '{point.name}: {point.percentage:.1f} %',
319 | style: {
320 | color: (Highcharts.theme && Highcharts.theme.contrastTextColor) || '#444',
321 | "textOutline": ""
322 | }
323 | }
324 | }
325 | },
326 | series: [{
327 | name: 'Brands',
328 | colorByPoint: true,
329 | data: [{
330 | name: 'USB',
331 | y: 61.41,
332 | sliced: true,
333 | selected: true
334 | }, {
335 | name: 'BTC',
336 | y: 11.84
337 | }, {
338 | name: 'ETC',
339 | y: 10.85
340 | }]
341 | }]
342 | });
343 | }
344 |
345 | /*-------------- 5 Pie chart highcharts end ------------*/
346 |
347 | /*-------------- 6 Pie chart highcharts start ------------*/
348 | if ($('#highpiechart6').length) {
349 | Highcharts.chart('highpiechart6', {
350 | chart: {
351 | plotBackgroundColor: null,
352 | plotBorderWidth: 0,
353 | plotShadow: false
354 | },
355 | title: {
356 | text: '
Values
',
357 | align: 'center',
358 | verticalAlign: 'middle',
359 | y: 40
360 | },
361 | tooltip: {
362 | pointFormat: '{series.name}: {point.percentage:.1f}%'
363 | },
364 | plotOptions: {
365 | pie: {
366 | dataLabels: {
367 | enabled: true,
368 | distance: -30,
369 | style: {
370 | fontWeight: 'bold',
371 | color: 'white',
372 | textOutline: 0
373 | }
374 | },
375 | startAngle: -90,
376 | endAngle: 90,
377 | center: ['50%', '65%']
378 | }
379 | },
380 | series: [{
381 | type: 'pie',
382 | name: 'Browser share',
383 | innerSize: '55%',
384 | data: [
385 | ['USD', 58.9],
386 | ['BTC', 13.29],
387 | ['TCN', 13],
388 | {
389 | name: 'Other',
390 | y: 7.61,
391 | dataLabels: {
392 | enabled: false
393 | }
394 | }
395 | ]
396 | }]
397 | });
398 | }
399 | /*-------------- 6 Pie chart highcharts end ------------*/
400 |
401 | /*-------------- 7 Pie chart chartjs start ------------*/
402 | if ($('#seolinechart8').length) {
403 | var ctx = document.getElementById("seolinechart8").getContext('2d');
404 | var chart = new Chart(ctx, {
405 | // The type of chart we want to create
406 | type: 'doughnut',
407 | // The data for our dataset
408 | data: {
409 | labels: ["FB", "TW", "G+", "INS"],
410 | datasets: [{
411 | backgroundColor: [
412 | "#8919FE",
413 | "#12C498",
414 | "#F8CB3F",
415 | "#E36D68"
416 | ],
417 | borderColor: '#fff',
418 | data: [810, 410, 260, 150],
419 | }]
420 | },
421 | // Configuration options go here
422 | options: {
423 | legend: {
424 | display: true
425 | },
426 | animation: {
427 | easing: "easeInOutBack"
428 | }
429 | }
430 | });
431 | }
432 | /*-------------- 7 Pie chart chartjs end ------------*/
--------------------------------------------------------------------------------
/srtdash/assets/js/plugins.js:
--------------------------------------------------------------------------------
1 | // Avoid `console` errors in browsers that lack a console.
2 | (function() {
3 | var method;
4 | var noop = function () {};
5 | var methods = [
6 | 'assert', 'clear', 'count', 'debug', 'dir', 'dirxml', 'error',
7 | 'exception', 'group', 'groupCollapsed', 'groupEnd', 'info', 'log',
8 | 'markTimeline', 'profile', 'profileEnd', 'table', 'time', 'timeEnd',
9 | 'timeline', 'timelineEnd', 'timeStamp', 'trace', 'warn'
10 | ];
11 | var length = methods.length;
12 | var console = (window.console = window.console || {});
13 |
14 | while (length--) {
15 | method = methods[length];
16 |
17 | // Only stub undefined methods.
18 | if (!console[method]) {
19 | console[method] = noop;
20 | }
21 | }
22 | }());
23 |
24 | // Place any jQuery/helper plugins in here.
25 |
26 | /*
27 | * jQuery Easing v1.4.0 - http://gsgd.co.uk/sandbox/jquery/easing/
28 | * Open source under the BSD License.
29 | * Copyright © 2008 George McGinley Smith
30 | * All rights reserved.
31 | * https://raw.github.com/gdsmith/jquery-easing/master/LICENSE
32 | */
33 | (function(factory){if(typeof define==="function"&&define.amd){define(["jquery"],function($){return factory($)})}else if(typeof module==="object"&&typeof module.exports==="object"){exports=factory(require("jquery"))}else{factory(jQuery)}})(function($){$.easing["jswing"]=$.easing["swing"];var pow=Math.pow,sqrt=Math.sqrt,sin=Math.sin,cos=Math.cos,PI=Math.PI,c1=1.70158,c2=c1*1.525,c3=c1+1,c4=2*PI/3,c5=2*PI/4.5;function bounceOut(x){var n1=7.5625,d1=2.75;if(x<1/d1){return n1*x*x}else if(x<2/d1){return n1*(x-=1.5/d1)*x+.75}else if(x<2.5/d1){return n1*(x-=2.25/d1)*x+.9375}else{return n1*(x-=2.625/d1)*x+.984375}}$.extend($.easing,{def:"easeOutQuad",swing:function(x){return $.easing[$.easing.def](x)},easeInQuad:function(x){return x*x},easeOutQuad:function(x){return 1-(1-x)*(1-x)},easeInOutQuad:function(x){return x<.5?2*x*x:1-pow(-2*x+2,2)/2},easeInCubic:function(x){return x*x*x},easeOutCubic:function(x){return 1-pow(1-x,3)},easeInOutCubic:function(x){return x<.5?4*x*x*x:1-pow(-2*x+2,3)/2},easeInQuart:function(x){return x*x*x*x},easeOutQuart:function(x){return 1-pow(1-x,4)},easeInOutQuart:function(x){return x<.5?8*x*x*x*x:1-pow(-2*x+2,4)/2},easeInQuint:function(x){return x*x*x*x*x},easeOutQuint:function(x){return 1-pow(1-x,5)},easeInOutQuint:function(x){return x<.5?16*x*x*x*x*x:1-pow(-2*x+2,5)/2},easeInSine:function(x){return 1-cos(x*PI/2)},easeOutSine:function(x){return sin(x*PI/2)},easeInOutSine:function(x){return-(cos(PI*x)-1)/2},easeInExpo:function(x){return x===0?0:pow(2,10*x-10)},easeOutExpo:function(x){return x===1?1:1-pow(2,-10*x)},easeInOutExpo:function(x){return x===0?0:x===1?1:x<.5?pow(2,20*x-10)/2:(2-pow(2,-20*x+10))/2},easeInCirc:function(x){return 1-sqrt(1-pow(x,2))},easeOutCirc:function(x){return sqrt(1-pow(x-1,2))},easeInOutCirc:function(x){return x<.5?(1-sqrt(1-pow(2*x,2)))/2:(sqrt(1-pow(-2*x+2,2))+1)/2},easeInElastic:function(x){return x===0?0:x===1?1:-pow(2,10*x-10)*sin((x*10-10.75)*c4)},easeOutElastic:function(x){return x===0?0:x===1?1:pow(2,-10*x)*sin((x*10-.75)*c4)+1},easeInOutElastic:function(x){return x===0?0:x===1?1:x<.5?-(pow(2,20*x-10)*sin((20*x-11.125)*c5))/2:pow(2,-20*x+10)*sin((20*x-11.125)*c5)/2+1},easeInBack:function(x){return c3*x*x*x-c1*x*x},easeOutBack:function(x){return 1+c3*pow(x-1,3)+c1*pow(x-1,2)},easeInOutBack:function(x){return x<.5?pow(2*x,2)*((c2+1)*2*x-c2)/2:(pow(2*x-2,2)*((c2+1)*(x*2-2)+c2)+2)/2},easeInBounce:function(x){return 1-bounceOut(1-x)},easeOutBounce:bounceOut,easeInOutBounce:function(x){return x<.5?(1-bounceOut(1-2*x))/2:(1+bounceOut(2*x-1))/2}})});
--------------------------------------------------------------------------------
/srtdash/assets/js/popper.min.js:
--------------------------------------------------------------------------------
1 | /*
2 | Copyright (C) Federico Zivolo 2017
3 | Distributed under the MIT License (license terms are at http://opensource.org/licenses/MIT).
4 | */(function(e,t){'object'==typeof exports&&'undefined'!=typeof module?module.exports=t():'function'==typeof define&&define.amd?define(t):e.Popper=t()})(this,function(){'use strict';function e(e){return e&&'[object Function]'==={}.toString.call(e)}function t(e,t){if(1!==e.nodeType)return[];var o=getComputedStyle(e,null);return t?o[t]:o}function o(e){return'HTML'===e.nodeName?e:e.parentNode||e.host}function n(e){if(!e)return document.body;switch(e.nodeName){case'HTML':case'BODY':return e.ownerDocument.body;case'#document':return e.body;}var i=t(e),r=i.overflow,p=i.overflowX,s=i.overflowY;return /(auto|scroll)/.test(r+s+p)?e:n(o(e))}function r(e){var o=e&&e.offsetParent,i=o&&o.nodeName;return i&&'BODY'!==i&&'HTML'!==i?-1!==['TD','TABLE'].indexOf(o.nodeName)&&'static'===t(o,'position')?r(o):o:e?e.ownerDocument.documentElement:document.documentElement}function p(e){var t=e.nodeName;return'BODY'!==t&&('HTML'===t||r(e.firstElementChild)===e)}function s(e){return null===e.parentNode?e:s(e.parentNode)}function d(e,t){if(!e||!e.nodeType||!t||!t.nodeType)return document.documentElement;var o=e.compareDocumentPosition(t)&Node.DOCUMENT_POSITION_FOLLOWING,i=o?e:t,n=o?t:e,a=document.createRange();a.setStart(i,0),a.setEnd(n,0);var l=a.commonAncestorContainer;if(e!==l&&t!==l||i.contains(n))return p(l)?l:r(l);var f=s(e);return f.host?d(f.host,t):d(e,s(t).host)}function a(e){var t=1=o.clientWidth&&i>=o.clientHeight}),l=0i[e]&&!t.escapeWithReference&&(n=_(p[o],i[e]-('right'===e?p.width:p.height))),pe({},o,n)}};return n.forEach(function(e){var t=-1===['left','top'].indexOf(e)?'secondary':'primary';p=se({},p,s[t](e))}),e.offsets.popper=p,e},priority:['left','right','top','bottom'],padding:5,boundariesElement:'scrollParent'},keepTogether:{order:400,enabled:!0,fn:function(e){var t=e.offsets,o=t.popper,i=t.reference,n=e.placement.split('-')[0],r=X,p=-1!==['top','bottom'].indexOf(n),s=p?'right':'bottom',d=p?'left':'top',a=p?'width':'height';return o[s]r(i[s])&&(e.offsets.popper[d]=r(i[s])),e}},arrow:{order:500,enabled:!0,fn:function(e,o){var i;if(!F(e.instance.modifiers,'arrow','keepTogether'))return e;var n=o.element;if('string'==typeof n){if(n=e.instance.popper.querySelector(n),!n)return e;}else if(!e.instance.popper.contains(n))return console.warn('WARNING: `arrow.element` must be child of its popper element!'),e;var r=e.placement.split('-')[0],p=e.offsets,s=p.popper,d=p.reference,a=-1!==['left','right'].indexOf(r),l=a?'height':'width',f=a?'Top':'Left',m=f.toLowerCase(),h=a?'left':'top',g=a?'bottom':'right',u=L(n)[l];d[g]-us[g]&&(e.offsets.popper[m]+=d[m]+u-s[g]),e.offsets.popper=c(e.offsets.popper);var b=d[m]+d[l]/2-u/2,w=t(e.instance.popper),y=parseFloat(w['margin'+f],10),E=parseFloat(w['border'+f+'Width'],10),v=b-e.offsets.popper[m]-y-E;return v=J(_(s[l]-u,v),0),e.arrowElement=n,e.offsets.arrow=(i={},pe(i,m,Math.round(v)),pe(i,h,''),i),e},element:'[x-arrow]'},flip:{order:600,enabled:!0,fn:function(e,t){if(k(e.instance.modifiers,'inner'))return e;if(e.flipped&&e.placement===e.originalPlacement)return e;var o=y(e.instance.popper,e.instance.reference,t.padding,t.boundariesElement),i=e.placement.split('-')[0],n=x(i),r=e.placement.split('-')[1]||'',p=[];switch(t.behavior){case le.FLIP:p=[i,n];break;case le.CLOCKWISE:p=q(i);break;case le.COUNTERCLOCKWISE:p=q(i,!0);break;default:p=t.behavior;}return p.forEach(function(s,d){if(i!==s||p.length===d+1)return e;i=e.placement.split('-')[0],n=x(i);var a=e.offsets.popper,l=e.offsets.reference,f=X,m='left'===i&&f(a.right)>f(l.left)||'right'===i&&f(a.left)f(l.top)||'bottom'===i&&f(a.top)f(o.right),g=f(a.top)f(o.bottom),b='left'===i&&h||'right'===i&&c||'top'===i&&g||'bottom'===i&&u,w=-1!==['top','bottom'].indexOf(i),y=!!t.flipVariations&&(w&&'start'===r&&h||w&&'end'===r&&c||!w&&'start'===r&&g||!w&&'end'===r&&u);(m||b||y)&&(e.flipped=!0,(m||b)&&(i=p[d+1]),y&&(r=K(r)),e.placement=i+(r?'-'+r:''),e.offsets.popper=se({},e.offsets.popper,S(e.instance.popper,e.offsets.reference,e.placement)),e=C(e.instance.modifiers,e,'flip'))}),e},behavior:'flip',padding:5,boundariesElement:'viewport'},inner:{order:700,enabled:!1,fn:function(e){var t=e.placement,o=t.split('-')[0],i=e.offsets,n=i.popper,r=i.reference,p=-1!==['left','right'].indexOf(o),s=-1===['top','left'].indexOf(o);return n[p?'left':'top']=r[o]-(s?n[p?'width':'height']:0),e.placement=x(t),e.offsets.popper=c(n),e}},hide:{order:800,enabled:!0,fn:function(e){if(!F(e.instance.modifiers,'hide','preventOverflow'))return e;var t=e.offsets.reference,o=T(e.instance.modifiers,function(e){return'preventOverflow'===e.name}).boundaries;if(t.bottomo.right||t.top>o.bottom||t.right 0 ? window.innerHeight : this.screen.height) - 5;
31 | (e -= 67) < 1 && (e = 1), e > 67 && $(".main-content").css("min-height", e + "px")
32 | };
33 | $(window).ready(e), $(window).on("resize", e);
34 |
35 | /*================================
36 | sidebar menu
37 | ==================================*/
38 | $("#menu").metisMenu();
39 |
40 | /*================================
41 | slimscroll activation
42 | ==================================*/
43 | $('.menu-inner').slimScroll({
44 | height: 'auto'
45 | });
46 | $('.nofity-list').slimScroll({
47 | height: '435px'
48 | });
49 | $('.timeline-area').slimScroll({
50 | height: '500px'
51 | });
52 | $('.recent-activity').slimScroll({
53 | height: 'calc(100vh - 114px)'
54 | });
55 | $('.settings-list').slimScroll({
56 | height: 'calc(100vh - 158px)'
57 | });
58 |
59 | /*================================
60 | stickey Header
61 | ==================================*/
62 | $(window).on('scroll', function() {
63 | var scroll = $(window).scrollTop(),
64 | mainHeader = $('#sticky-header'),
65 | mainHeaderHeight = mainHeader.innerHeight();
66 |
67 | // console.log(mainHeader.innerHeight());
68 | if (scroll > 1) {
69 | $("#sticky-header").addClass("sticky-menu");
70 | } else {
71 | $("#sticky-header").removeClass("sticky-menu");
72 | }
73 | });
74 |
75 | /*================================
76 | form bootstrap validation
77 | ==================================*/
78 | $('[data-toggle="popover"]').popover()
79 |
80 | /*------------- Start form Validation -------------*/
81 | window.addEventListener('load', function() {
82 | // Fetch all the forms we want to apply custom Bootstrap validation styles to
83 | var forms = document.getElementsByClassName('needs-validation');
84 | // Loop over them and prevent submission
85 | var validation = Array.prototype.filter.call(forms, function(form) {
86 | form.addEventListener('submit', function(event) {
87 | if (form.checkValidity() === false) {
88 | event.preventDefault();
89 | event.stopPropagation();
90 | }
91 | form.classList.add('was-validated');
92 | }, false);
93 | });
94 | }, false);
95 |
96 | /*================================
97 | datatable active
98 | ==================================*/
99 | if ($('#dataTable').length) {
100 | $('#dataTable').DataTable({
101 | responsive: true
102 | });
103 | }
104 | if ($('#dataTable2').length) {
105 | $('#dataTable2').DataTable({
106 | responsive: true
107 | });
108 | }
109 | if ($('#dataTable3').length) {
110 | $('#dataTable3').DataTable({
111 | responsive: true
112 | });
113 | }
114 |
115 |
116 | /*================================
117 | Slicknav mobile menu
118 | ==================================*/
119 | $('ul#nav_menu').slicknav({
120 | prependTo: "#mobile_menu"
121 | });
122 |
123 | /*================================
124 | login form
125 | ==================================*/
126 | $('.form-gp input').on('focus', function() {
127 | $(this).parent('.form-gp').addClass('focused');
128 | });
129 | $('.form-gp input').on('focusout', function() {
130 | if ($(this).val().length === 0) {
131 | $(this).parent('.form-gp').removeClass('focused');
132 | }
133 | });
134 |
135 | /*================================
136 | slider-area background setting
137 | ==================================*/
138 | $('.settings-btn, .offset-close').on('click', function() {
139 | $('.offset-area').toggleClass('show_hide');
140 | $('.settings-btn').toggleClass('active');
141 | });
142 |
143 | /*================================
144 | Owl Carousel
145 | ==================================*/
146 | function slider_area() {
147 | var owl = $('.testimonial-carousel').owlCarousel({
148 | margin: 50,
149 | loop: true,
150 | autoplay: false,
151 | nav: false,
152 | dots: true,
153 | responsive: {
154 | 0: {
155 | items: 1
156 | },
157 | 450: {
158 | items: 1
159 | },
160 | 768: {
161 | items: 2
162 | },
163 | 1000: {
164 | items: 2
165 | },
166 | 1360: {
167 | items: 1
168 | },
169 | 1600: {
170 | items: 2
171 | }
172 | }
173 | });
174 | }
175 | slider_area();
176 |
177 | /*================================
178 | Fullscreen Page
179 | ==================================*/
180 |
181 | if ($('#full-view').length) {
182 |
183 | var requestFullscreen = function(ele) {
184 | if (ele.requestFullscreen) {
185 | ele.requestFullscreen();
186 | } else if (ele.webkitRequestFullscreen) {
187 | ele.webkitRequestFullscreen();
188 | } else if (ele.mozRequestFullScreen) {
189 | ele.mozRequestFullScreen();
190 | } else if (ele.msRequestFullscreen) {
191 | ele.msRequestFullscreen();
192 | } else {
193 | console.log('Fullscreen API is not supported.');
194 | }
195 | };
196 |
197 | var exitFullscreen = function() {
198 | if (document.exitFullscreen) {
199 | document.exitFullscreen();
200 | } else if (document.webkitExitFullscreen) {
201 | document.webkitExitFullscreen();
202 | } else if (document.mozCancelFullScreen) {
203 | document.mozCancelFullScreen();
204 | } else if (document.msExitFullscreen) {
205 | document.msExitFullscreen();
206 | } else {
207 | console.log('Fullscreen API is not supported.');
208 | }
209 | };
210 |
211 | var fsDocButton = document.getElementById('full-view');
212 | var fsExitDocButton = document.getElementById('full-view-exit');
213 |
214 | fsDocButton.addEventListener('click', function(e) {
215 | e.preventDefault();
216 | requestFullscreen(document.documentElement);
217 | $('body').addClass('expanded');
218 | });
219 |
220 | fsExitDocButton.addEventListener('click', function(e) {
221 | e.preventDefault();
222 | exitFullscreen();
223 | $('body').removeClass('expanded');
224 | });
225 | }
226 |
227 | })(jQuery);
--------------------------------------------------------------------------------
/srtdash/assets/js/vendor/modernizr-2.8.3.min.js:
--------------------------------------------------------------------------------
1 | /* Modernizr 2.8.3 (Custom Build) | MIT & BSD
2 | * Build: http://modernizr.com/download/#-fontface-backgroundsize-borderimage-borderradius-boxshadow-flexbox-hsla-multiplebgs-opacity-rgba-textshadow-cssanimations-csscolumns-generatedcontent-cssgradients-cssreflections-csstransforms-csstransforms3d-csstransitions-applicationcache-canvas-canvastext-draganddrop-hashchange-history-audio-video-indexeddb-input-inputtypes-localstorage-postmessage-sessionstorage-websockets-websqldatabase-webworkers-geolocation-inlinesvg-smil-svg-svgclippaths-touch-webgl-shiv-mq-cssclasses-addtest-prefixed-teststyles-testprop-testallprops-hasevent-prefixes-domprefixes-load
3 | */
4 | ;window.Modernizr=function(a,b,c){function D(a){j.cssText=a}function E(a,b){return D(n.join(a+";")+(b||""))}function F(a,b){return typeof a===b}function G(a,b){return!!~(""+a).indexOf(b)}function H(a,b){for(var d in a){var e=a[d];if(!G(e,"-")&&j[e]!==c)return b=="pfx"?e:!0}return!1}function I(a,b,d){for(var e in a){var f=b[a[e]];if(f!==c)return d===!1?a[e]:F(f,"function")?f.bind(d||b):f}return!1}function J(a,b,c){var d=a.charAt(0).toUpperCase()+a.slice(1),e=(a+" "+p.join(d+" ")+d).split(" ");return F(b,"string")||F(b,"undefined")?H(e,b):(e=(a+" "+q.join(d+" ")+d).split(" "),I(e,b,c))}function K(){e.input=function(c){for(var d=0,e=c.length;d',a,""].join(""),l.id=h,(m?l:n).innerHTML+=f,n.appendChild(l),m||(n.style.background="",n.style.overflow="hidden",k=g.style.overflow,g.style.overflow="hidden",g.appendChild(n)),i=c(l,a),m?l.parentNode.removeChild(l):(n.parentNode.removeChild(n),g.style.overflow=k),!!i},z=function(b){var c=a.matchMedia||a.msMatchMedia;if(c)return c(b)&&c(b).matches||!1;var d;return y("@media "+b+" { #"+h+" { position: absolute; } }",function(b){d=(a.getComputedStyle?getComputedStyle(b,null):b.currentStyle)["position"]=="absolute"}),d},A=function(){function d(d,e){e=e||b.createElement(a[d]||"div"),d="on"+d;var f=d in e;return f||(e.setAttribute||(e=b.createElement("div")),e.setAttribute&&e.removeAttribute&&(e.setAttribute(d,""),f=F(e[d],"function"),F(e[d],"undefined")||(e[d]=c),e.removeAttribute(d))),e=null,f}var a={select:"input",change:"input",submit:"form",reset:"form",error:"img",load:"img",abort:"img"};return d}(),B={}.hasOwnProperty,C;!F(B,"undefined")&&!F(B.call,"undefined")?C=function(a,b){return B.call(a,b)}:C=function(a,b){return b in a&&F(a.constructor.prototype[b],"undefined")},Function.prototype.bind||(Function.prototype.bind=function(b){var c=this;if(typeof c!="function")throw new TypeError;var d=w.call(arguments,1),e=function(){if(this instanceof e){var a=function(){};a.prototype=c.prototype;var f=new a,g=c.apply(f,d.concat(w.call(arguments)));return Object(g)===g?g:f}return c.apply(b,d.concat(w.call(arguments)))};return e}),s.flexbox=function(){return J("flexWrap")},s.canvas=function(){var a=b.createElement("canvas");return!!a.getContext&&!!a.getContext("2d")},s.canvastext=function(){return!!e.canvas&&!!F(b.createElement("canvas").getContext("2d").fillText,"function")},s.webgl=function(){return!!a.WebGLRenderingContext},s.touch=function(){var c;return"ontouchstart"in a||a.DocumentTouch&&b instanceof DocumentTouch?c=!0:y(["@media (",n.join("touch-enabled),("),h,")","{#modernizr{top:9px;position:absolute}}"].join(""),function(a){c=a.offsetTop===9}),c},s.geolocation=function(){return"geolocation"in navigator},s.postmessage=function(){return!!a.postMessage},s.websqldatabase=function(){return!!a.openDatabase},s.indexedDB=function(){return!!J("indexedDB",a)},s.hashchange=function(){return A("hashchange",a)&&(b.documentMode===c||b.documentMode>7)},s.history=function(){return!!a.history&&!!history.pushState},s.draganddrop=function(){var a=b.createElement("div");return"draggable"in a||"ondragstart"in a&&"ondrop"in a},s.websockets=function(){return"WebSocket"in a||"MozWebSocket"in a},s.rgba=function(){return D("background-color:rgba(150,255,150,.5)"),G(j.backgroundColor,"rgba")},s.hsla=function(){return D("background-color:hsla(120,40%,100%,.5)"),G(j.backgroundColor,"rgba")||G(j.backgroundColor,"hsla")},s.multiplebgs=function(){return D("background:url(https://),url(https://),red url(https://)"),/(url\s*\(.*?){3}/.test(j.background)},s.backgroundsize=function(){return J("backgroundSize")},s.borderimage=function(){return J("borderImage")},s.borderradius=function(){return J("borderRadius")},s.boxshadow=function(){return J("boxShadow")},s.textshadow=function(){return b.createElement("div").style.textShadow===""},s.opacity=function(){return E("opacity:.55"),/^0.55$/.test(j.opacity)},s.cssanimations=function(){return J("animationName")},s.csscolumns=function(){return J("columnCount")},s.cssgradients=function(){var a="background-image:",b="gradient(linear,left top,right bottom,from(#9f9),to(white));",c="linear-gradient(left top,#9f9, white);";return D((a+"-webkit- ".split(" ").join(b+a)+n.join(c+a)).slice(0,-a.length)),G(j.backgroundImage,"gradient")},s.cssreflections=function(){return J("boxReflect")},s.csstransforms=function(){return!!J("transform")},s.csstransforms3d=function(){var a=!!J("perspective");return a&&"webkitPerspective"in g.style&&y("@media (transform-3d),(-webkit-transform-3d){#modernizr{left:9px;position:absolute;height:3px;}}",function(b,c){a=b.offsetLeft===9&&b.offsetHeight===3}),a},s.csstransitions=function(){return J("transition")},s.fontface=function(){var a;return y('@font-face {font-family:"font";src:url("https://")}',function(c,d){var e=b.getElementById("smodernizr"),f=e.sheet||e.styleSheet,g=f?f.cssRules&&f.cssRules[0]?f.cssRules[0].cssText:f.cssText||"":"";a=/src/i.test(g)&&g.indexOf(d.split(" ")[0])===0}),a},s.generatedcontent=function(){var a;return y(["#",h,"{font:0/0 a}#",h,':after{content:"',l,'";visibility:hidden;font:3px/1 a}'].join(""),function(b){a=b.offsetHeight>=3}),a},s.video=function(){var a=b.createElement("video"),c=!1;try{if(c=!!a.canPlayType)c=new Boolean(c),c.ogg=a.canPlayType('video/ogg; codecs="theora"').replace(/^no$/,""),c.h264=a.canPlayType('video/mp4; codecs="avc1.42E01E"').replace(/^no$/,""),c.webm=a.canPlayType('video/webm; codecs="vp8, vorbis"').replace(/^no$/,"")}catch(d){}return c},s.audio=function(){var a=b.createElement("audio"),c=!1;try{if(c=!!a.canPlayType)c=new Boolean(c),c.ogg=a.canPlayType('audio/ogg; codecs="vorbis"').replace(/^no$/,""),c.mp3=a.canPlayType("audio/mpeg;").replace(/^no$/,""),c.wav=a.canPlayType('audio/wav; codecs="1"').replace(/^no$/,""),c.m4a=(a.canPlayType("audio/x-m4a;")||a.canPlayType("audio/aac;")).replace(/^no$/,"")}catch(d){}return c},s.localstorage=function(){try{return localStorage.setItem(h,h),localStorage.removeItem(h),!0}catch(a){return!1}},s.sessionstorage=function(){try{return sessionStorage.setItem(h,h),sessionStorage.removeItem(h),!0}catch(a){return!1}},s.webworkers=function(){return!!a.Worker},s.applicationcache=function(){return!!a.applicationCache},s.svg=function(){return!!b.createElementNS&&!!b.createElementNS(r.svg,"svg").createSVGRect},s.inlinesvg=function(){var a=b.createElement("div");return a.innerHTML="",(a.firstChild&&a.firstChild.namespaceURI)==r.svg},s.smil=function(){return!!b.createElementNS&&/SVGAnimate/.test(m.call(b.createElementNS(r.svg,"animate")))},s.svgclippaths=function(){return!!b.createElementNS&&/SVGClipPath/.test(m.call(b.createElementNS(r.svg,"clipPath")))};for(var L in s)C(s,L)&&(x=L.toLowerCase(),e[x]=s[L](),v.push((e[x]?"":"no-")+x));return e.input||K(),e.addTest=function(a,b){if(typeof a=="object")for(var d in a)C(a,d)&&e.addTest(d,a[d]);else{a=a.toLowerCase();if(e[a]!==c)return e;b=typeof b=="function"?b():b,typeof f!="undefined"&&f&&(g.className+=" "+(b?"":"no-")+a),e[a]=b}return e},D(""),i=k=null,function(a,b){function l(a,b){var c=a.createElement("p"),d=a.getElementsByTagName("head")[0]||a.documentElement;return c.innerHTML="x",d.insertBefore(c.lastChild,d.firstChild)}function m(){var a=s.elements;return typeof a=="string"?a.split(" "):a}function n(a){var b=j[a[h]];return b||(b={},i++,a[h]=i,j[i]=b),b}function o(a,c,d){c||(c=b);if(k)return c.createElement(a);d||(d=n(c));var g;return d.cache[a]?g=d.cache[a].cloneNode():f.test(a)?g=(d.cache[a]=d.createElem(a)).cloneNode():g=d.createElem(a),g.canHaveChildren&&!e.test(a)&&!g.tagUrn?d.frag.appendChild(g):g}function p(a,c){a||(a=b);if(k)return a.createDocumentFragment();c=c||n(a);var d=c.frag.cloneNode(),e=0,f=m(),g=f.length;for(;e",g="hidden"in a,k=a.childNodes.length==1||function(){b.createElement("a");var a=b.createDocumentFragment();return typeof a.cloneNode=="undefined"||typeof a.createDocumentFragment=="undefined"||typeof a.createElement=="undefined"}()}catch(c){g=!0,k=!0}})();var s={elements:d.elements||"abbr article aside audio bdi canvas data datalist details dialog figcaption figure footer header hgroup main mark meter nav output progress section summary template time video",version:c,shivCSS:d.shivCSS!==!1,supportsUnknownElements:k,shivMethods:d.shivMethods!==!1,type:"default",shivDocument:r,createElement:o,createDocumentFragment:p};a.html5=s,r(b)}(this,b),e._version=d,e._prefixes=n,e._domPrefixes=q,e._cssomPrefixes=p,e.mq=z,e.hasEvent=A,e.testProp=function(a){return H([a])},e.testAllProps=J,e.testStyles=y,e.prefixed=function(a,b,c){return b?J(a,b,c):J(a,"pfx")},g.className=g.className.replace(/(^|\s)no-js(\s|$)/,"$1$2")+(f?" js "+v.join(" "):""),e}(this,this.document),function(a,b,c){function d(a){return"[object Function]"==o.call(a)}function e(a){return"string"==typeof a}function f(){}function g(a){return!a||"loaded"==a||"complete"==a||"uninitialized"==a}function h(){var a=p.shift();q=1,a?a.t?m(function(){("c"==a.t?B.injectCss:B.injectJs)(a.s,0,a.a,a.x,a.e,1)},0):(a(),h()):q=0}function i(a,c,d,e,f,i,j){function k(b){if(!o&&g(l.readyState)&&(u.r=o=1,!q&&h(),l.onload=l.onreadystatechange=null,b)){"img"!=a&&m(function(){t.removeChild(l)},50);for(var d in y[c])y[c].hasOwnProperty(d)&&y[c][d].onload()}}var j=j||B.errorTimeout,l=b.createElement(a),o=0,r=0,u={t:d,s:c,e:f,a:i,x:j};1===y[c]&&(r=1,y[c]=[]),"object"==a?l.data=c:(l.src=c,l.type=a),l.width=l.height="0",l.onerror=l.onload=l.onreadystatechange=function(){k.call(this,r)},p.splice(e,0,u),"img"!=a&&(r||2===y[c]?(t.insertBefore(l,s?null:n),m(k,j)):y[c].push(l))}function j(a,b,c,d,f){return q=0,b=b||"j",e(a)?i("c"==b?v:u,a,b,this.i++,c,d,f):(p.splice(this.i++,0,a),1==p.length&&h()),this}function k(){var a=B;return a.loader={load:j,i:0},a}var l=b.documentElement,m=a.setTimeout,n=b.getElementsByTagName("script")[0],o={}.toString,p=[],q=0,r="MozAppearance"in l.style,s=r&&!!b.createRange().compareNode,t=s?l:n.parentNode,l=a.opera&&"[object Opera]"==o.call(a.opera),l=!!b.attachEvent&&!l,u=r?"object":l?"script":"img",v=l?"script":u,w=Array.isArray||function(a){return"[object Array]"==o.call(a)},x=[],y={},z={timeout:function(a,b){return b.length&&(a.timeout=b[0]),a}},A,B;B=function(a){function b(a){var a=a.split("!"),b=x.length,c=a.pop(),d=a.length,c={url:c,origUrl:c,prefixes:a},e,f,g;for(f=0;f
2 |
3 |
4 |
5 |
6 |
7 | Forgot Password - srtdash
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
31 |
32 |
35 |
36 |
37 |
38 |
60 |
61 |
62 |
63 |
64 |
65 |
66 |
67 |
68 |
69 |
70 |
71 |
72 |
73 |
74 |
75 |
76 |
77 |
--------------------------------------------------------------------------------
/srtdash/login.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 | Login - srtdash
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
31 |
32 |
35 |
36 |
37 |
88 |
89 |
90 |
91 |
92 |
93 |
94 |
95 |
96 |
97 |
98 |
99 |
100 |
101 |
102 |
103 |
104 |
105 |
--------------------------------------------------------------------------------
/srtdash/login2.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 | Login - srtdash
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
31 |
32 |
35 |
36 |
37 |
80 |
81 |
82 |
83 |
84 |
85 |
86 |
87 |
88 |
89 |
90 |
91 |
92 |
93 |
94 |
95 |
96 |
97 |
--------------------------------------------------------------------------------
/srtdash/login3.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 | Login - srtdash
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
31 |
32 |
35 |
36 |
37 |
80 |
81 |
82 |
83 |
84 |
85 |
86 |
87 |
88 |
89 |
90 |
91 |
92 |
93 |
94 |
95 |
96 |
97 |
--------------------------------------------------------------------------------
/srtdash/register.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 | Sign up - srtdash
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
31 |
32 |
35 |
36 |
37 |
89 |
90 |
91 |
92 |
93 |
94 |
95 |
96 |
97 |
98 |
99 |
100 |
101 |
102 |
103 |
104 |
105 |
106 |
--------------------------------------------------------------------------------
/srtdash/register2.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 | Sign up - srtdash
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
31 |
32 |
35 |
36 |
37 |
89 |
90 |
91 |
92 |
93 |
94 |
95 |
96 |
97 |
98 |
99 |
100 |
101 |
102 |
103 |
104 |
105 |
106 |
--------------------------------------------------------------------------------
/srtdash/register3.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 | Sign up - srtdash
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
31 |
32 |
35 |
36 |
37 |
89 |
90 |
91 |
92 |
93 |
94 |
95 |
96 |
97 |
98 |
99 |
100 |
101 |
102 |
103 |
104 |
105 |
106 |
--------------------------------------------------------------------------------
/srtdash/register4.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 | Sign up - srtdash
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
31 |
32 |
35 |
36 |
37 |
93 |
94 |
95 |
96 |
97 |
98 |
99 |
100 |
101 |
102 |
103 |
104 |
105 |
106 |
107 |
108 |
109 |
110 |
--------------------------------------------------------------------------------
/srtdash/reset-pass.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 | Recover Password - srtdash
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
31 |
32 |
35 |
36 |
37 |
64 |
65 |
66 |
67 |
68 |
69 |
70 |
71 |
72 |
73 |
74 |
75 |
76 |
77 |
78 |
79 |
80 |
81 |
--------------------------------------------------------------------------------
/srtdash/screenlock.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 | Screenlock - srtdash
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
31 |
32 |
35 |
36 |
37 |
59 |
60 |
61 |
62 |
63 |
64 |
65 |
66 |
67 |
68 |
69 |
70 |
71 |
72 |
73 |
74 |
75 |
76 |
--------------------------------------------------------------------------------
/srtdash/screenlock2.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 | Screenlock - srtdash
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
31 |
32 |
35 |
36 |
37 |
59 |
60 |
61 |
62 |
63 |
64 |
65 |
66 |
67 |
68 |
69 |
70 |
71 |
72 |
73 |
74 |
75 |
76 |
--------------------------------------------------------------------------------
/srtdash/starter.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 | srtdash - Starter Template
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
31 |
32 |
35 |
36 |
37 |
38 |
39 |
80 |
81 |
82 |
83 |
84 |
161 |
162 |
163 |
164 |
165 |
166 |
167 |
Dashboard
168 |
169 | - Home
170 | - Dashboard
171 |
172 |
173 |
174 |
175 |
176 |

177 |
Kumkum Rai
178 |
183 |
184 |
185 |
186 |
187 |
188 |
189 |
190 |
191 |
192 |
193 |
194 |
199 |
200 |
201 |
202 |
203 |
204 |
205 |
209 |
210 |
211 |
212 |
213 |
214 |
215 |
216 |
217 |
Rashed sent you an email
218 | 09:35
219 |
220 |
Lorem ipsum dolor sit amet consectetur adipisicing elit. Esse distinctio itaque at.
221 |
222 |
223 |
224 |
225 |
226 |
227 |
228 |
Added
229 | 7 Minutes Ago
230 |
231 |
Lorem ipsum dolor sit amet consectetur.
232 |
233 |
234 |
235 |
236 |
237 |
238 |
239 |
You missed you Password!
240 | 09:20 Am
241 |
242 |
243 |
244 |
245 |
246 |
247 |
248 |
Member waiting for you Attention
249 | 09:35
250 |
251 |
Lorem ipsum dolor sit amet consectetur adipisicing elit. Esse distinctio itaque at.
252 |
253 |
254 |
255 |
256 |
257 |
258 |
General Settings
259 |
260 |
261 |
262 |
Notifications
263 |
264 |
265 |
266 |
267 |
268 |
Keep it 'On' When you want to get all the notification.
269 |
270 |
271 |
272 |
Show recent activity
273 |
274 |
275 |
276 |
277 |
278 |
The for attribute is necessary to bind our custom checkbox with the input.
279 |
280 |
281 |
282 |
283 |
284 |
285 |
286 |
287 |
288 |
289 |
290 |
291 |
292 |
293 |
294 |
295 |
296 |
297 |
298 |
299 |
300 |
301 |
302 |
306 |
307 |
308 |
309 |
310 |
311 |
312 |
313 |
314 |
315 |
316 |
--------------------------------------------------------------------------------