Skip to content

Commit 9e0b103

Browse files
author
Likhon Sheikh
committed
Add files via upload
1 parent 52a2059 commit 9e0b103

File tree

585 files changed

+117702
-0
lines changed

Some content is hidden

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

585 files changed

+117702
-0
lines changed

.htaccess

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
<IfModule mod_rewrite.c>
2+
<IfModule mod_negotiation.c>
3+
Options -MultiViews -Indexes
4+
</IfModule>
5+
6+
RewriteEngine On
7+
8+
# Handle Authorization Header
9+
RewriteCond %{HTTP:Authorization} .
10+
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
11+
12+
# Redirect Trailing Slashes If Not A Folder...
13+
RewriteCond %{REQUEST_FILENAME} !-d
14+
RewriteCond %{REQUEST_URI} (.+)/$
15+
RewriteRule ^ %1 [L,R=301]
16+
17+
# Send Requests To Front Controller...
18+
RewriteCond %{REQUEST_FILENAME} !-d
19+
RewriteCond %{REQUEST_FILENAME} !-f
20+
RewriteRule ^ index.php [L]
21+
22+
<Files .env>
23+
Order allow,deny
24+
Deny from all
25+
</Files>
26+
</IfModule>

assets/admin/build/css/demo.css

Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
* {
2+
box-sizing: border-box;
3+
-moz-box-sizing: border-box; }
4+
5+
body {
6+
margin: 20px;
7+
font-size: 14px;
8+
font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
9+
color: #555; }
10+
11+
.hide {
12+
display: none; }
13+
14+
pre {
15+
margin: 0 !important;
16+
display: inline-block; }
17+
18+
.token.operator,
19+
.token.entity,
20+
.token.url,
21+
.language-css .token.string,
22+
.style .token.string,
23+
.token.variable {
24+
background: none; }
25+
26+
input, button {
27+
height: 35px;
28+
margin: 0;
29+
padding: 6px 12px;
30+
border-radius: 2px;
31+
font-family: inherit;
32+
font-size: 100%;
33+
color: inherit; }
34+
input[disabled], button[disabled] {
35+
background-color: #eee; }
36+
37+
input, select {
38+
border: 1px solid #CCC;
39+
width: 250px; }
40+
41+
::-webkit-input-placeholder {
42+
color: #BBB; }
43+
44+
::-moz-placeholder {
45+
/* Firefox 19+ */
46+
color: #BBB;
47+
opacity: 1; }
48+
49+
:-ms-input-placeholder {
50+
color: #BBB; }
51+
52+
button {
53+
color: #FFF;
54+
background-color: #428BCA;
55+
border: 1px solid #357EBD; }
56+
button:hover {
57+
background-color: #3276B1;
58+
border-color: #285E8E;
59+
cursor: pointer; }
60+
61+
#result {
62+
margin-bottom: 100px; }

0 commit comments

Comments
 (0)