Initial commit

This commit is contained in:
Scott Idem
2020-01-24 19:51:14 -05:00
commit 7e79f333c2
36 changed files with 8760 additions and 0 deletions

44
app/css/launcher.css Normal file
View File

@@ -0,0 +1,44 @@
body {
margin: .1rem;
padding: .1rem;
/*border: solid thin pink;*/
}
.btn_no_case {
text-transform: none;
}
body > .container { /* allow the container directly under body to be 100% wide*/
/*max-width: 100%;*/
margin: 0rem;
padding: 0rem;
/*border: solid thin pink;*/
}
body > .container > .row { /* allow the container directly under body to be 100% wide*/
margin-right: 0;
margin-left: 0;
margin: .1rem;
padding: .1rem;
}
/*
.btn-info {
background: green;
}
.btn-info:hover {
background: darkgreen;
}
mynewcolor:#77cccc;
.btn-info {
@include button-variant($mynewcolor, darken($mynewcolor, 7.5%), darken($mynewcolor, 10%), lighten($mynewcolor,5%), lighten($mynewcolor, 10%), darken($mynewcolor,30%));
}
.btn-outline-primary {
@include button-outline-variant($mynewcolor, #222222, lighten($mynewcolor,5%), $mynewcolor);
}
*/

View File

@@ -0,0 +1,19 @@
/*
body {
padding-top: 3rem;
}
.starter-template {
padding: 1rem 1.5rem;
text-align: center;
}
.container {
width: auto;
max-width: 2560px;
padding: 0 1rem;
}
.footer {
background-color: #f5f5f5;
}
*/

46
app/css/style.css Normal file
View File

@@ -0,0 +1,46 @@
.bd-placeholder-img {
font-size: 1.125rem;
text-anchor: middle;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
@media (min-width: 768px) {
.bd-placeholder-img-lg {
font-size: 3.5rem;
}
}
#file_import_drag_area {
font-size: 3rem;
font-weight: 600;
width: 90%;
height: 15rem;
}
#file_import_drag_area:hover {
font-size: 3.5rem;
font-weight: 1000;
}
#file_import_drag_area:hover:before {
/*font-weight: 1000;
content: 'Here';*/
}
#file_import_drag_area::before {
content: attr(data-value);
position: relative;
top: 0;
right: 0;
width: 100%;
height: 15rem;
/*border: 1px solid red;*/
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
}