Skip to content

Commit f730b4e

Browse files
committedApr 27, 2017
MMS System First Upload
0 parents  commit f730b4e

Some content is hidden

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

53 files changed

+24105
-0
lines changed
 

‎assets/css/core.css

+200
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,200 @@
1+
* {
2+
margin: 0px;
3+
padding: 0px; }
4+
.wrapper.login {
5+
padding: 60px 0px; }
6+
.dashboard-title {
7+
background: #f0f0f0;
8+
padding: 20px; }
9+
.login form {
10+
margin-top: 20px;
11+
border: 1px solid #f0f0f0;
12+
padding: 20px 30px; }
13+
.intro-title {
14+
margin-bottom: 0px; }
15+
.intro-title + small {
16+
font-weight: bold; }
17+
.error {
18+
border: 1px solid rgba(244, 54, 54, 0.85);
19+
padding: 10px;
20+
margin: 20px 0px;
21+
background: rgba(244, 54, 54, 0.85);
22+
color: #fff; }
23+
.success {
24+
border: 1px solid rgba(50,205,50, 0.85);
25+
padding: 10px;
26+
margin: 20px 0px;
27+
background: rgba(50,205,50, 0.85);
28+
color: #fff; }
29+
.navbar {
30+
display: none; }
31+
.content {
32+
padding: 50px 0px; }
33+
.box {
34+
min-height: 100px;
35+
padding: 20px;
36+
color: #fff;
37+
text-align: center; }
38+
.box p {
39+
font-size: 16px;
40+
font-weight: bold;
41+
margin-top: 20px; }
42+
.user-box {
43+
background: #ffc107; }
44+
.diposit-box {
45+
background: #2196F3; }
46+
/* The Modal (background) */
47+
.modal {
48+
display: none; /* Hidden by default */
49+
position: fixed; /* Stay in place */
50+
z-index: 1; /* Sit on top */
51+
padding-top: 100px; /* Location of the box */
52+
left: 0;
53+
top: 0;
54+
width: 100%; /* Full width */
55+
height: 100%; /* Full height */
56+
overflow: auto; /* Enable scroll if needed */
57+
background-color: rgb(0,0,0); /* Fallback color */
58+
background-color: rgba(0,0,0,0.4); /* Black w/ opacity */ }
59+
/* Modal Content */
60+
.modal-content {
61+
background-color: #fefefe;
62+
margin: auto;
63+
padding: 20px;
64+
border: 1px solid #888;
65+
width: 48%; }
66+
/* The Close Button */
67+
.close {
68+
color: #aaaaaa;
69+
float: right;
70+
font-size: 28px;
71+
font-weight: bold; }
72+
.close:hover,
73+
.close:focus {
74+
color: #000;
75+
text-decoration: none;
76+
cursor: pointer; }
77+
78+
/* Larger than phone */
79+
@media (min-width: 550px) {
80+
81+
}
82+
83+
/* Larger than tablet */
84+
@media (min-width: 750px) {
85+
/* Navbar */
86+
.navbar + .docs-section {
87+
border-top-width: 0; }
88+
.navbar,
89+
.navbar-spacer {
90+
display: block;
91+
width: 100%;
92+
height: 6.5rem;
93+
background: #fff;
94+
z-index: 99;
95+
border-top: 1px solid #eee;
96+
border-bottom: 1px solid #eee; }
97+
.navbar-spacer {
98+
display: none; }
99+
.navbar > .container {
100+
width: 100%; }
101+
.navbar-list {
102+
list-style: none;
103+
margin-bottom: 0; }
104+
.navbar-item {
105+
position: relative;
106+
float: left;
107+
margin-bottom: 0; }
108+
.navbar-item.u-pull-right {
109+
float: right; }
110+
.button.nav-item{
111+
margin-top: 1.5rem; }
112+
.navbar-link {
113+
text-transform: uppercase;
114+
font-size: 11px;
115+
font-weight: 600;
116+
letter-spacing: .2rem;
117+
margin-right: 35px;
118+
text-decoration: none;
119+
line-height: 6.5rem;
120+
color: #222; }
121+
.navbar-link.active {
122+
color: #33C3F0; }
123+
.has-docked-nav .navbar {
124+
position: fixed;
125+
top: 0;
126+
left: 0; }
127+
.has-docked-nav .navbar-spacer {
128+
display: block; }
129+
/* Re-overiding the width 100% declaration to match size of % based container */
130+
.has-docked-nav .navbar > .container {
131+
width: 80%; }
132+
133+
/* Popover */
134+
.popover.open {
135+
display: block;
136+
}
137+
.popover {
138+
display: none;
139+
position: absolute;
140+
top: 0;
141+
left: 0;
142+
background: #fff;
143+
border: 1px solid #eee;
144+
border-radius: 4px;
145+
top: 92%;
146+
left: -20%;
147+
-webkit-filter: drop-shadow(0 0 6px rgba(0,0,0,.1));
148+
-moz-filter: drop-shadow(0 0 6px rgba(0,0,0,.1));
149+
filter: drop-shadow(0 0 6px rgba(0,0,0,.1)); }
150+
.popover-item:first-child .popover-link:after,
151+
.popover-item:first-child .popover-link:before {
152+
bottom: 100%;
153+
left: 50%;
154+
border: solid transparent;
155+
content: " ";
156+
height: 0;
157+
width: 0;
158+
position: absolute;
159+
pointer-events: none; }
160+
.popover-item:first-child .popover-link:after {
161+
border-color: rgba(255, 255, 255, 0);
162+
border-bottom-color: #fff;
163+
border-width: 10px;
164+
margin-left: -10px; }
165+
.popover-item:first-child .popover-link:before {
166+
border-color: rgba(238, 238, 238, 0);
167+
border-bottom-color: #eee;
168+
border-width: 11px;
169+
margin-left: -11px; }
170+
.popover-list {
171+
padding: 0;
172+
margin: 0;
173+
list-style: none; }
174+
.popover-item {
175+
padding: 0;
176+
margin: 0; }
177+
.popover-link {
178+
position: relative;
179+
color: #222;
180+
display: block;
181+
padding: 8px 20px;
182+
border-bottom: 1px solid #eee;
183+
text-decoration: none;
184+
text-transform: uppercase;
185+
font-size: 1.0rem;
186+
font-weight: 600;
187+
text-align: center;
188+
letter-spacing: .1rem; }
189+
.popover-item:first-child .popover-link {
190+
border-radius: 4px 4px 0 0; }
191+
.popover-item:last-child .popover-link {
192+
border-radius: 0 0 4px 4px;
193+
border-bottom-width: 0; }
194+
.popover-link:hover {
195+
color: #fff;
196+
background: #33C3F0; }
197+
.popover-link:hover,
198+
.popover-item:first-child .popover-link:hover:after {
199+
border-bottom-color: #33C3F0; }
200+
}

‎assets/css/datatables.min.css

+23
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)
Please sign in to comment.