dari laptop
This commit is contained in:
15451
public/css/adminlte.css
Normal file
15451
public/css/adminlte.css
Normal file
File diff suppressed because it is too large
Load Diff
1
public/css/adminlte.css.map
Normal file
1
public/css/adminlte.css.map
Normal file
File diff suppressed because one or more lines are too long
7
public/css/adminlte.min.css
vendored
Normal file
7
public/css/adminlte.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
1
public/css/adminlte.min.css.map
Normal file
1
public/css/adminlte.min.css.map
Normal file
File diff suppressed because one or more lines are too long
15424
public/css/adminlte.rtl.css
Normal file
15424
public/css/adminlte.rtl.css
Normal file
File diff suppressed because it is too large
Load Diff
1
public/css/adminlte.rtl.css.map
Normal file
1
public/css/adminlte.rtl.css.map
Normal file
File diff suppressed because one or more lines are too long
7
public/css/adminlte.rtl.min.css
vendored
Normal file
7
public/css/adminlte.rtl.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
1
public/css/adminlte.rtl.min.css.map
Normal file
1
public/css/adminlte.rtl.min.css.map
Normal file
File diff suppressed because one or more lines are too long
3
public/css/heroes.css
Normal file
3
public/css/heroes.css
Normal file
@@ -0,0 +1,3 @@
|
||||
@media (min-width: 992px) {
|
||||
.rounded-lg-3 { border-radius: .3rem; }
|
||||
}
|
||||
131
public/css/jsapi-template-main.css
Normal file
131
public/css/jsapi-template-main.css
Normal file
@@ -0,0 +1,131 @@
|
||||
H2 {
|
||||
MARGIN-LEFT: 0px; FONT-WEIGHT: bold; FONT-SIZE: 1.2em
|
||||
}
|
||||
H3 {
|
||||
FONT-WEIGHT: bold; FONT-SIZE: 1.25em; MARGIN-BOTTOM: 0px;
|
||||
}
|
||||
.grid-container {
|
||||
padding-top: 0px;
|
||||
padding-bottom: 0px;
|
||||
padding-right: 10px;
|
||||
padding-left: 10px;
|
||||
background-color: #2D2670;
|
||||
color: #ffffff;
|
||||
display: grid;
|
||||
grid-template-columns: repeat(4, 1fr);
|
||||
grid-template-rows: repeat(2, 1fr);
|
||||
gap: 10px;
|
||||
grid-template-areas:
|
||||
"a a b c"
|
||||
"a a b c";
|
||||
align-items: start;
|
||||
}
|
||||
.item1 {
|
||||
grid-area: a;
|
||||
font-size: 1em;
|
||||
font-weight: bold;
|
||||
}
|
||||
.item2 {
|
||||
grid-area: c;
|
||||
font-size: 1em;
|
||||
align-self: end;
|
||||
text-align: right;
|
||||
font-weight: bold;
|
||||
}
|
||||
.breadcrumb {
|
||||
color: #009AF2;
|
||||
}
|
||||
.breadcrumb:hover {
|
||||
color: #007AC2;
|
||||
cursor: pointer;
|
||||
}
|
||||
.message {
|
||||
font-weight: 400;
|
||||
font-size: smaller;
|
||||
cursor: default;
|
||||
padding-top: 5px;
|
||||
display: none;
|
||||
margin-left: 10px;
|
||||
color: #800000;
|
||||
white-space: normal;
|
||||
}
|
||||
#bottomPane {
|
||||
padding: 8px;
|
||||
background-color: #ffffff;
|
||||
text-align: center;
|
||||
}
|
||||
#txtUrl {
|
||||
padding-top: 2px;
|
||||
padding-bottom: 2px;
|
||||
padding-left: 5px;
|
||||
padding-right: 5px;
|
||||
color: #000000;
|
||||
background-color: #E7E9EB;
|
||||
}
|
||||
#titleEl {
|
||||
font-weight: bold;
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
.switch {
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
width: 45px;
|
||||
height: 22px;
|
||||
vertical-align: middle;
|
||||
}
|
||||
.switch input {
|
||||
opacity: 0;
|
||||
width: 0;
|
||||
height: 0;
|
||||
}
|
||||
.slider {
|
||||
position: absolute;
|
||||
cursor: pointer;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
background-color: #cccccc;
|
||||
-webkit-transition: 0.4s;
|
||||
transition: 0.4s;
|
||||
}
|
||||
|
||||
.slider:before {
|
||||
position: absolute;
|
||||
content: "";
|
||||
height: 20px;
|
||||
width: 20px;
|
||||
left: 3px;
|
||||
bottom: 1px;
|
||||
background-color: white;
|
||||
-webkit-transition: 0.4s;
|
||||
transition: 0.4s;
|
||||
}
|
||||
|
||||
input:checked+.slider {
|
||||
background-color: #2196f3;
|
||||
}
|
||||
|
||||
input:focus+.slider {
|
||||
box-shadow: 0 0 1px #2196f3;
|
||||
}
|
||||
|
||||
input:checked+.slider:before {
|
||||
-webkit-transform: translateX(20px);
|
||||
-ms-transform: translateX(20px);
|
||||
transform: translateX(20px);
|
||||
}
|
||||
/* Rounded sliders */
|
||||
.slider.round {
|
||||
border-radius: 20px;
|
||||
}
|
||||
.slider.round:before {
|
||||
border-radius: 50%;
|
||||
}
|
||||
.labelText {
|
||||
padding-left: 5px;
|
||||
font-size: 15px;
|
||||
}
|
||||
#mainDiv {
|
||||
padding: 8px;
|
||||
}
|
||||
Reference in New Issue
Block a user