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:
74
client/main.styl
Normal file
74
client/main.styl
Normal file
@@ -0,0 +1,74 @@
|
||||
*
|
||||
box-sizing: border-box
|
||||
-webkit-tap-highlight-color: transparent
|
||||
-webkit-font-smoothing: antialiased
|
||||
|
||||
html
|
||||
scrollbar-face-color: #808080
|
||||
scrollbar-highlight-color: #808080
|
||||
scrollbar-3dlight-color: #707070
|
||||
scrollbar-darkshadow-color: #808080
|
||||
scrollbar-shadow-color: #7e7e7e
|
||||
scrollbar-arrow-color: #ffffff
|
||||
scrollbar-track-color: #505050
|
||||
height: 100%
|
||||
|
||||
html, body, #archives ul, #overall-footer, #content ul
|
||||
margin: 0 0 0 0
|
||||
padding: 0 0 0 0
|
||||
|
||||
body
|
||||
font-family: verdana, arial, helvetica, sans-serif
|
||||
font-size: 1.0em
|
||||
height: 100%
|
||||
|
||||
#__blaze-root
|
||||
//max-width: 950px //Use if the width should be limited.
|
||||
//min-width: 250px
|
||||
//margin: 0 auto //Use if the width should be limited.
|
||||
//min-height: 100% //Used with a full height layout.
|
||||
|
||||
//Flex container.
|
||||
//display: flex
|
||||
//flex-direction: row
|
||||
//flex-wrap: nowrap
|
||||
//align-items: stretch
|
||||
//align-content: stretch
|
||||
height: 100%;
|
||||
//width: 100%;
|
||||
//min-height: 100%;
|
||||
//min-width: 100%;
|
||||
|
||||
.noselect
|
||||
-webkit-touch-callout: none; /* iOS Safari */
|
||||
-webkit-user-select: none; /* Chrome/Safari/Opera */
|
||||
-khtml-user-select: none; /* Konqueror */
|
||||
-moz-user-select: none; /* Firefox */
|
||||
-ms-user-select: none; /* Internet Explorer/Edge */
|
||||
user-select: none; /* Non-prefixed version, currently not supported by any browser */
|
||||
.clickable
|
||||
cursor: pointer
|
||||
.nonclickable
|
||||
cursor: default
|
||||
.left
|
||||
text-align: left
|
||||
.center
|
||||
text-align: center
|
||||
|
||||
|
||||
//@import "../imports/util/selectize/selectize.default.import.styl"
|
||||
//@import "../imports/util/selectize/selectize.import.styl"
|
||||
@import "../imports/util/de.combo.import.styl"
|
||||
|
||||
@import "../imports/ui/layouts/Body.import.styl"
|
||||
@import "../imports/ui/layouts/Full.import.styl"
|
||||
|
||||
@import "../imports/ui/UserManagement.import.styl"
|
||||
@import "../imports/ui/Menu.import.styl"
|
||||
@import "../imports/ui/Intro.import.styl"
|
||||
@import "../imports/ui/Measures.import.styl"
|
||||
@import "../imports/ui/Products.import.styl"
|
||||
@import "../imports/ui/ProductTags.import.styl"
|
||||
@import "../imports/ui/Sales.import.styl"
|
||||
@import "../imports/ui/Pricing.import.styl"
|
||||
@import "../imports/ui/Production.import.styl"
|
||||
Reference in New Issue
Block a user