|
|
@@ -1,484 +0,0 @@
|
|
|
-//
|
|
|
-// Mixins
|
|
|
-// --------------------------------------------------
|
|
|
-
|
|
|
-
|
|
|
-// UTILITY MIXINS
|
|
|
-// --------------------------------------------------
|
|
|
-
|
|
|
-// Clearfix
|
|
|
-// --------
|
|
|
-// For clearing floats like a boss h5bp.com/q
|
|
|
-.clearfix {
|
|
|
- *zoom: 1;
|
|
|
- &:before,
|
|
|
- &:after {
|
|
|
- display: table;
|
|
|
- content: "";
|
|
|
- // Fixes Opera/contenteditable bug:
|
|
|
- // http://nicolasgallagher.com/micro-clearfix-hack/#comment-36952
|
|
|
- line-height: 0;
|
|
|
- }
|
|
|
- &:after {
|
|
|
- clear: both;
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-.tab-focus() {
|
|
|
-}
|
|
|
-
|
|
|
-// Center-align a block level element
|
|
|
-// ----------------------------------
|
|
|
-.center-block() {
|
|
|
- display: block;
|
|
|
- margin-left: auto;
|
|
|
- margin-right: auto;
|
|
|
-}
|
|
|
-
|
|
|
-// Sizing shortcuts
|
|
|
-// -------------------------
|
|
|
-.size(@height, @width) {
|
|
|
- width: @width;
|
|
|
- height: @height;
|
|
|
-}
|
|
|
-
|
|
|
-.square(@size) {
|
|
|
- .size(@size, @size);
|
|
|
-}
|
|
|
-
|
|
|
-// Placeholder text
|
|
|
-// -------------------------
|
|
|
-.placeholder(@color: @placeholderText) {
|
|
|
- &:-moz-placeholder {
|
|
|
- color: @color;
|
|
|
- }
|
|
|
- &:-ms-input-placeholder {
|
|
|
- color: @color;
|
|
|
- }
|
|
|
- &::-webkit-input-placeholder {
|
|
|
- color: @color;
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-// Text overflow
|
|
|
-// -------------------------
|
|
|
-// Requires inline-block or block for proper styling
|
|
|
-.text-overflow() {
|
|
|
- overflow: hidden;
|
|
|
- text-overflow: ellipsis;
|
|
|
- white-space: nowrap;
|
|
|
-}
|
|
|
-
|
|
|
-// CSS image replacement
|
|
|
-// -------------------------
|
|
|
-// Source: https://github.com/h5bp/html5-boilerplate/commit/aa0396eae757
|
|
|
-.hide-text {
|
|
|
- font: 0/0 a;
|
|
|
- color: transparent;
|
|
|
- text-shadow: none;
|
|
|
- background-color: transparent;
|
|
|
- border: 0;
|
|
|
-}
|
|
|
-
|
|
|
-
|
|
|
-// FONTS
|
|
|
-// --------------------------------------------------
|
|
|
-
|
|
|
-.font-family-serif() {
|
|
|
- font-family: @serifFontFamily;
|
|
|
-}
|
|
|
-.font-family-sans-serif() {
|
|
|
- font-family: @sansFontFamily;
|
|
|
-}
|
|
|
-.font-family-monospace() {
|
|
|
- font-family: @monoFontFamily;
|
|
|
-}
|
|
|
-.font-shorthand(@size: @baseFontSize, @weight: normal, @lineHeight: @baseLineHeight) {
|
|
|
- font-size: @size;
|
|
|
- font-weight: @weight;
|
|
|
- line-height: @lineHeight;
|
|
|
-}
|
|
|
-.font-serif(@size: @baseFontSize, @weight: normal, @lineHeight: @baseLineHeight) {
|
|
|
- .font-family-serif();
|
|
|
- .font-shorthand(@size, @weight, @lineHeight);
|
|
|
-}
|
|
|
-.font-sans-serif(@size: @baseFontSize, @weight: normal, @lineHeight: @baseLineHeight) {
|
|
|
- .font-family-sans-serif();
|
|
|
- .font-shorthand(@size, @weight, @lineHeight);
|
|
|
-}
|
|
|
-.monospace(@size: @baseFontSize, @weight: normal, @lineHeight: @baseLineHeight) {
|
|
|
- .font-family-monospace;
|
|
|
- .font-shorthand(@size, @weight, @lineHeight);
|
|
|
-}
|
|
|
-
|
|
|
-
|
|
|
-// FORMS
|
|
|
-// --------------------------------------------------
|
|
|
-
|
|
|
-// Block level inputs
|
|
|
-.input-block-level {
|
|
|
- display: block;
|
|
|
- width: 100%;
|
|
|
- min-height: @inputHeight; // Make inputs at least the height of their button counterpart (base line-height + padding + border)
|
|
|
- .box-sizing(border-box); // Makes inputs behave like true block-level elements
|
|
|
-}
|
|
|
-
|
|
|
-
|
|
|
-// CSS3 PROPERTIES
|
|
|
-// --------------------------------------------------
|
|
|
-
|
|
|
-// Border Radius
|
|
|
-.border-radius(@radius) {
|
|
|
- -webkit-border-radius: @radius;
|
|
|
- -moz-border-radius: @radius;
|
|
|
- border-radius: @radius;
|
|
|
-}
|
|
|
-
|
|
|
-// Single Corner Border Radius
|
|
|
-.border-top-left-radius(@radius) {
|
|
|
- -webkit-border-top-left-radius: @radius;
|
|
|
- -moz-border-radius-topleft: @radius;
|
|
|
- border-top-left-radius: @radius;
|
|
|
-}
|
|
|
-.border-top-right-radius(@radius) {
|
|
|
- -webkit-border-top-right-radius: @radius;
|
|
|
- -moz-border-radius-topright: @radius;
|
|
|
- border-top-right-radius: @radius;
|
|
|
-}
|
|
|
-.border-bottom-right-radius(@radius) {
|
|
|
- -webkit-border-bottom-right-radius: @radius;
|
|
|
- -moz-border-radius-bottomright: @radius;
|
|
|
- border-bottom-right-radius: @radius;
|
|
|
-}
|
|
|
-.border-bottom-left-radius(@radius) {
|
|
|
- -webkit-border-bottom-left-radius: @radius;
|
|
|
- -moz-border-radius-bottomleft: @radius;
|
|
|
- border-bottom-left-radius: @radius;
|
|
|
-}
|
|
|
-
|
|
|
-// Single Side Border Radius
|
|
|
-.border-top-radius(@radius) {
|
|
|
- .border-top-right-radius(@radius);
|
|
|
- .border-top-left-radius(@radius);
|
|
|
-}
|
|
|
-.border-right-radius(@radius) {
|
|
|
- .border-top-right-radius(@radius);
|
|
|
- .border-bottom-right-radius(@radius);
|
|
|
-}
|
|
|
-.border-bottom-radius(@radius) {
|
|
|
- .border-bottom-right-radius(@radius);
|
|
|
- .border-bottom-left-radius(@radius);
|
|
|
-}
|
|
|
-.border-left-radius(@radius) {
|
|
|
- .border-top-left-radius(@radius);
|
|
|
- .border-bottom-left-radius(@radius);
|
|
|
-}
|
|
|
-
|
|
|
-// Drop shadows
|
|
|
-.box-shadow(@shadow) {
|
|
|
- box-shadow: @shadow;
|
|
|
-}
|
|
|
-
|
|
|
-// Transitions
|
|
|
-.transition(@transition) {
|
|
|
- transition: @transition;
|
|
|
-}
|
|
|
-
|
|
|
-.transition-delay(@transition-delay) {
|
|
|
- transition-delay: @transition-delay;
|
|
|
-}
|
|
|
-
|
|
|
-.transition-duration(@transition-duration) {
|
|
|
- transition-duration: @transition-duration;
|
|
|
-}
|
|
|
-
|
|
|
-// Transformations
|
|
|
-.rotate(@degrees) {
|
|
|
- transform: rotate(@degrees);
|
|
|
-}
|
|
|
-
|
|
|
-.scale(@ratio) {
|
|
|
- transform: scale(@ratio);
|
|
|
-}
|
|
|
-
|
|
|
-.translate(@x, @y) {
|
|
|
- transform: translate(@x, @y);
|
|
|
-}
|
|
|
-
|
|
|
-.skew(@x, @y) {
|
|
|
- transform: skew(@x, @y);
|
|
|
- -webkit-backface-visibility: hidden; // See https://github.com/twbs/bootstrap/issues/5319
|
|
|
-}
|
|
|
-
|
|
|
-.translate3d(@x, @y, @z) {
|
|
|
- transform: translate3d(@x, @y, @z);
|
|
|
-}
|
|
|
-
|
|
|
-.backface-visibility(@visibility){
|
|
|
- backface-visibility: @visibility;
|
|
|
-}
|
|
|
-// Heads up: FF 3.6 and under need "padding" instead of "padding-box"
|
|
|
-.background-clip(@clip) {
|
|
|
- background-clip: @clip;
|
|
|
-}
|
|
|
-
|
|
|
-// Background sizing
|
|
|
-.background-size(@size) {
|
|
|
- background-size: @size;
|
|
|
-}
|
|
|
-
|
|
|
-// Box sizing
|
|
|
-.box-sizing(@boxmodel) {
|
|
|
- box-sizing: @boxmodel;
|
|
|
-}
|
|
|
-
|
|
|
-// User select
|
|
|
-// For selecting text on the page
|
|
|
-.user-select(@select) {
|
|
|
- user-select: @select;
|
|
|
-}
|
|
|
-
|
|
|
-// Resize anything
|
|
|
-.resizable(@direction) {
|
|
|
- resize: @direction; // Options: horizontal, vertical, both
|
|
|
- overflow: auto; // Safari fix
|
|
|
-}
|
|
|
-
|
|
|
-// CSS3 Content Columns
|
|
|
-.content-columns(@columnCount, @columnGap: @gridGutterWidth) {
|
|
|
- -webkit-column-count: @columnCount;
|
|
|
- -moz-column-count: @columnCount;
|
|
|
- column-count: @columnCount;
|
|
|
- -webkit-column-gap: @columnGap;
|
|
|
- -moz-column-gap: @columnGap;
|
|
|
- column-gap: @columnGap;
|
|
|
-}
|
|
|
-
|
|
|
-// Optional hyphenation
|
|
|
-.hyphens(@mode: auto) {
|
|
|
- word-wrap: break-word;
|
|
|
- -webkit-hyphens: @mode;
|
|
|
- -moz-hyphens: @mode;
|
|
|
- -ms-hyphens: @mode;
|
|
|
- -o-hyphens: @mode;
|
|
|
- hyphens: @mode;
|
|
|
-}
|
|
|
-
|
|
|
-// Opacity
|
|
|
-.opacity(@opacity) {
|
|
|
- opacity: @opacity / 100;
|
|
|
-}
|
|
|
-
|
|
|
-// BACKGROUNDS
|
|
|
-// --------------------------------------------------
|
|
|
-
|
|
|
-// Add an alphatransparency value to any background or border color (via Elyse Holladay)
|
|
|
-#translucent {
|
|
|
- .background(@color: @white, @alpha: 1) {
|
|
|
- background-color: hsla(hue(@color), saturation(@color), lightness(@color), @alpha);
|
|
|
- }
|
|
|
- .border(@color: @white, @alpha: 1) {
|
|
|
- border-color: hsla(hue(@color), saturation(@color), lightness(@color), @alpha);
|
|
|
- .background-clip(padding-box);
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-// Gradient Bar Colors for buttons and alerts
|
|
|
-.gradientBar(@primaryColor, @secondaryColor, @textColor: #fff, @textShadow: 0 -1px 0 rgba(0,0,0,.25)) {
|
|
|
- color: @textColor;
|
|
|
- text-shadow: @textShadow;
|
|
|
- #gradient > .vertical(@primaryColor, @secondaryColor);
|
|
|
- border-color: @secondaryColor @secondaryColor darken(@secondaryColor, 15%);
|
|
|
- border-color: rgba(0,0,0,.1) rgba(0,0,0,.1) fadein(rgba(0,0,0,.1), 15%);
|
|
|
-}
|
|
|
-
|
|
|
-// Gradients
|
|
|
-#gradient {
|
|
|
- .horizontal(@startColor: #555, @endColor: #333) {
|
|
|
- background-color: @endColor;
|
|
|
- background-image: linear-gradient(to right, @startColor, @endColor); // Standard, IE10
|
|
|
- background-repeat: repeat-x;
|
|
|
- }
|
|
|
- .vertical(@startColor: #555, @endColor: #333) {
|
|
|
- background-color: mix(@startColor, @endColor, 60%);
|
|
|
- background-image: linear-gradient(to bottom, @startColor, @endColor); // Standard, IE10
|
|
|
- background-repeat: repeat-x;
|
|
|
- }
|
|
|
- .directional(@startColor: #555, @endColor: #333, @deg: 45deg) {
|
|
|
- background-color: @endColor;
|
|
|
- background-repeat: repeat-x;
|
|
|
- background-image: linear-gradient(@deg, @startColor, @endColor); // Standard, IE10
|
|
|
- }
|
|
|
- .horizontal-three-colors(@startColor: #00b3ee, @midColor: #7a43b6, @colorStop: 50%, @endColor: #c3325f) {
|
|
|
- background-color: mix(@midColor, @endColor, 80%);
|
|
|
- background-image: linear-gradient(to right, @startColor, @midColor @colorStop, @endColor);
|
|
|
- background-repeat: no-repeat;
|
|
|
- }
|
|
|
- .vertical-three-colors(@startColor: #00b3ee, @midColor: #7a43b6, @colorStop: 50%, @endColor: #c3325f) {
|
|
|
- background-color: mix(@midColor, @endColor, 80%);
|
|
|
- background-image: linear-gradient(@startColor, @midColor @colorStop, @endColor);
|
|
|
- background-repeat: no-repeat;
|
|
|
- }
|
|
|
-
|
|
|
- .radial(@innerColor: #555, @outerColor: #333) {
|
|
|
- background-color: @outerColor;
|
|
|
- background-image: -webkit-gradient(radial, center center, 0, center center, 460, from(@innerColor), to(@outerColor));
|
|
|
- background-image: -webkit-radial-gradient(circle, @innerColor, @outerColor);
|
|
|
- background-image: -moz-radial-gradient(circle, @innerColor, @outerColor);
|
|
|
- background-image: -o-radial-gradient(circle, @innerColor, @outerColor);
|
|
|
- background-repeat: no-repeat;
|
|
|
- }
|
|
|
-
|
|
|
- .striped(@color: #555, @angle: 45deg) {
|
|
|
- background-color: @color;
|
|
|
- background-image: linear-gradient(@angle, rgba(255,255,255,.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,.15) 50%, rgba(255,255,255,.15) 75%, transparent 75%, transparent);
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-// Grid System
|
|
|
-// -----------
|
|
|
-
|
|
|
-// Centered container element
|
|
|
-.container-fixed() {
|
|
|
- margin-right: auto;
|
|
|
- margin-left: auto;
|
|
|
- .clearfix();
|
|
|
-}
|
|
|
-
|
|
|
-.makeColumn(@columns: 1, @offset: 0) {
|
|
|
- float: left;
|
|
|
- margin-left: (@gridColumnWidth * @offset) + (@gridGutterWidth * (@offset - 1)) + (@gridGutterWidth * 2);
|
|
|
- width: (@gridColumnWidth * @columns) + (@gridGutterWidth * (@columns - 1));
|
|
|
-}
|
|
|
-
|
|
|
-// The Grid
|
|
|
-#grid {
|
|
|
-
|
|
|
- .core (@gridColumnWidth, @gridGutterWidth) {
|
|
|
-
|
|
|
- .spanX (@index) when (@index > 0) {
|
|
|
- .span@{index} { .span(@index); }
|
|
|
- .spanX(@index - 1);
|
|
|
- }
|
|
|
- .spanX (0) {}
|
|
|
-
|
|
|
- .offsetX (@index) when (@index > 0) {
|
|
|
- .offset@{index} { .offset(@index); }
|
|
|
- .offsetX(@index - 1);
|
|
|
- }
|
|
|
- .offsetX (0) {}
|
|
|
-
|
|
|
- .offset (@columns) {
|
|
|
- margin-left: (@gridColumnWidth * @columns) + (@gridGutterWidth * (@columns + 1));
|
|
|
- }
|
|
|
-
|
|
|
- .span (@columns) {
|
|
|
- width: (@gridColumnWidth * @columns) + (@gridGutterWidth * (@columns - 1));
|
|
|
- }
|
|
|
-
|
|
|
- .row {
|
|
|
- margin-left: @gridGutterWidth * -1;
|
|
|
- .clearfix();
|
|
|
- }
|
|
|
-
|
|
|
- [class*="span"] {
|
|
|
- float: left;
|
|
|
- min-height: 1px; // prevent collapsing columns
|
|
|
- margin-left: @gridGutterWidth;
|
|
|
- }
|
|
|
-
|
|
|
- // Set the container width, and override it for fixed navbars in media queries
|
|
|
- .container,
|
|
|
- .navbar-static-top .container,
|
|
|
- .navbar-fixed-top .container,
|
|
|
- .navbar-fixed-bottom .container { .span(@gridColumns); }
|
|
|
-
|
|
|
- // generate .spanX and .offsetX
|
|
|
- .spanX (@gridColumns);
|
|
|
- .offsetX (@gridColumns);
|
|
|
-
|
|
|
- }
|
|
|
-
|
|
|
- .fluid (@fluidGridColumnWidth, @fluidGridGutterWidth) {
|
|
|
-
|
|
|
- .spanX (@index) when (@index > 0) {
|
|
|
- .span@{index} { .span(@index); }
|
|
|
- .spanX(@index - 1);
|
|
|
- }
|
|
|
- .spanX (0) {}
|
|
|
-
|
|
|
- .offsetX (@index) when (@index > 0) {
|
|
|
- .offset@{index} { .offset(@index); }
|
|
|
- .offset@{index}:first-child { .offsetFirstChild(@index); }
|
|
|
- .offsetX(@index - 1);
|
|
|
- }
|
|
|
- .offsetX (0) {}
|
|
|
-
|
|
|
- .offset (@columns) {
|
|
|
- margin-left: (@fluidGridColumnWidth * @columns) + (@fluidGridGutterWidth * (@columns - 1)) + (@fluidGridGutterWidth*2);
|
|
|
- *margin-left: (@fluidGridColumnWidth * @columns) + (@fluidGridGutterWidth * (@columns - 1)) - (.5 / @gridRowWidth * 100 * 1%) + (@fluidGridGutterWidth*2) - (.5 / @gridRowWidth * 100 * 1%);
|
|
|
- }
|
|
|
-
|
|
|
- .offsetFirstChild (@columns) {
|
|
|
- margin-left: (@fluidGridColumnWidth * @columns) + (@fluidGridGutterWidth * (@columns - 1)) + (@fluidGridGutterWidth);
|
|
|
- *margin-left: (@fluidGridColumnWidth * @columns) + (@fluidGridGutterWidth * (@columns - 1)) - (.5 / @gridRowWidth * 100 * 1%) + @fluidGridGutterWidth - (.5 / @gridRowWidth * 100 * 1%);
|
|
|
- }
|
|
|
-
|
|
|
- .span (@columns) {
|
|
|
- width: (@fluidGridColumnWidth * @columns) + (@fluidGridGutterWidth * (@columns - 1));
|
|
|
- *width: (@fluidGridColumnWidth * @columns) + (@fluidGridGutterWidth * (@columns - 1)) - (.5 / @gridRowWidth * 100 * 1%);
|
|
|
- }
|
|
|
-
|
|
|
- .row-fluid {
|
|
|
- width: 100%;
|
|
|
- .clearfix();
|
|
|
- [class*="span"] {
|
|
|
- .input-block-level();
|
|
|
- float: left;
|
|
|
- margin-left: @fluidGridGutterWidth;
|
|
|
- *margin-left: @fluidGridGutterWidth - (.5 / @gridRowWidth * 100 * 1%);
|
|
|
- }
|
|
|
- [class*="span"]:first-child {
|
|
|
- margin-left: 0;
|
|
|
- }
|
|
|
-
|
|
|
- // Space grid-sized controls properly if multiple per line
|
|
|
- .controls-row [class*="span"] + [class*="span"] {
|
|
|
- margin-left: @fluidGridGutterWidth;
|
|
|
- }
|
|
|
-
|
|
|
- // generate .spanX and .offsetX
|
|
|
- .spanX (@gridColumns);
|
|
|
- .offsetX (@gridColumns);
|
|
|
- }
|
|
|
-
|
|
|
- }
|
|
|
-
|
|
|
- .input(@gridColumnWidth, @gridGutterWidth) {
|
|
|
-
|
|
|
- .spanX (@index) when (@index > 0) {
|
|
|
- input.span@{index}, textarea.span@{index}, .uneditable-input.span@{index} { .span(@index); }
|
|
|
- .spanX(@index - 1);
|
|
|
- }
|
|
|
- .spanX (0) {}
|
|
|
-
|
|
|
- .span(@columns) {
|
|
|
- width: ((@gridColumnWidth) * @columns) + (@gridGutterWidth * (@columns - 1)) - 14;
|
|
|
- }
|
|
|
-
|
|
|
- input,
|
|
|
- textarea,
|
|
|
- .uneditable-input {
|
|
|
- margin-left: 0; // override margin-left from core grid system
|
|
|
- }
|
|
|
-
|
|
|
- // Space grid-sized controls properly if multiple per line
|
|
|
- .controls-row [class*="span"] + [class*="span"] {
|
|
|
- margin-left: @gridGutterWidth;
|
|
|
- }
|
|
|
-
|
|
|
- // generate .spanX
|
|
|
- .spanX (@gridColumns);
|
|
|
-
|
|
|
- }
|
|
|
-}
|