Skip to content

Commit d649283

Browse files
committed
feat(assets): added free assets & updated gitignore
1 parent 4c237cf commit d649283

35 files changed

+25044
-10
lines changed

.gitignore

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -100,14 +100,6 @@ bld/
100100
.vs/
101101
# Uncomment if you have tasks that create the project's static files in wwwroot
102102

103-
# Ignoring following files/folder only for master
104-
105-
wwwroot/css/*.css
106-
wwwroot/js/*.js
107-
wwwroot/vendor/**/*.css
108-
!wwwroot/vendor/fonts/*.css
109-
wwwroot/vendor/**/*.js
110-
wwwroot/vendor/css
111103

112104

113105

Views/Shared/Sections/_Variables.cshtml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
@{
22
TempData["appName"] = "Materio";
3-
TempData["appUrl"] = "https://demos.themeselection.com/materio-aspnet-core-mvc-admin-template-free/html/vertical-menu-template/";
3+
TempData["appUrl"] = "https://demos.themeselection.com/materio-aspnet-core-mvc-admin-template-free/html/";
44
@* Footer & Misc urls *@
55
TempData["authorName"] = "ThemeSelection";
66
TempData["authorUrl"] = "https://themeselection.com/";
77
TempData["licenseUrl"] = "https://themeselection.com/license/";
8-
TempData["productPage"] = "https://themeselection.com/item/materio-aspnet-core-mvc-admin-template-free/";
8+
TempData["productPage"] = "https://themeselection.com/item/materio-free-aspnet-core-mvc-admin-template/";
99
TempData["support"] = "https://github.com/themeselection/materio-bootstrap-html-aspnet-core-mvc-admin-template-free";
1010
TempData["documentation"] = "https://demos.themeselection.com/materio-bootstrap-html-admin-template/documentation/net-core-mvc-introduction.html";
1111
TempData["twitterUrl"] = "https://twitter.com/Theme_Selection";

wwwroot/css/demo.css

Lines changed: 115 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,115 @@
1+
/*
2+
* demo.css
3+
* File include item demo only specific css only
4+
******************************************************************************/
5+
6+
.menu .app-brand.demo {
7+
height: 64px;
8+
}
9+
10+
.dark-style .menu .app-brand.demo {
11+
height: 64px;
12+
}
13+
14+
.app-brand-logo.demo svg {
15+
width: 30px;
16+
height: 24px;
17+
}
18+
19+
.app-brand-text.demo {
20+
font-size: 1.25rem;
21+
}
22+
23+
/* ! For .layout-navbar-fixed added fix padding top tpo .layout-page */
24+
.layout-navbar-fixed .layout-wrapper:not(.layout-without-menu) .layout-page {
25+
padding-top: 64px !important;
26+
}
27+
28+
/* Navbar page z-index issue solution */
29+
.content-wrapper .navbar {
30+
z-index: auto;
31+
}
32+
33+
/*
34+
* Content
35+
******************************************************************************/
36+
37+
.demo-blocks > * {
38+
display: block !important;
39+
}
40+
41+
.demo-inline-spacing > * {
42+
margin: 1rem 0.375rem 0 0 !important;
43+
}
44+
45+
/* ? .demo-vertical-spacing class is used to have vertical margins between elements. To remove margin-top from the first-child, use .demo-only-element class with .demo-vertical-spacing class. For example, we have used this class in forms-input-groups.html file. */
46+
.demo-vertical-spacing > * {
47+
margin-top: 1.25rem !important;
48+
margin-bottom: 0 !important;
49+
}
50+
.demo-vertical-spacing.demo-only-element > :first-child {
51+
margin-top: 0 !important;
52+
}
53+
54+
.demo-vertical-spacing-lg > * {
55+
margin-top: 1.875rem !important;
56+
margin-bottom: 0 !important;
57+
}
58+
.demo-vertical-spacing-lg.demo-only-element > :first-child {
59+
margin-top: 0 !important;
60+
}
61+
62+
.demo-vertical-spacing-xl > * {
63+
margin-top: 5rem !important;
64+
margin-bottom: 0 !important;
65+
}
66+
.demo-vertical-spacing-xl.demo-only-element > :first-child {
67+
margin-top: 0 !important;
68+
}
69+
70+
.rtl-only {
71+
display: none !important;
72+
text-align: left !important;
73+
direction: ltr !important;
74+
}
75+
76+
[dir='rtl'] .rtl-only {
77+
display: block !important;
78+
}
79+
80+
/* Dropdown buttons going out of small screens */
81+
@media (max-width: 576px) {
82+
#dropdown-variation-demo .btn-group .text-truncate {
83+
width: 300px;
84+
position: relative;
85+
}
86+
#dropdown-variation-demo .btn-group .text-truncate::after {
87+
position: absolute;
88+
top: 45%;
89+
right: 0.65rem;
90+
}
91+
}
92+
/*
93+
* Layout demo
94+
******************************************************************************/
95+
96+
.layout-demo-wrapper {
97+
display: -webkit-box;
98+
display: -ms-flexbox;
99+
display: flex;
100+
-webkit-box-align: center;
101+
-ms-flex-align: center;
102+
align-items: center;
103+
-webkit-box-orient: vertical;
104+
-webkit-box-direction: normal;
105+
-ms-flex-direction: column;
106+
flex-direction: column;
107+
margin-top: 1.25rem;
108+
}
109+
.layout-demo-placeholder img {
110+
width: 900px;
111+
}
112+
.layout-demo-info {
113+
text-align: center;
114+
margin-top: 1.25rem;
115+
}

wwwroot/css/site.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/* Custom styles goes here */

wwwroot/js/config.js

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
/**
2+
* Config
3+
* -------------------------------------------------------------------------------------
4+
* ! IMPORTANT: Make sure you clear the browser local storage In order to see the config changes in the template.
5+
* ! To clear local storage: (https://www.leadshook.com/help/how-to-clear-local-storage-in-google-chrome-browser/).
6+
*/
7+
8+
'use strict';
9+
10+
// JS global variables
11+
let config = {
12+
colors: {
13+
primary: '#9055fd',
14+
secondary: '#8a8d93',
15+
success: '#56ca00',
16+
info: '#16b1ff',
17+
warning: '#ffb400',
18+
danger: '#ff4c51',
19+
dark: '#4b4b4b',
20+
black: '#3a3541',
21+
white: '#fff',
22+
cardColor: '#fff',
23+
bodyBg: '#f4f5fa',
24+
bodyColor: '#89868d',
25+
headingColor: '#544f5a',
26+
textMuted: '#b4b2b7',
27+
borderColor: '#e7e7e8',
28+
chartBgColor: '#F0F2F8'
29+
}
30+
};

0 commit comments

Comments
 (0)