summaryrefslogtreecommitdiff
path: root/app/assets/stylesheets/vendor/survival-kit/_lists.scss
diff options
context:
space:
mode:
authorStefan Wintermeyer <stefan.wintermeyer@amooma.de>2013-01-22 00:04:03 +0100
committerStefan Wintermeyer <stefan.wintermeyer@amooma.de>2013-01-22 00:04:03 +0100
commitab63774d954fe1f967a97ffe5a0a66016eca2257 (patch)
treeb3974a58deabe6a989ad7352f10e75d7495cb0c5 /app/assets/stylesheets/vendor/survival-kit/_lists.scss
parent495bbfdf78206c8adaec057e83900dda6754092c (diff)
parentf8bc860750f06ab95f9ced8e919e846d3e589819 (diff)
Merge branch 'tb-css' into develop
Diffstat (limited to 'app/assets/stylesheets/vendor/survival-kit/_lists.scss')
-rw-r--r--app/assets/stylesheets/vendor/survival-kit/_lists.scss37
1 files changed, 0 insertions, 37 deletions
diff --git a/app/assets/stylesheets/vendor/survival-kit/_lists.scss b/app/assets/stylesheets/vendor/survival-kit/_lists.scss
deleted file mode 100644
index ea9670e..0000000
--- a/app/assets/stylesheets/vendor/survival-kit/_lists.scss
+++ /dev/null
@@ -1,37 +0,0 @@
-// Survival ✚ Kit
-
-// Add docs to float-list!
-@mixin float-list($side:left) {
- @include no-mp;
- list-style-type: none;
- li { float:$side; }
-}
-
-$tc-begin-color : #000 !default;
-$tc-end-color : lighten(#646464, 30) !default;
-$tc-base-font-size : 11px !default;
-$tc-max-font-size : 20px !default;
-$tc-how-many : 10 !default;
-@mixin tag-cloud($tc-begin-color, $tc-end-color, $tc-base-font-size, $tc-max-font-size, $tc-how-many) {
- $font-calculations : $tc-base-font-size;
-
- li {
- display:inline;
- background:none;
- padding:0 2px;
- }
-
- a {
- // Stops words from breaking.
- display:inline-block;
- }
-
- @for $i from 1 through $tc-how-many {
- // The last item gets the max-font size.
- $font-calculations: round($font-calculations + (($tc-max-font-size - $tc-base-font-size) / $tc-how-many));
- a.tag-#{$i} {
- font-size:$font-calculations;
- color: mix($tc-end-color, $tc-begin-color, ( $i * (100 / $tc-how-many) ));
- }
- }
-}