Initial commit. Modified the Meteor todos app to create the Petit Teton data tracking app. Has working data for sales. Requires a Mongo database.

This commit is contained in:
Wynne Crisman
2017-01-15 11:33:37 -08:00
commit b757595cd6
104 changed files with 26824 additions and 0 deletions

69
client/bootstrap.styl vendored Normal file
View File

@@ -0,0 +1,69 @@
textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus,
.uneditable-input:focus,
.list-group:focus {
border-color: rgba(82, 168, 236, 0.8);
outline: 0;
outline: thin dotted \9;
/* IE6-9 */
/*
-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6);
-moz-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6);
box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6);
*/
-webkit-box-shadow: 0px 0px 46px -13px rgba(230,28,230,1) !important;
-moz-box-shadow: 0px 0px 46px -13px rgba(230,28,230,1) !important;
box-shadow: 0px 0px 46px -13px rgba(230,28,230,1) !important;
}
.form-control, .select2-selection {
font-size: 14px;
margin-bottom: 0px;
}
.input-group {
margin-bottom: 15px;
}
.select2 .select2-selection {
border-color: #ccc;
}
.select2-container--default.select2-container--focus .select2-selection--multiple {
border-color: rgba(101, 174, 231, 0.823529);
outline: 0;
outline: thin dotted \9;
-webkit-box-shadow: 0px 0px 46px -11px rgba(230,28,230,1) !important;
-moz-box-shadow: 0px 0px 46px -11px rgba(230,28,230,1) !important;
box-shadow: 0px 0px 46px -11px rgba(230,28,230,1) !important;
}
.has-error {
border-color: #a94442 !important;
/*
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075) !important;
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075) !important;
*/
/*
-webkit-box-shadow: 0px 0px 46px -13px rgba(255,28,230,1) !important;
-moz-box-shadow: 0px 0px 46px -13px rgba(255,28,230,1) !important;
box-shadow: 0px 0px 46px -13px rgba(255,28,230,1) !important;
*/
}