mirror of
https://github.com/Chalarangelo/mini.css.git
synced 2025-02-25 09:23:04 +01:00
40 lines
2.3 KiB
SCSS
40 lines
2.3 KiB
SCSS
@import 'mini/variables';
|
|
@import 'mini/base';
|
|
@import 'mini/button';
|
|
// Use button mixins to create buttons with default specs.
|
|
@include make-btn(btn, 0, 4px, 2px 0, 6px 12px, $btn-default-color, $btn-default-bg-color, lighten, 7.5%, pointer, not-allowed, .65);
|
|
@include make-btn-style(btn, 'blue', $btn-alt-color, $btn-b-bg-color);
|
|
@include make-btn-style(btn, 'green', $btn-alt-color, $btn-g-bg-color);
|
|
@include make-btn-style(btn, 'red', $btn-alt-color, $btn-r-bg-color);
|
|
@include make-btn-size(btn, lg, 9px 15px, 135%);
|
|
@include make-btn-size(btn, sm, 4px 8px, 80%);
|
|
@import 'mini/grid';
|
|
// Use grid mixin to create grid with default specs.
|
|
@include make-grid(grid-container, 0, row, col, 12, 12px, xs, sm, md, lg, no, 768px, 1024px, 1280px);
|
|
@import 'mini/form';
|
|
// Use form mixin to create form with default specs.
|
|
@include make-frm(frm, 1px solid #ccc, 4px, 0.2em, 0.3em, #2678b3, #e9322d, not-allowed, .65, darken($body-bg-color,10%), darken($body-bg-color,25%), 1.9em, 0.5em 0 0 0.2em, ctrl-group, 0 0 0.3em 0, inline, aligned,15em);
|
|
@import 'mini/table';
|
|
// Use table mixin to create table with default specs.
|
|
@include make-tbl(tbl, 1px solid #bdbdbd, 0, 0.5em, #d9d9d9, #111, #f5f5f5, #ececec, #111, hor, bor);
|
|
@import 'mini/utility';
|
|
// Use utility mixins to create utility classes with default specs.
|
|
@include make-thumb(thumb, 0.25em, 1px solid #ccc, 4px);
|
|
@include make-border-generic(bordered);
|
|
@include make-border-radial-style(rounded, 4px);
|
|
@include make-border-radial-style(circle, 50%);
|
|
@include make-colored-text(txt-blue, $btn-b-bg-color);
|
|
@include make-colored-text(txt-green, $btn-g-bg-color);
|
|
@include make-colored-text(txt-red, $btn-r-bg-color);
|
|
@include make-colored-bg-text(bg-blue, $btn-b-bg-color);
|
|
@include make-colored-bg-text(bg-green, $btn-g-bg-color);
|
|
@include make-colored-bg-text(bg-red, $btn-r-bg-color);
|
|
@include make-caret-down(caret, 0.35em, #222);
|
|
@include make-close(close, #aaa, pointer, 1.3em, 700, #777);
|
|
@include make-drags(drg-left, drg-right);
|
|
@include make-center-block(ct-block);
|
|
@include make-clearfix(cf);
|
|
@include make-hidden(hidden);
|
|
@import 'mini/nav';
|
|
// Use nav mixin to create nav with default specs.
|
|
@include make-nav(nav, vertical, fixed, logo, 135%, link, 8px, #272727, #ddd, darken, 7.5%, not-allowed, .65, left, 12, 2, 768px, top-right, 10px, 1.75em); |