Skip to content

Commit a81ff6d

Browse files
authored
Merge pull request #1 from codeislifes/razor_runtime_compilation
Razor runtime compilation
2 parents f282816 + 616be21 commit a81ff6d

File tree

361 files changed

+140683
-23
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

361 files changed

+140683
-23
lines changed

deps/html-template.zip

6.51 MB
Binary file not shown.

deps/html-template/CHANGELOG.md

Lines changed: 9 additions & 0 deletions

deps/html-template/README.md

Lines changed: 193 additions & 0 deletions

deps/html-template/documentation.html

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<!DOCTYPE html>
2+
<html>
3+
4+
<head>
5+
<title> Sneat - Free Bootstrap 5 HTML Admin Template </title>
6+
<meta http-equiv="refresh" content="0; URL='https://themeselection.com/demo/sneat-bootstrap-html-admin-template/documentation/'" />
7+
</head>
8+
9+
<body>
10+
<p>If you do not redirect please visit :
11+
https://themeselection.com/demo/sneat-bootstrap-html-admin-template/documentation/</p>
12+
</body>
13+
14+
</html>
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
defaults,
2+
not IE 11,
3+
maintained node versions
Lines changed: 107 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,107 @@
1+
/*
2+
* demo.css
3+
* File include item demo only specific css only
4+
******************************************************************************/
5+
6+
.menu .app-brand.demo {
7+
height: 64px;
8+
margin-top: 12px;
9+
}
10+
11+
.app-brand-logo.demo svg {
12+
width: 22px;
13+
height: 38px;
14+
}
15+
16+
.app-brand-text.demo {
17+
font-size: 1.75rem;
18+
letter-spacing: -0.5px;
19+
text-transform: lowercase;
20+
}
21+
22+
/* ! For .layout-navbar-fixed added fix padding top tpo .layout-page */
23+
/* Detached navbar */
24+
.layout-navbar-fixed .layout-wrapper:not(.layout-horizontal):not(.layout-without-menu) .layout-page {
25+
padding-top: 76px !important;
26+
}
27+
/* Default navbar */
28+
.layout-navbar-fixed .layout-wrapper:not(.layout-without-menu) .layout-page {
29+
padding-top: 64px !important;
30+
}
31+
32+
/* Navbar page z-index issue solution */
33+
.content-wrapper .navbar {
34+
z-index: auto;
35+
}
36+
37+
/*
38+
* Content
39+
******************************************************************************/
40+
41+
.demo-blocks > * {
42+
display: block !important;
43+
}
44+
45+
.demo-inline-spacing > * {
46+
margin: 1rem 0.375rem 0 0 !important;
47+
}
48+
49+
/* ? .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. */
50+
.demo-vertical-spacing > * {
51+
margin-top: 1rem !important;
52+
margin-bottom: 0 !important;
53+
}
54+
.demo-vertical-spacing.demo-only-element > :first-child {
55+
margin-top: 0 !important;
56+
}
57+
58+
.demo-vertical-spacing-lg > * {
59+
margin-top: 1.875rem !important;
60+
margin-bottom: 0 !important;
61+
}
62+
.demo-vertical-spacing-lg.demo-only-element > :first-child {
63+
margin-top: 0 !important;
64+
}
65+
66+
.demo-vertical-spacing-xl > * {
67+
margin-top: 5rem !important;
68+
margin-bottom: 0 !important;
69+
}
70+
.demo-vertical-spacing-xl.demo-only-element > :first-child {
71+
margin-top: 0 !important;
72+
}
73+
74+
.rtl-only {
75+
display: none !important;
76+
text-align: left !important;
77+
direction: ltr !important;
78+
}
79+
80+
[dir='rtl'] .rtl-only {
81+
display: block !important;
82+
}
83+
84+
/*
85+
* Layout demo
86+
******************************************************************************/
87+
88+
.layout-demo-wrapper {
89+
display: -webkit-box;
90+
display: -ms-flexbox;
91+
display: flex;
92+
-webkit-box-align: center;
93+
-ms-flex-align: center;
94+
align-items: center;
95+
-webkit-box-orient: vertical;
96+
-webkit-box-direction: normal;
97+
-ms-flex-direction: column;
98+
flex-direction: column;
99+
margin-top: 1rem;
100+
}
101+
.layout-demo-placeholder img {
102+
width: 900px;
103+
}
104+
.layout-demo-info {
105+
text-align: center;
106+
margin-top: 1rem;
107+
}

0 commit comments

Comments
 (0)