├── images
└── preview.png
├── js
└── script.js
├── Readme.md
├── css
├── style.css.map
└── style.css
├── scss
└── style.scss
└── index.html
/images/preview.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frontendfunn/semantic-ui-admin-dashboard-template/HEAD/images/preview.png
--------------------------------------------------------------------------------
/js/script.js:
--------------------------------------------------------------------------------
1 | $(document).ready(function() {
2 | $('.ui.dropdown').dropdown();
3 | $('.sidebar-menu-toggler').on('click', function() {
4 | var target = $(this).data('target');
5 | $(target)
6 | .sidebar({
7 | dinPage: true,
8 | transition: 'overlay',
9 | mobileTransition: 'overlay'
10 | })
11 | .sidebar('toggle');
12 | });
13 | });
14 |
--------------------------------------------------------------------------------
/Readme.md:
--------------------------------------------------------------------------------
1 | # 🙈 🙉 🙊 Semantic UI - Sample Admin Dashboard Template
2 |
3 | ## 😃 Click here for the 👉 [💥LIVE DEMO](https://frontendfunn.github.io/semantic-ui-admin-dashboard-template/)
4 |
5 | ---
6 |
7 | 
8 |
9 | # 👉 Subscribe to My Channel [💙❤️Youtube❤️💙](https://www.youtube.com/channel/UCpOHt5d6GG-mvo-_pU06rhQ?sub_confirmation=1)
10 |
11 | Made with ❤️ - by [FrontEndFunn](https://www.youtube.com/channel/UCpOHt5d6GG-mvo-_pU06rhQ?sub_confirmation=1)
12 |
--------------------------------------------------------------------------------
/css/style.css.map:
--------------------------------------------------------------------------------
1 | {
2 | "version": 3,
3 | "mappings": "AAAA,OAAO,CAAC,6EAAI;AAEZ,AAAA,KAAK,CAAC;EACJ,QAAQ,CAAA,MAAC;EACT,cAAc,CAAA,MAAC;EACf,cAAc,CAAA,OAAC;EACf,aAAa,CAAA,wBAAC;CACf;;AACD,AAAA,IAAI,CAAC;EACH,WAAW,EAAE,kBAAkB,CAAC,UAAU;CAC3C;;AACD,AAAA,IAAI,CAAC,mBAAmB,CAAC;EACvB,KAAK,EAAE,GAAG;CACX;;AACD,AAAA,GAAG,AAAA,SAAS,AAAA,KAAK,AAAA,aAAa,CAAC;EAC7B,UAAU,EAAE,eAAe;EAC3B,UAAU,EAAE,iBAAiB,CAAC,UAAU;EACxC,MAAM,EAAE,iBAAiB,CAAC,UAAU;CACrC;;AACD,AAAA,GAAG,AAAA,SAAS,AAAA,KAAK,AAAA,aAAa,CAAC,KAAK,CAAC,CAAC,AAAA,KAAK,CAAC;EAC1C,KAAK,EAAE,IAAI;EACX,MAAM,EAAE,iBAAiB;CAC1B;;AACD,AAAA,aAAa,CAAC;EACZ,UAAU,EAAE,IAAI;CACjB;;AACD,MAAM,EAAE,SAAS,EAAE,KAAK;EACtB,AAAA,GAAG,AAAA,SAAS,AAAA,KAAK,AAAA,aAAa,CAAC;IAC7B,UAAU,EAAE,OAAO;IACnB,SAAS,EAAE,oBAAoB;IAC/B,KAAK,EAAE,gBAAgB;GACxB;EACD,AAAA,aAAa,CAAC;IACZ,WAAW,EAAE,KAAK;GACnB;EACD,AAAA,qBAAqB,CAAC;IACpB,OAAO,EAAE,eAAe;GACzB",
4 | "sources": [
5 | "../scss/style.scss"
6 | ],
7 | "names": [],
8 | "file": "style.css"
9 | }
--------------------------------------------------------------------------------
/scss/style.scss:
--------------------------------------------------------------------------------
1 | @import url('https://fonts.googleapis.com/css?family=Open+Sans:400,700&display=swap');
2 |
3 | :root {
4 | --tablet: 768px;
5 | --smallMonitor: 992px;
6 | --largeMonitor: 1200px;
7 | --font-family: 'Open Sans', sans-serif;
8 | }
9 | body {
10 | font-family: var(--font-family) !important;
11 | }
12 | body ::-webkit-scrollbar {
13 | width: 6px;
14 | }
15 | .ui.vertical.menu.sidebar-menu {
16 | margin-top: 40px !important;
17 | max-height: calc(100% - 40px) !important;
18 | height: calc(100% - 40px) !important;
19 | }
20 | .ui.vertical.menu.sidebar-menu .item i.icon {
21 | float: left;
22 | margin: 0em 0.5em 0em 0em;
23 | }
24 | .main-content {
25 | margin-top: 40px;
26 | }
27 | @media (min-width: 768px) {
28 | .ui.vertical.menu.sidebar-menu {
29 | visibility: visible;
30 | transform: translate3d(0, 0, 0);
31 | width: 15rem !important;
32 | }
33 | .main-content {
34 | margin-left: 15rem;
35 | }
36 | .sidebar-menu-toggler {
37 | display: none !important;
38 | }
39 | }
40 |
--------------------------------------------------------------------------------
/css/style.css:
--------------------------------------------------------------------------------
1 | @import url("https://fonts.googleapis.com/css?family=Open+Sans:400,700&display=swap");
2 | :root {
3 | --tablet: 768px;
4 | --smallMonitor: 992px;
5 | --largeMonitor: 1200px;
6 | --font-family: 'Open Sans', sans-serif;
7 | }
8 |
9 | body {
10 | font-family: var(--font-family) !important;
11 | }
12 |
13 | body ::-webkit-scrollbar {
14 | width: 6px;
15 | }
16 |
17 | .ui.vertical.menu.sidebar-menu {
18 | margin-top: 40px !important;
19 | max-height: calc(100% - 40px) !important;
20 | height: calc(100% - 40px) !important;
21 | }
22 |
23 | .ui.vertical.menu.sidebar-menu .item i.icon {
24 | float: left;
25 | margin: 0em 0.5em 0em 0em;
26 | }
27 |
28 | .main-content {
29 | margin-top: 40px;
30 | }
31 |
32 | @media (min-width: 768px) {
33 | .ui.vertical.menu.sidebar-menu {
34 | visibility: visible;
35 | -webkit-transform: translate3d(0, 0, 0);
36 | transform: translate3d(0, 0, 0);
37 | width: 15rem !important;
38 | }
39 | .main-content {
40 | margin-left: 15rem;
41 | }
42 | .sidebar-menu-toggler {
43 | display: none !important;
44 | }
45 | }
46 | /*# sourceMappingURL=style.css.map */
--------------------------------------------------------------------------------
/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 | FrontendFunn - Semantic UI - Sample Admin Dashboard Template
8 |
9 |
15 |
16 |
22 |
23 |
24 |
25 |
26 |
27 |
107 |
108 |
109 |
110 |
111 |
143 |
144 |
145 |
146 |
147 |
148 |
149 |
152 |
153 |
154 |
157 |
162 |
163 | orders
164 |
165 |
166 | Elliot requested permission to view your contact details
167 |
168 |
169 |
174 |
175 |
176 |
179 |
180 |
181 |
184 |
187 |
188 | Time
189 |
190 |
191 | Elliot requested permission to view your contact details
192 |
193 |
194 |
199 |
200 |
201 |
204 |
205 |
206 |
209 |
212 |
213 | Saves
214 |
215 |
216 | Elliot requested permission to view your contact details
217 |
218 |
219 |
224 |
225 |
226 |
229 |
230 |
231 |
234 |
237 |
238 | Views
239 |
240 |
241 | Elliot requested permission to view your contact details
242 |
243 |
244 |
249 |
250 |
251 |
252 |
253 |
254 |
255 |
256 |
257 | |
258 | Git Repository
259 | |
260 |
261 |
262 |
263 |
264 | |
265 | node_modules
266 | |
267 | Initial commit |
268 | 10 hours ago |
269 |
270 |
271 | | test |
272 | Initial commit |
273 | 10 hours ago |
274 |
275 |
276 | | build |
277 | Initial commit |
278 | 10 hours ago |
279 |
280 |
281 | | package.json |
282 | Initial commit |
283 | 10 hours ago |
284 |
285 |
286 | | Gruntfile.js |
287 | Initial commit |
288 | 10 hours ago |
289 |
290 |
291 |
292 |
293 |
294 |
295 |
298 |
299 |
300 | 5,550
301 |
302 |
303 | Downloads
304 |
305 |
306 |
307 |
310 |
311 |
312 | 50+
313 |
314 |
315 | Developers
316 |
317 |
318 |
319 |
322 |
323 |
324 | 800+
325 |
326 |
327 | Commits
328 |
329 |
330 |
331 |
334 |
335 |
336 | 1000+
337 |
338 |
339 | Cups of Coffee
340 |
341 |
342 |
343 |
344 |
345 |
346 |
347 |
352 |
357 |
358 |
359 |
360 |
--------------------------------------------------------------------------------