wip Pup 1.0.0
This commit is contained in:
commit
cdc15f019d
48 changed files with 1100 additions and 0 deletions
15
imports/ui/stylesheets/_colors.scss
Normal file
15
imports/ui/stylesheets/_colors.scss
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
$primary: #337ab7;
|
||||
$success: #5cb85c;
|
||||
$info: #5bc0de;
|
||||
$warning: #f0ad4e;
|
||||
$danger: #d9534f;
|
||||
|
||||
$gray-darker: #222;
|
||||
$gray-dark: #333;
|
||||
$gray: #555;
|
||||
$gray-light: #777;
|
||||
$gray-lighter: #eee;
|
||||
|
||||
$facebook: #3b5998;
|
||||
$google: #ea4335;
|
||||
$github: $gray-dark;
|
||||
12
imports/ui/stylesheets/_forms.scss
Normal file
12
imports/ui/stylesheets/_forms.scss
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
@import './mixins';
|
||||
@import './colors';
|
||||
|
||||
form {
|
||||
label.error {
|
||||
display: block;
|
||||
margin-top: 8px;
|
||||
font-size: 13px;
|
||||
font-weight: normal;
|
||||
color: $danger;
|
||||
}
|
||||
}
|
||||
23
imports/ui/stylesheets/_mixins.scss
Normal file
23
imports/ui/stylesheets/_mixins.scss
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
@mixin breakpoint($point) {
|
||||
@if $point == desktop-large {
|
||||
@media (min-width: 1200px) { @content; }
|
||||
} @else if $point == desktop {
|
||||
@media (min-width: 1024px) { @content; }
|
||||
} @else if $point == tablet {
|
||||
@media (min-width: 768px) { @content; }
|
||||
} @else if $point == handheld-large {
|
||||
@media (min-width: 480px) { @content; }
|
||||
} @else {
|
||||
@media (min-width: $point) { @content; }
|
||||
}
|
||||
}
|
||||
|
||||
@mixin ie {
|
||||
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
|
||||
@content;
|
||||
}
|
||||
|
||||
@supports (-ms-accelerator:true) {
|
||||
@content;
|
||||
}
|
||||
}
|
||||
2
imports/ui/stylesheets/app.scss
Normal file
2
imports/ui/stylesheets/app.scss
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
@import './colors';
|
||||
@import './forms';
|
||||
Loading…
Add table
Add a link
Reference in a new issue