http://git-wip-us.apache.org/repos/asf/incubator-ariatosca-website/blob/77b31961/_sass/_menu-navicons.scss ---------------------------------------------------------------------- diff --git a/_sass/_menu-navicons.scss b/_sass/_menu-navicons.scss deleted file mode 100644 index 99f551a..0000000 --- a/_sass/_menu-navicons.scss +++ /dev/null @@ -1,130 +0,0 @@ -/* ========================================================================== - ANIMATED 3 LINE NAVICONS - https://github.com/SaraSoueidan/navicon-transformicons - ========================================================================== */ - -/* Common to all three-liners */ - -@mixin line { - display: inline-block; - width: $button-size; - height: $button-size/7; - background: $white; - transition: $transition; -} - -.nav-lines { - @include line; - position: relative; - &:before, &:after { - @include line; - position: absolute; - left:0; - content: ''; - transform-origin: $button-size/14 center; - } - &:before { - top: $button-size/4; - } - &:after { - top: -$button-size/4; - } -} - -.lines-button:hover { - .nav-lines { - &:before { - top: $button-size/3.5; - } - &:after { - top: -$button-size/3.5; - } - } -} - -/* For both the arrow up and left icons */ - -.lines-button.arrow.close { - .nav-lines { - &:before, - &:after { - top: 0; - width: $button-size/1.8; - } - &:before { - transform: rotate3d(0,0,1,40deg); - } - &:after { - transform: rotate3d(0,0,1,-40deg); - } - } -} - -/* Arrow up only: just rotate by 90degrees */ - -.lines-button.arrow-up.close { - transform: scale3d(.8,.8,.8) rotate3d(0, 0, 1,90deg); -} - -/* Three-lines to minus only */ - -.lines-button.minus.close { - .nav-lines { - &:before, &:after { - transform: none; - top: 0; - width: $button-size; - } - } -} - -/* Three-lines to x */ - -.lines-button.x.close{ - .nav-lines { - background: transparent; - &:before, &:after{ - transform-origin: 50% 50%; - top: 0; - width: $button-size; - } - &:before{ - transform: rotate3d(0,0,1,45deg); - } - &:after{ - transform: rotate3d(0,0,1,-45deg); - } - } -} - -/* Three-lines to x method 2 */ - -.lines-button.x2 { - .nav-lines { - transition: background .3s .5s ease; - &:before, &:after { - /* set transform origin */ - transform-origin: 50% 50%; - transition: top .3s .6s ease, -webkit-transform .3s ease; - transition: top .3s .6s ease, transform .3s ease; - } - } -} -.lines-button.x2.close { - .nav-lines { - transition: background .3s 0s ease; - background: transparent; - &:before, &:after { - transition: top .3s ease, -webkit-transform .3s .5s ease; /* delay the formation of the x till the minus is formed */ - transition: top .3s ease, transform .3s .5s ease; /* delay the formation of the x till the minus is formed */ - top: 0; - width: $button-size; - } - &:before { - transform: rotate3d(0,0,1,45deg); - } - &:after { - transform: rotate3d(0,0,1,-45deg); - } - } -}
http://git-wip-us.apache.org/repos/asf/incubator-ariatosca-website/blob/77b31961/_sass/_mixins.scss ---------------------------------------------------------------------- diff --git a/_sass/_mixins.scss b/_sass/_mixins.scss deleted file mode 100644 index 5c7f395..0000000 --- a/_sass/_mixins.scss +++ /dev/null @@ -1,94 +0,0 @@ -// MIXINS -// -------------------------------------------------- - -%tab-focus { - // Default - outline: thin dotted #333; - // Webkit - outline: 5px auto -webkit-focus-ring-color; - outline-offset: -2px; -} - - -// Typography -// -------------------------------------------------- - -/* Vertical Rhythm - https://github.com/sturobson/Sassifaction - - In this mixin you can specify the font size in PX and - it will calculate the REM based on your $doc-font-size - & $doc-line-height variables. - - @include font-size(24); - - It will also create a bottom margin based on the - $doc-font-size & $doc-line-height variables unless you - specify that it shouldn't have one. - - @include font-size(24, no); - - Or if you want to specify a different bottom margin to - be generated. - - @include font-size(24,32); - - This mixin also generates a pixel-less line height by - default unless you specify that you either don't want - one where I'd suggest declaring 1 within the mixin. - - @include font-size(24, yes, 1); - - There's also the option to specify a different line-height - for it to generate to, where you would specify the - line-height in (effectively) it's pixel value. - - @include font-size(24, yes, 40); -*/ - -@mixin font-size($size, $margin: yes, $line-height: $doc-line-height) { - - // generates the font-size in REMs with a PX fallback - font-size: 0px + $size; - font-size: 0rem + $size / $doc-font-size; - - // line-height functions - //////////////////////// - - // if you a line-height is specified in the mixin - @if $line-height != $doc-line-height and $line-height != 1 { - line-height: ceil($size / $line-height) * ($line-height / $size); - } - - // if $line-height == 1 - // because, typing 1 is quicker than 16 - @else if $line-height == 1 { - line-height: 1; - } - - // normal $line-height - // if the line-height is left. - @else { - line-height: ceil($size / $doc-line-height) * ($doc-line-height / $size); - } - - // margin-bottom functions - ////////////////////////// - - // if no is bottom margin is required - @if $margin == no { - margin-bottom: 0; - } - - // if a specific bottom margin is required - @else if $margin != yes and $margin != no { - margin-bottom: 0px + $margin; - margin-bottom: 0rem + ($margin / $doc-font-size); - } - - // if you're keeping the vertical rhythm with the margin - @else { - margin-bottom: 0px + $doc-line-height; - margin-bottom: 0rem + ($doc-line-height / $doc-font-size); - } -} \ No newline at end of file http://git-wip-us.apache.org/repos/asf/incubator-ariatosca-website/blob/77b31961/_sass/_notices.scss ---------------------------------------------------------------------- diff --git a/_sass/_notices.scss b/_sass/_notices.scss deleted file mode 100644 index e65c773..0000000 --- a/_sass/_notices.scss +++ /dev/null @@ -1,79 +0,0 @@ -/* ========================================================================== - Notices - ========================================================================== */ - -/* - Default notice .notice - ========================================================================== */ - -@mixin notice($notice-color) { - position: relative; - padding: 1.5em; - font-family: $alt-font; - @include font-size(14,39); - color: $white; - background-color: $notice-color; - border-radius: $border-radius; - a { - color: $white; - border-bottom: 1px dotted $white; - } -} -.notice { - @include notice($primary-color); -} - -/* - Inverse notice .notice-inverse - ========================================================================== */ - -.notice-inverse { - @include notice($white); - color: $text-color; - a { - color: $text-color; - } -} - -/* - Info notice .notice-info - ========================================================================== */ - -.notice-info { - @include notice($info-color); -} - -/* - Warning notice .notice-warning - ========================================================================== */ - -.notice-warning { - @include notice($warning-color); -} - -/* - Success notice .notice-success - ========================================================================== */ - -.notice-success { - @include notice($success-color); -} - -/* - Danger notice .notice-danger - ========================================================================== */ - -.notice-danger { - @include notice($danger-color); -} - -/* - Browser upgrade notice - ========================================================================== */ - -.upgrade { - text-align: center; - a { - text-decoration: none; - } -} http://git-wip-us.apache.org/repos/asf/incubator-ariatosca-website/blob/77b31961/_sass/_reset.scss ---------------------------------------------------------------------- diff --git a/_sass/_reset.scss b/_sass/_reset.scss deleted file mode 100644 index 16de7d5..0000000 --- a/_sass/_reset.scss +++ /dev/null @@ -1,144 +0,0 @@ -/* ========================================================================== - Style resets - Adapted from http://github.com/necolas/normalize.css - ========================================================================== */ - -// Apply a natural box layout model to all elements -*, *:before, *:after { - -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; - } - -// Remove margin -body { margin: 0; } - -// Display HTML5 elements in IE6-9 and FF3 -article, -aside, -details, -figcaption, -figure, -footer, -header, -hgroup, -nav, -section { - display: block; -} - -// Display block in IE6-9 and FF3 -audio, -canvas, -video { - display: inline-block; - *display: inline; - *zoom: 1; -} - -// Prevents modern browsers from displaying 'audio' without controls -audio:not([controls]) { - display: none; -} - -// Base font settings -html { - font-size: 100%; - -webkit-text-size-adjust: 100%; - -ms-text-size-adjust: 100%; -} -// Apply focus state -a:focus { - @extend %tab-focus; -} - -// Remove outline -a:hover, -a:active { - outline: 0; -} - -// Prevent sub and sup affecting line-height in all browsers -sub, -sup { - position: relative; - font-size: 75%; - line-height: 0; - vertical-align: baseline; -} -sup { - top: -0.5em; -} -sub { - bottom: -0.25em; -} - -// Normalize blockquotes -blockquote { - margin: 0; -} - -// Img border in a's and image quality -img { - // Responsive images (ensure images don't scale beyond their parents) - max-width: 100%; // Part 1: Set a maximum relative to the parent - width: auto\9; // IE7-8 need help adjusting responsive images - height: auto; // Part 2: Scale the height according to the width, otherwise you get stretching - - vertical-align: middle; - border: 0; - -ms-interpolation-mode: bicubic; -} - -// Prevent max-width from affecting Google Maps -#map_canvas img, -.google-maps img { - max-width: none; -} - -// Consistent form font size in all browsers, margin changes, misc -button, -input, -select, -textarea { - margin: 0; - font-size: 100%; - vertical-align: middle; -} -button, -input { - *overflow: visible; // Inner spacing ie IE6/7 - line-height: normal; // FF3/4 have !important on line-height in UA stylesheet -} -button::-moz-focus-inner, -input::-moz-focus-inner { // Inner padding and border oddities in FF3/4 - padding: 0; - border: 0; -} -button, -html input[type="button"], // Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio` and `video` controls. -input[type="reset"], -input[type="submit"] { - -webkit-appearance: button; // Corrects inability to style clickable `input` types in iOS. - cursor: pointer; // Improves usability and consistency of cursor style between image-type `input` and others. -} -label, -select, -button, -input[type="button"], -input[type="reset"], -input[type="submit"], -input[type="radio"], -input[type="checkbox"] { - cursor: pointer; // Improves usability and consistency of cursor style between image-type `input` and others. -} -input[type="search"] { // Appearance in Safari/Chrome - @include box-sizing(content-box); - -webkit-appearance: textfield; -} -input[type="search"]::-webkit-search-decoration, -input[type="search"]::-webkit-search-cancel-button { - -webkit-appearance: none; // Inner-padding issues in Chrome OSX, Safari 5 -} -textarea { - overflow: auto; // Remove vertical scrollbar in IE6-9 - vertical-align: top; // Readability and alignment cross-browser -} http://git-wip-us.apache.org/repos/asf/incubator-ariatosca-website/blob/77b31961/_sass/_sliding-menu.scss ---------------------------------------------------------------------- diff --git a/_sass/_sliding-menu.scss b/_sass/_sliding-menu.scss deleted file mode 100644 index b44cb59..0000000 --- a/_sass/_sliding-menu.scss +++ /dev/null @@ -1,189 +0,0 @@ -/* ========================================================================== - OFF CANVAS SLIDING MENU - Based on code by Diego Eis - http://tableless.com.br/fazendo-um-slide-menu-mobile-sem-plugin/ - ========================================================================== */ - -/* Slider */ - -.slide { - transform: translateX(-100%); - @include media($medium) { - transform: translateX(em(-600)); - } - @include media($large) { - transform: translateX(em(-900)); - } - } - -/* - Sliding menu button - ========================================================================== */ - -.sliding-menu-button { - position: fixed; - transform: translateZ(0); - backface-visibility: hidden; /* fix scroll jank */ - top: $gutter; - right: $gutter; - display: block; - width: $button-size * 2; - height: $button-size * 2; - background: $primary-color; - outline: 0; - padding: 0; - border: 2.5px solid transparent; - cursor: pointer; - z-index: 20; - box-sizing: border-box; - &:hover { - background: $black; - } - transition: $sliding-menu-animation; - &.slide { - background: $danger-color; - transform: translateX(0); /* don't slide close button on small screens only */ - @include media($medium) { - transform: translateX(em(-600)); /* reset slide position */ - } - @include media($large) { - transform: translateX(em(-900)); /* reset slide position */ - } - } -} - -/* - Sliding content - ========================================================================== */ - -.sliding-menu-content { - position: fixed; - top: 0; - right: 0; - padding: em(22) 0; - visibility: hidden; - backface-visibility: hidden; - text-align: left; - @include size(100% 100%); - @include media($small) { - width: em(600); - } - @include media($large) { - width: em(900); - } - transform: translateX(100%); - transition: $sliding-menu-animation; - background: $sliding-menu-background; - z-index: 20; - overflow-y: auto; - overflow-x: hidden; - -webkit-overflow-scrolling: touch; - &.is-visible { - visibility: visible; - transform: translateX(0); - } - h5 { - margin: 0 20% 0 10%; - @include media($large) { - margin-right: 20%; - } - color: $white; - @include font-size(14); - @include media($small) { - @include font-size(16); - } - span { - display: block; - @include font-size(32,no,1); - @include media($small) { - @include font-size(48,no,1); - } - font-family: $base-font; - text-transform: uppercase; - font-weight: 400; - } - } - ul { - margin: 0 10%; - @include media($large) { - margin-right: 20%; - } - } - ul, - li { - list-style: none; - } - li { - display: block; - position: relative; - padding-bottom: 1em; - min-height: 70px; - @include media($small) { - min-height: 100px; - } - } - .menu-item { - a { - display: block; - color: $white; - text-decoration: none; - } - .teaser { - position: absolute; - left: 0; - margin-bottom: 0; - width: 50px; - border: 2px solid $white; - margin-bottom: ($gutter / 2); - opacity: 0.6; - @include media($small) { - width: 150px; - } - } - a:hover .teaser { - opacity: 1; - } - .title { - display: block; - margin-left: 60px; - font-family: $alt-font; - @include font-size(24,no); - font-weight: 700; - @include media($small) { - margin-left: 170px; - @include font-size(32,no); - } - } - .excerpt { - margin-top: 0; - margin-left: 60px; - @include font-size(14,no); - @include media($small) { - margin-left: 170px; - @include font-size(16,no); - } - } - } - .sub-menu-item > li a { - display: block; - color: $white; - font-style: italic; - } - .menu-item .home a { - @include font-size(32); - } -} - -/* Dim content when off canvas nav slides in */ - -.menu-screen { - @include position(fixed, 0 0 0 0); - visibility: hidden; - z-index: 4; - &.is-visible { - visibility: visible; - &:hover { - cursor: pointer; - } - } -} http://git-wip-us.apache.org/repos/asf/incubator-ariatosca-website/blob/77b31961/_sass/_syntax.scss ---------------------------------------------------------------------- diff --git a/_sass/_syntax.scss b/_sass/_syntax.scss deleted file mode 100644 index dd7627b..0000000 --- a/_sass/_syntax.scss +++ /dev/null @@ -1,135 +0,0 @@ -/* ========================================================================== - Syntax highlighting and formatting - ========================================================================== */ - -pre.highlight { - padding: 1em; -} - -/* - Pygments.rb and Rouge - ========================================================================== */ - -.linenos, -.code { - padding: 0; - border-top: 0 solid transparent; - border-bottom: 0 solid transparent; -} -.linenodiv { - @include font-size(16); -} - -.highlight { - overflow-x: auto; - @include font-size(16); - border: 1px solid darken($body-color, 5); - border-radius: $border-radius; - pre { - position: relative; - margin: 0; - padding: 1em; - } - &:hover { - border: 1px solid $form-border-color-hover; - } -} - -.highlighttable { - tr:hover>td, - tr:hover>th { - background: transparent - } -} - -.hll { background-color: #ffffcc } - -.err { color: #a61717; background-color: #e3d2d2 } // Error - -.k { color: #000000; font-weight: bold } // Keyword - -.o { color: #000000; font-weight: bold } // Operator - -.c { color: #999988; font-style: italic } // Comment -.cm { color: #999988; font-style: italic } // Comment.Multiline -.cp { color: #999999; font-weight: bold; font-style: italic } // Comment.Preproc -.c1 { color: #999988; font-style: italic } // Comment.Single -.cs { color: #999999; font-weight: bold; font-style: italic } // Comment.Special - - -.gd { color: #000000; background-color: #ffdddd } // Generic.Deleted -.ge { color: #000000; font-style: italic } // Generic.Emph -.gr { color: #aa0000 } // Generic.Error -.gh { color: #999999 } // Generic.Heading -.gi { color: #000000; background-color: #ddffdd } // Generic.Inserted -.go { color: #888888 } // Generic.Output -.gp { color: #555555 } // Generic.Prompt -.gs { font-weight: bold } // Generic.Strong -.gu { color: #aaaaaa } // Generic.Subheading -.gt { color: #aa0000 } // Generic.Traceback - -.kc { color: #000000; font-weight: bold } // Keyword.Constant -.kd { color: #000000; font-weight: bold } // Keyword.Declaration -.kn { color: #000000; font-weight: bold } // Keyword.Namespace -.kp { color: #000000; font-weight: bold } // Keyword.Pseudo -.kr { color: #000000; font-weight: bold } // Keyword.Reserved -.kt { color: #445588; font-weight: bold } // Keyword.Type - -.m { color: #009999 } // Literal.Number -.mf { color: #009999 } // Literal.Number.Float -.mh { color: #009999 } // Literal.Number.Hex -.mi { color: #009999 } // Literal.Number.Integer -.mo { color: #009999 } // Literal.Number.Oct -.il { color: #009999 } // Literal.Number.Integer.Long -.s { color: #d01040 } // Literal.String -.sb { color: #d01040 } // Literal.String.Backtick -.sc { color: #d01040 } // Literal.String.Char -.sd { color: #d01040 } // Literal.String.Doc -.s2 { color: #d01040 } // Literal.String.Double -.se { color: #d01040 } // Literal.String.Escape -.sh { color: #d01040 } // Literal.String.Heredoc -.si { color: #d01040 } // Literal.String.Interpol -.sx { color: #d01040 } // Literal.String.Other -.sr { color: #009926 } // Literal.String.Regex -.s1 { color: #d01040 } // Literal.String.Single -.ss { color: #990073 } // Literal.String.Symbol - -.na { color: #008080 } // Name.Attribute -.nb { color: #0086B3 } // Name.Builtin -.nc { color: #445588; font-weight: bold } // Name.Class -.no { color: #008080 } // Name.Constant -.nd { color: #3c5d5d; font-weight: bold } // Name.Decorator -.ni { color: #800080 } // Name.Entity -.ne { color: #990000; font-weight: bold } // Name.Exception -.nf { color: #990000; font-weight: bold } // Name.Function -.nl { color: #990000; font-weight: bold } // Name.Label -.nn { color: #555555 } // Name.Namespace -.nt { color: #000080 } // Name.Tag -.bp { color: #999999 } // Name.Builtin.Pseudo -.nv { color: #008080 } // Name.Variable -.vc { color: #008080 } // Name.Variable.Class -.vg { color: #008080 } // Name.Variable.Global -.vi { color: #008080 } // Name.Variable.Instance - -.ow { color: #000000; font-weight: bold } // Operator.Word - -.w { color: #bbbbbb } // Text.Whitespace - -/* - GitHub Gists - ========================================================================== */ - -//Remove extra padding -.gist table { - margin-top:0px; - -} - -//Remove hover effect -.gist tbody -{ - tr:hover > td, tr:hover > th { - background-color:transparent; - }; - background-color:white; //Background color white -} http://git-wip-us.apache.org/repos/asf/incubator-ariatosca-website/blob/77b31961/_sass/_tiles.scss ---------------------------------------------------------------------- diff --git a/_sass/_tiles.scss b/_sass/_tiles.scss deleted file mode 100644 index 1c6c033..0000000 --- a/_sass/_tiles.scss +++ /dev/null @@ -1,45 +0,0 @@ -/* ========================================================================== - Tiles - ========================================================================== */ - -.tile { - @include outer-container; - margin-bottom: $gutter; - @include media($micro) { - @include fill-parent; - } - @include media(new-breakpoint(min-width em(480) 12)) { - @include span-columns(3); - @include omega(4n); - } - .entry-date { - @include font-size(16,no); - color: lighten($text-color,25); - } - .post-title { - @include font-size(18,no); - } - .post-excerpt { - @include font-size(16); - } - .post-teaser { - position: relative; - display: block; - &:after { - content: ''; - position: absolute; - width: 100%; - height: 100%; - top: 0; - left: 0; - background: rgba($base-color,0); - pointer-events: none; - @include transition(background 0.3s); - } - &:hover { - &:after { - background: rgba($base-color,0.2); - } - } - } -} http://git-wip-us.apache.org/repos/asf/incubator-ariatosca-website/blob/77b31961/_sass/_toc.scss ---------------------------------------------------------------------- diff --git a/_sass/_toc.scss b/_sass/_toc.scss deleted file mode 100644 index 5aa6b58..0000000 --- a/_sass/_toc.scss +++ /dev/null @@ -1,71 +0,0 @@ -/* ========================================================================== - Table of contents - ========================================================================== */ - -/* - Page table of contents - ========================================================================== */ - -.toc { - margin-left: -1 * $gutter; - margin-right: -1 * $gutter; - @include media($medium) { - margin-left: 0; - margin-right: 0; - } - font-family: $alt-font; - ul { - margin-top: $gutter; - margin-bottom: $gutter; - border: 1px solid $border-color; - @include media($medium) { - border-radius: $border-radius; - } - } - li { - @include font-size(14,no,16); - @include media($small) { - @include font-size(16,no,18); - } - border-bottom: 1px solid $border-color; - > a { - display: block; - padding: 7px 1.618rem; - color: $text-color; - border-left: 2px solid transparent; - &:hover, - &:focus { - background: mix($white, $border-color, 5%); - } - } - } - h6 { - margin: 0; - padding: 7px 1.618rem; - background: $table-stripe-color; - &:hover { - background: mix($white, $border-color, 5%); - } - a { - color: $text-color; - } - } -} - -/* - 1/4 wide table of contents to be used as a sidebar (left aligned) - ========================================================================== */ - -.toc-left { - @include span-columns(12); - @include media($medium) { - @include span-columns(4); - } - margin-left: 0; - ul { - margin-top: 0; - @include media($small) { - margin-bottom: 0.5 * $gutter; - } - } -} http://git-wip-us.apache.org/repos/asf/incubator-ariatosca-website/blob/77b31961/_sass/_variables.scss ---------------------------------------------------------------------- diff --git a/_sass/_variables.scss b/_sass/_variables.scss deleted file mode 100644 index 49344bf..0000000 --- a/_sass/_variables.scss +++ /dev/null @@ -1,110 +0,0 @@ -/* ========================================================================== - SCSS Variables - ========================================================================== */ - -/* - Typography variables - ========================================================================== */ - -$base-font : Georgia,Times,"Times New Roman",serif; -$heading-font : "Helvetica Neue","Segoe UI",Arial,sans-serif; -$caption-font : $base-font; -$code-font : monospace; -$alt-font : $heading-font; - -$doc-font-size : 16; -$doc-line-height : 24; - -$border-radius : 3px; - -/* - Color variables - ========================================================================== */ - -$white : #fff; -$black : #000; - -$body-color : #ebebeb; - -$text-color : #313130; -$caption-color : mix($white, $text-color, 25%); - -$base-color : #343434; -$comp-color : complement($base-color); -$border-color : #ddd; -$link-color : #222; - -$primary-color : $black; -$success-color : #2ecc71; -$warning-color : #f1c40f; -$danger-color : #e74c3c; -$info-color : #3498db; - -$table-border-color : $border-color; -$table-border : 1px solid $table-border-color; -$table-background : $body-color; -$table-header-color : lighten($table-background, 10); -$table-hover-color : darken($table-background, 2); -$table-stripe-color : darken($table-background, 4); -$table-stripe-color-hover : darken($table-stripe-color, 5); - -$facebook-color : #3b5998; -$flickr-color : #ff0084; -$foursquare-color : #0cbadf; -$google-plus-color : #dd4b39; -$instagram-color : #4e433c; -$linkedin-color : #4875b4; -$pinterest-color : #cb2027; -$rss-color : #fa9b39; -$tumblr-color : #2c4762; -$twitter-color : #55acee; -$vimeo-color : #1ab7ea; -$youtube-color : #ff3333; - - -/* - Form variables - ========================================================================== */ - -$form-border-color : $border-color; -$form-border-color-hover : darken($border-color, 10); -$form-border-color-focus : $primary-color; -$form-border-radius : $border-radius; -$form-box-shadow : inset 0 1px 3px hsla(0, 0%, 0%, 0.06); -$form-box-shadow-focus : $form-box-shadow, 0 0 5px rgba(darken($form-border-color-focus, 5), 0.7); -$form-font-family : $base-font; -$form-font-size : $doc-font-size; - - -/* - Sliding menu navigation variables - ========================================================================== */ - -$sliding-menu-border-color : $black; -$sliding-menu-background : $black; -$sliding-menu-color : $white; -$sliding-menu-background-hover : $black; -$sliding-menu-color-hover : $white; -$sliding-menu-border : 1px solid $sliding-menu-border-color; -$button-size : 30px; -$transition : 0.3s; // increase this to see the transformations in slow-motion -$sliding-menu-animation : all 500ms cubic-bezier(.86,.01,.77,.78); - -/* - Badge variables - ========================================================================== */ - -$badge-background : $primary-color; -$badge-dark-color : $black; -$badge-danger-color : $danger-color; -$badge-info-color : $info-color; -$badge-warning-color : $warning-color; -$badge-success-color : $success-color; -$badge-font-color : $white; - - -/* - Masthead variables - ========================================================================== */ - -$masthead-height: $button-size * 2; http://git-wip-us.apache.org/repos/asf/incubator-ariatosca-website/blob/77b31961/_sass/vendor/bourbon/_bourbon-deprecated-upcoming.scss ---------------------------------------------------------------------- diff --git a/_sass/vendor/bourbon/_bourbon-deprecated-upcoming.scss b/_sass/vendor/bourbon/_bourbon-deprecated-upcoming.scss deleted file mode 100644 index f946b3b..0000000 --- a/_sass/vendor/bourbon/_bourbon-deprecated-upcoming.scss +++ /dev/null @@ -1,8 +0,0 @@ -//************************************************************************// -// These mixins/functions are deprecated -// They will be removed in the next MAJOR version release -//************************************************************************// -@mixin inline-block { - display: inline-block; - @warn "inline-block mixin is deprecated and will be removed in the next major version release"; -} http://git-wip-us.apache.org/repos/asf/incubator-ariatosca-website/blob/77b31961/_sass/vendor/bourbon/_bourbon.scss ---------------------------------------------------------------------- diff --git a/_sass/vendor/bourbon/_bourbon.scss b/_sass/vendor/bourbon/_bourbon.scss deleted file mode 100644 index 11d52d7..0000000 --- a/_sass/vendor/bourbon/_bourbon.scss +++ /dev/null @@ -1,78 +0,0 @@ -// Settings -@import "settings/prefixer"; -@import "settings/px-to-em"; - -// Custom Helpers -@import "helpers/convert-units"; -@import "helpers/gradient-positions-parser"; -@import "helpers/is-num"; -@import "helpers/linear-angle-parser"; -@import "helpers/linear-gradient-parser"; -@import "helpers/linear-positions-parser"; -@import "helpers/linear-side-corner-parser"; -@import "helpers/radial-arg-parser"; -@import "helpers/radial-positions-parser"; -@import "helpers/radial-gradient-parser"; -@import "helpers/render-gradients"; -@import "helpers/shape-size-stripper"; -@import "helpers/str-to-num"; - -// Custom Functions -@import "functions/assign"; -@import "functions/color-lightness"; -@import "functions/flex-grid"; -@import "functions/golden-ratio"; -@import "functions/grid-width"; -@import "functions/modular-scale"; -@import "functions/px-to-em"; -@import "functions/px-to-rem"; -@import "functions/strip-units"; -@import "functions/tint-shade"; -@import "functions/transition-property-name"; -@import "functions/unpack"; - -// CSS3 Mixins -@import "css3/animation"; -@import "css3/appearance"; -@import "css3/backface-visibility"; -@import "css3/background"; -@import "css3/background-image"; -@import "css3/border-image"; -@import "css3/border-radius"; -@import "css3/box-sizing"; -@import "css3/calc"; -@import "css3/columns"; -@import "css3/filter"; -@import "css3/flex-box"; -@import "css3/font-face"; -@import "css3/font-feature-settings"; -@import "css3/hyphens"; -@import "css3/hidpi-media-query"; -@import "css3/image-rendering"; -@import "css3/keyframes"; -@import "css3/linear-gradient"; -@import "css3/perspective"; -@import "css3/radial-gradient"; -@import "css3/transform"; -@import "css3/transition"; -@import "css3/user-select"; -@import "css3/placeholder"; - -// Addons & other mixins -@import "addons/button"; -@import "addons/clearfix"; -@import "addons/directional-values"; -@import "addons/ellipsis"; -@import "addons/font-family"; -@import "addons/hide-text"; -@import "addons/html5-input-types"; -@import "addons/position"; -@import "addons/prefixer"; -@import "addons/retina-image"; -@import "addons/size"; -@import "addons/timing-functions"; -@import "addons/triangle"; -@import "addons/word-wrap"; - -// Soon to be deprecated Mixins -@import "bourbon-deprecated-upcoming"; http://git-wip-us.apache.org/repos/asf/incubator-ariatosca-website/blob/77b31961/_sass/vendor/bourbon/addons/_button.scss ---------------------------------------------------------------------- diff --git a/_sass/vendor/bourbon/addons/_button.scss b/_sass/vendor/bourbon/addons/_button.scss deleted file mode 100644 index 14a89e4..0000000 --- a/_sass/vendor/bourbon/addons/_button.scss +++ /dev/null @@ -1,374 +0,0 @@ -@mixin button ($style: simple, $base-color: #4294f0, $text-size: inherit, $padding: 7px 18px) { - - @if type-of($style) == string and type-of($base-color) == color { - @include buttonstyle($style, $base-color, $text-size, $padding); - } - - @if type-of($style) == string and type-of($base-color) == number { - $padding: $text-size; - $text-size: $base-color; - $base-color: #4294f0; - - @if $padding == inherit { - $padding: 7px 18px; - } - - @include buttonstyle($style, $base-color, $text-size, $padding); - } - - @if type-of($style) == color and type-of($base-color) == color { - $base-color: $style; - $style: simple; - @include buttonstyle($style, $base-color, $text-size, $padding); - } - - @if type-of($style) == color and type-of($base-color) == number { - $padding: $text-size; - $text-size: $base-color; - $base-color: $style; - $style: simple; - - @if $padding == inherit { - $padding: 7px 18px; - } - - @include buttonstyle($style, $base-color, $text-size, $padding); - } - - @if type-of($style) == number { - $padding: $base-color; - $text-size: $style; - $base-color: #4294f0; - $style: simple; - - @if $padding == #4294f0 { - $padding: 7px 18px; - } - - @include buttonstyle($style, $base-color, $text-size, $padding); - } - - &:disabled { - opacity: 0.5; - cursor: not-allowed; - } -} - - -// Selector Style Button -//************************************************************************// -@mixin buttonstyle($type, $b-color, $t-size, $pad) { - // Grayscale button - @if $type == simple and $b-color == grayscale($b-color) { - @include simple($b-color, true, $t-size, $pad); - } - - @if $type == shiny and $b-color == grayscale($b-color) { - @include shiny($b-color, true, $t-size, $pad); - } - - @if $type == pill and $b-color == grayscale($b-color) { - @include pill($b-color, true, $t-size, $pad); - } - - @if $type == flat and $b-color == grayscale($b-color) { - @include flat($b-color, true, $t-size, $pad); - } - - // Colored button - @if $type == simple { - @include simple($b-color, false, $t-size, $pad); - } - - @else if $type == shiny { - @include shiny($b-color, false, $t-size, $pad); - } - - @else if $type == pill { - @include pill($b-color, false, $t-size, $pad); - } - - @else if $type == flat { - @include flat($b-color, false, $t-size, $pad); - } -} - - -// Simple Button -//************************************************************************// -@mixin simple($base-color, $grayscale: false, $textsize: inherit, $padding: 7px 18px) { - $color: hsl(0, 0, 100%); - $border: adjust-color($base-color, $saturation: 9%, $lightness: -14%); - $inset-shadow: adjust-color($base-color, $saturation: -8%, $lightness: 15%); - $stop-gradient: adjust-color($base-color, $saturation: 9%, $lightness: -11%); - $text-shadow: adjust-color($base-color, $saturation: 15%, $lightness: -18%); - - @if is-light($base-color) { - $color: hsl(0, 0, 20%); - $text-shadow: adjust-color($base-color, $saturation: 10%, $lightness: 4%); - } - - @if $grayscale == true { - $border: grayscale($border); - $inset-shadow: grayscale($inset-shadow); - $stop-gradient: grayscale($stop-gradient); - $text-shadow: grayscale($text-shadow); - } - - border: 1px solid $border; - border-radius: 3px; - box-shadow: inset 0 1px 0 0 $inset-shadow; - color: $color; - display: inline-block; - font-size: $textsize; - font-weight: bold; - @include linear-gradient ($base-color, $stop-gradient); - padding: $padding; - text-decoration: none; - text-shadow: 0 1px 0 $text-shadow; - background-clip: padding-box; - - &:hover:not(:disabled) { - $base-color-hover: adjust-color($base-color, $saturation: -4%, $lightness: -5%); - $inset-shadow-hover: adjust-color($base-color, $saturation: -7%, $lightness: 5%); - $stop-gradient-hover: adjust-color($base-color, $saturation: 8%, $lightness: -14%); - - @if $grayscale == true { - $base-color-hover: grayscale($base-color-hover); - $inset-shadow-hover: grayscale($inset-shadow-hover); - $stop-gradient-hover: grayscale($stop-gradient-hover); - } - - box-shadow: inset 0 1px 0 0 $inset-shadow-hover; - cursor: pointer; - @include linear-gradient ($base-color-hover, $stop-gradient-hover); - } - - &:active:not(:disabled), - &:focus:not(:disabled) { - $border-active: adjust-color($base-color, $saturation: 9%, $lightness: -14%); - $inset-shadow-active: adjust-color($base-color, $saturation: 7%, $lightness: -17%); - - @if $grayscale == true { - $border-active: grayscale($border-active); - $inset-shadow-active: grayscale($inset-shadow-active); - } - - border: 1px solid $border-active; - box-shadow: inset 0 0 8px 4px $inset-shadow-active, inset 0 0 8px 4px $inset-shadow-active; - } -} - - -// Shiny Button -//************************************************************************// -@mixin shiny($base-color, $grayscale: false, $textsize: inherit, $padding: 7px 18px) { - $color: hsl(0, 0, 100%); - $border: adjust-color($base-color, $red: -117, $green: -111, $blue: -81); - $border-bottom: adjust-color($base-color, $red: -126, $green: -127, $blue: -122); - $fourth-stop: adjust-color($base-color, $red: -79, $green: -70, $blue: -46); - $inset-shadow: adjust-color($base-color, $red: 37, $green: 29, $blue: 12); - $second-stop: adjust-color($base-color, $red: -56, $green: -50, $blue: -33); - $text-shadow: adjust-color($base-color, $red: -140, $green: -141, $blue: -114); - $third-stop: adjust-color($base-color, $red: -86, $green: -75, $blue: -48); - - @if is-light($base-color) { - $color: hsl(0, 0, 20%); - $text-shadow: adjust-color($base-color, $saturation: 10%, $lightness: 4%); - } - - @if $grayscale == true { - $border: grayscale($border); - $border-bottom: grayscale($border-bottom); - $fourth-stop: grayscale($fourth-stop); - $inset-shadow: grayscale($inset-shadow); - $second-stop: grayscale($second-stop); - $text-shadow: grayscale($text-shadow); - $third-stop: grayscale($third-stop); - } - - border: 1px solid $border; - border-bottom: 1px solid $border-bottom; - border-radius: 5px; - box-shadow: inset 0 1px 0 0 $inset-shadow; - color: $color; - display: inline-block; - font-size: $textsize; - font-weight: bold; - @include linear-gradient(top, $base-color 0%, $second-stop 50%, $third-stop 50%, $fourth-stop 100%); - padding: $padding; - text-align: center; - text-decoration: none; - text-shadow: 0 -1px 1px $text-shadow; - - &:hover:not(:disabled) { - $first-stop-hover: adjust-color($base-color, $red: -13, $green: -15, $blue: -18); - $second-stop-hover: adjust-color($base-color, $red: -66, $green: -62, $blue: -51); - $third-stop-hover: adjust-color($base-color, $red: -93, $green: -85, $blue: -66); - $fourth-stop-hover: adjust-color($base-color, $red: -86, $green: -80, $blue: -63); - - @if $grayscale == true { - $first-stop-hover: grayscale($first-stop-hover); - $second-stop-hover: grayscale($second-stop-hover); - $third-stop-hover: grayscale($third-stop-hover); - $fourth-stop-hover: grayscale($fourth-stop-hover); - } - - cursor: pointer; - @include linear-gradient(top, $first-stop-hover 0%, - $second-stop-hover 50%, - $third-stop-hover 50%, - $fourth-stop-hover 100%); - } - - &:active:not(:disabled), - &:focus:not(:disabled) { - $inset-shadow-active: adjust-color($base-color, $red: -111, $green: -116, $blue: -122); - - @if $grayscale == true { - $inset-shadow-active: grayscale($inset-shadow-active); - } - - box-shadow: inset 0 0 20px 0 $inset-shadow-active; - } -} - - -// Pill Button -//************************************************************************// -@mixin pill($base-color, $grayscale: false, $textsize: inherit, $padding: 7px 18px) { - $color: hsl(0, 0, 100%); - $border-bottom: adjust-color($base-color, $hue: 8, $saturation: -11%, $lightness: -26%); - $border-sides: adjust-color($base-color, $hue: 4, $saturation: -21%, $lightness: -21%); - $border-top: adjust-color($base-color, $hue: -1, $saturation: -30%, $lightness: -15%); - $inset-shadow: adjust-color($base-color, $hue: -1, $saturation: -1%, $lightness: 7%); - $stop-gradient: adjust-color($base-color, $hue: 8, $saturation: 14%, $lightness: -10%); - $text-shadow: adjust-color($base-color, $hue: 5, $saturation: -19%, $lightness: -15%); - - @if is-light($base-color) { - $color: hsl(0, 0, 20%); - $text-shadow: adjust-color($base-color, $saturation: 10%, $lightness: 4%); - } - - @if $grayscale == true { - $border-bottom: grayscale($border-bottom); - $border-sides: grayscale($border-sides); - $border-top: grayscale($border-top); - $inset-shadow: grayscale($inset-shadow); - $stop-gradient: grayscale($stop-gradient); - $text-shadow: grayscale($text-shadow); - } - - border: 1px solid $border-top; - border-color: $border-top $border-sides $border-bottom; - border-radius: 16px; - box-shadow: inset 0 1px 0 0 $inset-shadow; - color: $color; - display: inline-block; - font-size: $textsize; - font-weight: normal; - line-height: 1; - @include linear-gradient ($base-color, $stop-gradient); - padding: $padding; - text-align: center; - text-decoration: none; - text-shadow: 0 -1px 1px $text-shadow; - background-clip: padding-box; - - &:hover:not(:disabled) { - $base-color-hover: adjust-color($base-color, $lightness: -4.5%); - $border-bottom: adjust-color($base-color, $hue: 8, $saturation: 13.5%, $lightness: -32%); - $border-sides: adjust-color($base-color, $hue: 4, $saturation: -2%, $lightness: -27%); - $border-top: adjust-color($base-color, $hue: -1, $saturation: -17%, $lightness: -21%); - $inset-shadow-hover: adjust-color($base-color, $saturation: -1%, $lightness: 3%); - $stop-gradient-hover: adjust-color($base-color, $hue: 8, $saturation: -4%, $lightness: -15.5%); - $text-shadow-hover: adjust-color($base-color, $hue: 5, $saturation: -5%, $lightness: -22%); - - @if $grayscale == true { - $base-color-hover: grayscale($base-color-hover); - $border-bottom: grayscale($border-bottom); - $border-sides: grayscale($border-sides); - $border-top: grayscale($border-top); - $inset-shadow-hover: grayscale($inset-shadow-hover); - $stop-gradient-hover: grayscale($stop-gradient-hover); - $text-shadow-hover: grayscale($text-shadow-hover); - } - - border: 1px solid $border-top; - border-color: $border-top $border-sides $border-bottom; - box-shadow: inset 0 1px 0 0 $inset-shadow-hover; - cursor: pointer; - @include linear-gradient ($base-color-hover, $stop-gradient-hover); - text-shadow: 0 -1px 1px $text-shadow-hover; - background-clip: padding-box; - } - - &:active:not(:disabled), - &:focus:not(:disabled) { - $active-color: adjust-color($base-color, $hue: 4, $saturation: -12%, $lightness: -10%); - $border-active: adjust-color($base-color, $hue: 6, $saturation: -2.5%, $lightness: -30%); - $border-bottom-active: adjust-color($base-color, $hue: 11, $saturation: 6%, $lightness: -31%); - $inset-shadow-active: adjust-color($base-color, $hue: 9, $saturation: 2%, $lightness: -21.5%); - $text-shadow-active: adjust-color($base-color, $hue: 5, $saturation: -12%, $lightness: -21.5%); - - @if $grayscale == true { - $active-color: grayscale($active-color); - $border-active: grayscale($border-active); - $border-bottom-active: grayscale($border-bottom-active); - $inset-shadow-active: grayscale($inset-shadow-active); - $text-shadow-active: grayscale($text-shadow-active); - } - - background: $active-color; - border: 1px solid $border-active; - border-bottom: 1px solid $border-bottom-active; - box-shadow: inset 0 0 6px 3px $inset-shadow-active; - text-shadow: 0 -1px 1px $text-shadow-active; - } -} - - - -// Flat Button -//************************************************************************// -@mixin flat($base-color, $grayscale: false, $textsize: inherit, $padding: 7px 18px) { - $color: hsl(0, 0, 100%); - - @if is-light($base-color) { - $color: hsl(0, 0, 20%); - } - - background-color: $base-color; - border-radius: 3px; - border: none; - color: $color; - display: inline-block; - font-size: inherit; - font-weight: bold; - padding: 7px 18px; - text-decoration: none; - background-clip: padding-box; - - &:hover:not(:disabled){ - $base-color-hover: adjust-color($base-color, $saturation: 4%, $lightness: 5%); - - @if $grayscale == true { - $base-color-hover: grayscale($base-color-hover); - } - - background-color: $base-color-hover; - cursor: pointer; - } - - &:active:not(:disabled), - &:focus:not(:disabled) { - $base-color-active: adjust-color($base-color, $saturation: -4%, $lightness: -5%); - - @if $grayscale == true { - $base-color-active: grayscale($base-color-active); - } - - background-color: $base-color-active; - cursor: pointer; - } -} http://git-wip-us.apache.org/repos/asf/incubator-ariatosca-website/blob/77b31961/_sass/vendor/bourbon/addons/_clearfix.scss ---------------------------------------------------------------------- diff --git a/_sass/vendor/bourbon/addons/_clearfix.scss b/_sass/vendor/bourbon/addons/_clearfix.scss deleted file mode 100644 index 783cfbc..0000000 --- a/_sass/vendor/bourbon/addons/_clearfix.scss +++ /dev/null @@ -1,23 +0,0 @@ -// Modern micro clearfix provides an easy way to contain floats without adding additional markup. -// -// Example usage: -// -// // Contain all floats within .wrapper -// .wrapper { -// @include clearfix; -// .content, -// .sidebar { -// float : left; -// } -// } - -@mixin clearfix { - &:after { - content:""; - display:table; - clear:both; - } -} - -// Acknowledgements -// Beat *that* clearfix: [Thierry Koblentz](http://www.css-101.org/articles/clearfix/latest-new-clearfix-so-far.php) http://git-wip-us.apache.org/repos/asf/incubator-ariatosca-website/blob/77b31961/_sass/vendor/bourbon/addons/_directional-values.scss ---------------------------------------------------------------------- diff --git a/_sass/vendor/bourbon/addons/_directional-values.scss b/_sass/vendor/bourbon/addons/_directional-values.scss deleted file mode 100644 index 742f103..0000000 --- a/_sass/vendor/bourbon/addons/_directional-values.scss +++ /dev/null @@ -1,111 +0,0 @@ -// directional-property mixins are shorthands -// for writing properties like the following -// -// @include margin(null 0 10px); -// ------ -// margin-right: 0; -// margin-bottom: 10px; -// margin-left: 0; -// -// - or - -// -// @include border-style(dotted null); -// ------ -// border-top-style: dotted; -// border-bottom-style: dotted; -// -// ------ -// -// Note: You can also use false instead of null - -@function collapse-directionals($vals) { - $output: null; - - $A: nth( $vals, 1 ); - $B: if( length($vals) < 2, $A, nth($vals, 2)); - $C: if( length($vals) < 3, $A, nth($vals, 3)); - $D: if( length($vals) < 2, $A, nth($vals, if( length($vals) < 4, 2, 4) )); - - @if $A == 0 { $A: 0 } - @if $B == 0 { $B: 0 } - @if $C == 0 { $C: 0 } - @if $D == 0 { $D: 0 } - - @if $A == $B and $A == $C and $A == $D { $output: $A } - @else if $A == $C and $B == $D { $output: $A $B } - @else if $B == $D { $output: $A $B $C } - @else { $output: $A $B $C $D } - - @return $output; -} - -@function contains-falsy($list) { - @each $item in $list { - @if not $item { - @return true; - } - } - - @return false; -} - -@mixin directional-property($pre, $suf, $vals) { - // Property Names - $top: $pre + "-top" + if($suf, "-#{$suf}", ""); - $bottom: $pre + "-bottom" + if($suf, "-#{$suf}", ""); - $left: $pre + "-left" + if($suf, "-#{$suf}", ""); - $right: $pre + "-right" + if($suf, "-#{$suf}", ""); - $all: $pre + if($suf, "-#{$suf}", ""); - - $vals: collapse-directionals($vals); - - @if contains-falsy($vals) { - @if nth($vals, 1) { #{$top}: nth($vals, 1); } - - @if length($vals) == 1 { - @if nth($vals, 1) { #{$right}: nth($vals, 1); } - } @else { - @if nth($vals, 2) { #{$right}: nth($vals, 2); } - } - - // prop: top/bottom right/left - @if length($vals) == 2 { - @if nth($vals, 1) { #{$bottom}: nth($vals, 1); } - @if nth($vals, 2) { #{$left}: nth($vals, 2); } - - // prop: top right/left bottom - } @else if length($vals) == 3 { - @if nth($vals, 3) { #{$bottom}: nth($vals, 3); } - @if nth($vals, 2) { #{$left}: nth($vals, 2); } - - // prop: top right bottom left - } @else if length($vals) == 4 { - @if nth($vals, 3) { #{$bottom}: nth($vals, 3); } - @if nth($vals, 4) { #{$left}: nth($vals, 4); } - } - - // prop: top/right/bottom/left - } @else { - #{$all}: $vals; - } -} - -@mixin margin($vals...) { - @include directional-property(margin, false, $vals...); -} - -@mixin padding($vals...) { - @include directional-property(padding, false, $vals...); -} - -@mixin border-style($vals...) { - @include directional-property(border, style, $vals...); -} - -@mixin border-color($vals...) { - @include directional-property(border, color, $vals...); -} - -@mixin border-width($vals...) { - @include directional-property(border, width, $vals...); -} http://git-wip-us.apache.org/repos/asf/incubator-ariatosca-website/blob/77b31961/_sass/vendor/bourbon/addons/_ellipsis.scss ---------------------------------------------------------------------- diff --git a/_sass/vendor/bourbon/addons/_ellipsis.scss b/_sass/vendor/bourbon/addons/_ellipsis.scss deleted file mode 100644 index a8ea2a4..0000000 --- a/_sass/vendor/bourbon/addons/_ellipsis.scss +++ /dev/null @@ -1,7 +0,0 @@ -@mixin ellipsis($width: 100%) { - display: inline-block; - max-width: $width; - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; -} http://git-wip-us.apache.org/repos/asf/incubator-ariatosca-website/blob/77b31961/_sass/vendor/bourbon/addons/_font-family.scss ---------------------------------------------------------------------- diff --git a/_sass/vendor/bourbon/addons/_font-family.scss b/_sass/vendor/bourbon/addons/_font-family.scss deleted file mode 100644 index 31f5d9c..0000000 --- a/_sass/vendor/bourbon/addons/_font-family.scss +++ /dev/null @@ -1,5 +0,0 @@ -$georgia: Georgia, Cambria, "Times New Roman", Times, serif; -$helvetica: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif; -$lucida-grande: "Lucida Grande", Tahoma, Verdana, Arial, sans-serif; -$monospace: "Bitstream Vera Sans Mono", Consolas, Courier, monospace; -$verdana: Verdana, Geneva, sans-serif; http://git-wip-us.apache.org/repos/asf/incubator-ariatosca-website/blob/77b31961/_sass/vendor/bourbon/addons/_hide-text.scss ---------------------------------------------------------------------- diff --git a/_sass/vendor/bourbon/addons/_hide-text.scss b/_sass/vendor/bourbon/addons/_hide-text.scss deleted file mode 100644 index fc79438..0000000 --- a/_sass/vendor/bourbon/addons/_hide-text.scss +++ /dev/null @@ -1,10 +0,0 @@ -@mixin hide-text { - overflow: hidden; - - &:before { - content: ""; - display: block; - width: 0; - height: 100%; - } -} http://git-wip-us.apache.org/repos/asf/incubator-ariatosca-website/blob/77b31961/_sass/vendor/bourbon/addons/_html5-input-types.scss ---------------------------------------------------------------------- diff --git a/_sass/vendor/bourbon/addons/_html5-input-types.scss b/_sass/vendor/bourbon/addons/_html5-input-types.scss deleted file mode 100644 index 9e9324a..0000000 --- a/_sass/vendor/bourbon/addons/_html5-input-types.scss +++ /dev/null @@ -1,86 +0,0 @@ -//************************************************************************// -// Generate a variable ($all-text-inputs) with a list of all html5 -// input types that have a text-based input, excluding textarea. -// http://diveintohtml5.org/forms.html -//************************************************************************// -$inputs-list: 'input[type="email"]', - 'input[type="number"]', - 'input[type="password"]', - 'input[type="search"]', - 'input[type="tel"]', - 'input[type="text"]', - 'input[type="url"]', - - // Webkit & Gecko may change the display of these in the future - 'input[type="color"]', - 'input[type="date"]', - 'input[type="datetime"]', - 'input[type="datetime-local"]', - 'input[type="month"]', - 'input[type="time"]', - 'input[type="week"]'; - -// Bare inputs -//************************************************************************// -$all-text-inputs: assign-inputs($inputs-list); - -// Hover Pseudo-class -//************************************************************************// -$all-text-inputs-hover: assign-inputs($inputs-list, hover); - -// Focus Pseudo-class -//************************************************************************// -$all-text-inputs-focus: assign-inputs($inputs-list, focus); - - - -// You must use interpolation on the variable: -// #{$all-text-inputs} -// #{$all-text-inputs-hover} -// #{$all-text-inputs-focus} - -// Example -//************************************************************************// -// #{$all-text-inputs}, textarea { -// border: 1px solid red; -// } - - - -//************************************************************************// -// Generate a variable ($all-button-inputs) with a list of all html5 -// input types that have a button-based input, excluding button. -//************************************************************************// -$inputs-button-list: 'input[type="button"]', - 'input[type="reset"]', - 'input[type="submit"]'; - -// Bare inputs -//************************************************************************// -$all-button-inputs: assign-inputs($inputs-button-list); - -// Hover Pseudo-class -//************************************************************************// -$all-button-inputs-hover: assign-inputs($inputs-button-list, hover); - -// Focus Pseudo-class -//************************************************************************// -$all-button-inputs-focus: assign-inputs($inputs-button-list, focus); - -// Active Pseudo-class -//************************************************************************// -$all-button-inputs-active: assign-inputs($inputs-button-list, active); - - - -// You must use interpolation on the variable: -// #{$all-button-inputs} -// #{$all-button-inputs-hover} -// #{$all-button-inputs-focus} -// #{$all-button-inputs-active} - -// Example -//************************************************************************// -// #{$all-button-inputs}, button { -// border: 1px solid red; -// } http://git-wip-us.apache.org/repos/asf/incubator-ariatosca-website/blob/77b31961/_sass/vendor/bourbon/addons/_position.scss ---------------------------------------------------------------------- diff --git a/_sass/vendor/bourbon/addons/_position.scss b/_sass/vendor/bourbon/addons/_position.scss deleted file mode 100644 index 7de7518..0000000 --- a/_sass/vendor/bourbon/addons/_position.scss +++ /dev/null @@ -1,32 +0,0 @@ -@mixin position ($position: relative, $coordinates: null null null null) { - - @if type-of($position) == list { - $coordinates: $position; - $position: relative; - } - - $coordinates: unpack($coordinates); - - $top: nth($coordinates, 1); - $right: nth($coordinates, 2); - $bottom: nth($coordinates, 3); - $left: nth($coordinates, 4); - - position: $position; - - @if ($top and $top == auto) or (type-of($top) == number) { - top: $top; - } - - @if ($right and $right == auto) or (type-of($right) == number) { - right: $right; - } - - @if ($bottom and $bottom == auto) or (type-of($bottom) == number) { - bottom: $bottom; - } - - @if ($left and $left == auto) or (type-of($left) == number) { - left: $left; - } -} http://git-wip-us.apache.org/repos/asf/incubator-ariatosca-website/blob/77b31961/_sass/vendor/bourbon/addons/_prefixer.scss ---------------------------------------------------------------------- diff --git a/_sass/vendor/bourbon/addons/_prefixer.scss b/_sass/vendor/bourbon/addons/_prefixer.scss deleted file mode 100644 index c32f502..0000000 --- a/_sass/vendor/bourbon/addons/_prefixer.scss +++ /dev/null @@ -1,45 +0,0 @@ -//************************************************************************// -// Example: @include prefixer(border-radius, $radii, webkit ms spec); -//************************************************************************// -// Variables located in /settings/_prefixer.scss - -@mixin prefixer ($property, $value, $prefixes) { - @each $prefix in $prefixes { - @if $prefix == webkit { - @if $prefix-for-webkit { - -webkit-#{$property}: $value; - } - } - @else if $prefix == moz { - @if $prefix-for-mozilla { - -moz-#{$property}: $value; - } - } - @else if $prefix == ms { - @if $prefix-for-microsoft { - -ms-#{$property}: $value; - } - } - @else if $prefix == o { - @if $prefix-for-opera { - -o-#{$property}: $value; - } - } - @else if $prefix == spec { - @if $prefix-for-spec { - #{$property}: $value; - } - } - @else { - @warn "Unrecognized prefix: #{$prefix}"; - } - } -} - -@mixin disable-prefix-for-all() { - $prefix-for-webkit: false !global; - $prefix-for-mozilla: false !global; - $prefix-for-microsoft: false !global; - $prefix-for-opera: false !global; - $prefix-for-spec: false !global; -} http://git-wip-us.apache.org/repos/asf/incubator-ariatosca-website/blob/77b31961/_sass/vendor/bourbon/addons/_retina-image.scss ---------------------------------------------------------------------- diff --git a/_sass/vendor/bourbon/addons/_retina-image.scss b/_sass/vendor/bourbon/addons/_retina-image.scss deleted file mode 100644 index 7931bd1..0000000 --- a/_sass/vendor/bourbon/addons/_retina-image.scss +++ /dev/null @@ -1,31 +0,0 @@ -@mixin retina-image($filename, $background-size, $extension: png, $retina-filename: null, $retina-suffix: _2x, $asset-pipeline: false) { - @if $asset-pipeline { - background-image: image-url("#{$filename}.#{$extension}"); - } - @else { - background-image: url("#{$filename}.#{$extension}"); - } - - @include hidpi { - @if $asset-pipeline { - @if $retina-filename { - background-image: image-url("#{$retina-filename}.#{$extension}"); - } - @else { - background-image: image-url("#{$filename}#{$retina-suffix}.#{$extension}"); - } - } - - @else { - @if $retina-filename { - background-image: url("#{$retina-filename}.#{$extension}"); - } - @else { - background-image: url("#{$filename}#{$retina-suffix}.#{$extension}"); - } - } - - background-size: $background-size; - - } -} http://git-wip-us.apache.org/repos/asf/incubator-ariatosca-website/blob/77b31961/_sass/vendor/bourbon/addons/_size.scss ---------------------------------------------------------------------- diff --git a/_sass/vendor/bourbon/addons/_size.scss b/_sass/vendor/bourbon/addons/_size.scss deleted file mode 100644 index ac705e2..0000000 --- a/_sass/vendor/bourbon/addons/_size.scss +++ /dev/null @@ -1,16 +0,0 @@ -@mixin size($size) { - $height: nth($size, 1); - $width: $height; - - @if length($size) > 1 { - $height: nth($size, 2); - } - - @if $height == auto or (type-of($height) == number and not unitless($height)) { - height: $height; - } - - @if $width == auto or (type-of($height) == number and not unitless($width)) { - width: $width; - } -} http://git-wip-us.apache.org/repos/asf/incubator-ariatosca-website/blob/77b31961/_sass/vendor/bourbon/addons/_timing-functions.scss ---------------------------------------------------------------------- diff --git a/_sass/vendor/bourbon/addons/_timing-functions.scss b/_sass/vendor/bourbon/addons/_timing-functions.scss deleted file mode 100644 index 51b2410..0000000 --- a/_sass/vendor/bourbon/addons/_timing-functions.scss +++ /dev/null @@ -1,32 +0,0 @@ -// CSS cubic-bezier timing functions. Timing functions courtesy of jquery.easie (github.com/jaukia/easie) -// Timing functions are the same as demo'ed here: http://jqueryui.com/demos/effect/easing.html - -// EASE IN -$ease-in-quad: cubic-bezier(0.550, 0.085, 0.680, 0.530); -$ease-in-cubic: cubic-bezier(0.550, 0.055, 0.675, 0.190); -$ease-in-quart: cubic-bezier(0.895, 0.030, 0.685, 0.220); -$ease-in-quint: cubic-bezier(0.755, 0.050, 0.855, 0.060); -$ease-in-sine: cubic-bezier(0.470, 0.000, 0.745, 0.715); -$ease-in-expo: cubic-bezier(0.950, 0.050, 0.795, 0.035); -$ease-in-circ: cubic-bezier(0.600, 0.040, 0.980, 0.335); -$ease-in-back: cubic-bezier(0.600, -0.280, 0.735, 0.045); - -// EASE OUT -$ease-out-quad: cubic-bezier(0.250, 0.460, 0.450, 0.940); -$ease-out-cubic: cubic-bezier(0.215, 0.610, 0.355, 1.000); -$ease-out-quart: cubic-bezier(0.165, 0.840, 0.440, 1.000); -$ease-out-quint: cubic-bezier(0.230, 1.000, 0.320, 1.000); -$ease-out-sine: cubic-bezier(0.390, 0.575, 0.565, 1.000); -$ease-out-expo: cubic-bezier(0.190, 1.000, 0.220, 1.000); -$ease-out-circ: cubic-bezier(0.075, 0.820, 0.165, 1.000); -$ease-out-back: cubic-bezier(0.175, 0.885, 0.320, 1.275); - -// EASE IN OUT -$ease-in-out-quad: cubic-bezier(0.455, 0.030, 0.515, 0.955); -$ease-in-out-cubic: cubic-bezier(0.645, 0.045, 0.355, 1.000); -$ease-in-out-quart: cubic-bezier(0.770, 0.000, 0.175, 1.000); -$ease-in-out-quint: cubic-bezier(0.860, 0.000, 0.070, 1.000); -$ease-in-out-sine: cubic-bezier(0.445, 0.050, 0.550, 0.950); -$ease-in-out-expo: cubic-bezier(1.000, 0.000, 0.000, 1.000); -$ease-in-out-circ: cubic-bezier(0.785, 0.135, 0.150, 0.860); -$ease-in-out-back: cubic-bezier(0.680, -0.550, 0.265, 1.550); http://git-wip-us.apache.org/repos/asf/incubator-ariatosca-website/blob/77b31961/_sass/vendor/bourbon/addons/_triangle.scss ---------------------------------------------------------------------- diff --git a/_sass/vendor/bourbon/addons/_triangle.scss b/_sass/vendor/bourbon/addons/_triangle.scss deleted file mode 100644 index 573954e..0000000 --- a/_sass/vendor/bourbon/addons/_triangle.scss +++ /dev/null @@ -1,83 +0,0 @@ -@mixin triangle ($size, $color, $direction) { - height: 0; - width: 0; - - $width: nth($size, 1); - $height: nth($size, length($size)); - - $foreground-color: nth($color, 1); - $background-color: if(length($color) == 2, nth($color, 2), transparent); - - @if ($direction == up) or ($direction == down) or ($direction == right) or ($direction == left) { - - $width: $width / 2; - $height: if(length($size) > 1, $height, $height/2); - - @if $direction == up { - border-left: $width solid $background-color; - border-right: $width solid $background-color; - border-bottom: $height solid $foreground-color; - - } @else if $direction == right { - border-top: $width solid $background-color; - border-bottom: $width solid $background-color; - border-left: $height solid $foreground-color; - - } @else if $direction == down { - border-left: $width solid $background-color; - border-right: $width solid $background-color; - border-top: $height solid $foreground-color; - - } @else if $direction == left { - border-top: $width solid $background-color; - border-bottom: $width solid $background-color; - border-right: $height solid $foreground-color; - } - } - - @else if ($direction == up-right) or ($direction == up-left) { - border-top: $height solid $foreground-color; - - @if $direction == up-right { - border-left: $width solid $background-color; - - } @else if $direction == up-left { - border-right: $width solid $background-color; - } - } - - @else if ($direction == down-right) or ($direction == down-left) { - border-bottom: $height solid $foreground-color; - - @if $direction == down-right { - border-left: $width solid $background-color; - - } @else if $direction == down-left { - border-right: $width solid $background-color; - } - } - - @else if ($direction == inset-up) { - border-width: $height $width; - border-style: solid; - border-color: $background-color $background-color $foreground-color; - } - - @else if ($direction == inset-down) { - border-width: $height $width; - border-style: solid; - border-color: $foreground-color $background-color $background-color; - } - - @else if ($direction == inset-right) { - border-width: $width $height; - border-style: solid; - border-color: $background-color $background-color $background-color $foreground-color; - } - - @else if ($direction == inset-left) { - border-width: $width $height; - border-style: solid; - border-color: $background-color $foreground-color $background-color $background-color; - } -} http://git-wip-us.apache.org/repos/asf/incubator-ariatosca-website/blob/77b31961/_sass/vendor/bourbon/addons/_word-wrap.scss ---------------------------------------------------------------------- diff --git a/_sass/vendor/bourbon/addons/_word-wrap.scss b/_sass/vendor/bourbon/addons/_word-wrap.scss deleted file mode 100644 index 9734a59..0000000 --- a/_sass/vendor/bourbon/addons/_word-wrap.scss +++ /dev/null @@ -1,8 +0,0 @@ -@mixin word-wrap($wrap: break-word) { - word-wrap: $wrap; - - @if $wrap == break-word { - overflow-wrap: break-word; - word-break: break-all; - } -} http://git-wip-us.apache.org/repos/asf/incubator-ariatosca-website/blob/77b31961/_sass/vendor/bourbon/css3/_animation.scss ---------------------------------------------------------------------- diff --git a/_sass/vendor/bourbon/css3/_animation.scss b/_sass/vendor/bourbon/css3/_animation.scss deleted file mode 100644 index 08c3dbf..0000000 --- a/_sass/vendor/bourbon/css3/_animation.scss +++ /dev/null @@ -1,52 +0,0 @@ -// http://www.w3.org/TR/css3-animations/#the-animation-name-property- -// Each of these mixins support comma separated lists of values, which allows different transitions for individual properties to be described in a single style rule. Each value in the list corresponds to the value at that same position in the other properties. - -// Official animation shorthand property. -@mixin animation ($animations...) { - @include prefixer(animation, $animations, webkit moz spec); -} - -// Individual Animation Properties -@mixin animation-name ($names...) { - @include prefixer(animation-name, $names, webkit moz spec); -} - - -@mixin animation-duration ($times...) { - @include prefixer(animation-duration, $times, webkit moz spec); -} - - -@mixin animation-timing-function ($motions...) { -// ease | linear | ease-in | ease-out | ease-in-out - @include prefixer(animation-timing-function, $motions, webkit moz spec); -} - - -@mixin animation-iteration-count ($values...) { -// infinite | <number> - @include prefixer(animation-iteration-count, $values, webkit moz spec); -} - - -@mixin animation-direction ($directions...) { -// normal | alternate - @include prefixer(animation-direction, $directions, webkit moz spec); -} - - -@mixin animation-play-state ($states...) { -// running | paused - @include prefixer(animation-play-state, $states, webkit moz spec); -} - - -@mixin animation-delay ($times...) { - @include prefixer(animation-delay, $times, webkit moz spec); -} - - -@mixin animation-fill-mode ($modes...) { -// none | forwards | backwards | both - @include prefixer(animation-fill-mode, $modes, webkit moz spec); -} http://git-wip-us.apache.org/repos/asf/incubator-ariatosca-website/blob/77b31961/_sass/vendor/bourbon/css3/_appearance.scss ---------------------------------------------------------------------- diff --git a/_sass/vendor/bourbon/css3/_appearance.scss b/_sass/vendor/bourbon/css3/_appearance.scss deleted file mode 100644 index 3eb16e4..0000000 --- a/_sass/vendor/bourbon/css3/_appearance.scss +++ /dev/null @@ -1,3 +0,0 @@ -@mixin appearance ($value) { - @include prefixer(appearance, $value, webkit moz ms o spec); -} http://git-wip-us.apache.org/repos/asf/incubator-ariatosca-website/blob/77b31961/_sass/vendor/bourbon/css3/_backface-visibility.scss ---------------------------------------------------------------------- diff --git a/_sass/vendor/bourbon/css3/_backface-visibility.scss b/_sass/vendor/bourbon/css3/_backface-visibility.scss deleted file mode 100644 index 1161fe6..0000000 --- a/_sass/vendor/bourbon/css3/_backface-visibility.scss +++ /dev/null @@ -1,6 +0,0 @@ -//************************************************************************// -// Backface-visibility mixin -//************************************************************************// -@mixin backface-visibility($visibility) { - @include prefixer(backface-visibility, $visibility, webkit spec); -} http://git-wip-us.apache.org/repos/asf/incubator-ariatosca-website/blob/77b31961/_sass/vendor/bourbon/css3/_background-image.scss ---------------------------------------------------------------------- diff --git a/_sass/vendor/bourbon/css3/_background-image.scss b/_sass/vendor/bourbon/css3/_background-image.scss deleted file mode 100644 index 6abe88b..0000000 --- a/_sass/vendor/bourbon/css3/_background-image.scss +++ /dev/null @@ -1,42 +0,0 @@ -//************************************************************************// -// Background-image property for adding multiple background images with -// gradients, or for stringing multiple gradients together. -//************************************************************************// - -@mixin background-image($images...) { - $webkit-images: (); - $spec-images: (); - - @each $image in $images { - $webkit-image: (); - $spec-image: (); - - @if (type-of($image) == string) { - $url-str: str-slice($image, 0, 3); - $gradient-type: str-slice($image, 0, 6); - - @if $url-str == "url" { - $webkit-image: $image; - $spec-image: $image; - } - - @else if $gradient-type == "linear" { - $gradients: _linear-gradient-parser($image); - $webkit-image: map-get($gradients, webkit-image); - $spec-image: map-get($gradients, spec-image); - } - - @else if $gradient-type == "radial" { - $gradients: _radial-gradient-parser($image); - $webkit-image: map-get($gradients, webkit-image); - $spec-image: map-get($gradients, spec-image); - } - } - - $webkit-images: append($webkit-images, $webkit-image, comma); - $spec-images: append($spec-images, $spec-image, comma); - } - - background-image: $webkit-images; - background-image: $spec-images; -} http://git-wip-us.apache.org/repos/asf/incubator-ariatosca-website/blob/77b31961/_sass/vendor/bourbon/css3/_background.scss ---------------------------------------------------------------------- diff --git a/_sass/vendor/bourbon/css3/_background.scss b/_sass/vendor/bourbon/css3/_background.scss deleted file mode 100644 index 9bce930..0000000 --- a/_sass/vendor/bourbon/css3/_background.scss +++ /dev/null @@ -1,55 +0,0 @@ -//************************************************************************// -// Background property for adding multiple backgrounds using shorthand -// notation. -//************************************************************************// - -@mixin background($backgrounds...) { - $webkit-backgrounds: (); - $spec-backgrounds: (); - - @each $background in $backgrounds { - $webkit-background: (); - $spec-background: (); - $background-type: type-of($background); - - @if $background-type == string or list { - $background-str: if($background-type == list, nth($background, 1), $background); - - $url-str: str-slice($background-str, 0, 3); - $gradient-type: str-slice($background-str, 0, 6); - - @if $url-str == "url" { - $webkit-background: $background; - $spec-background: $background; - } - - @else if $gradient-type == "linear" { - $gradients: _linear-gradient-parser("#{$background}"); - $webkit-background: map-get($gradients, webkit-image); - $spec-background: map-get($gradients, spec-image); - } - - @else if $gradient-type == "radial" { - $gradients: _radial-gradient-parser("#{$background}"); - $webkit-background: map-get($gradients, webkit-image); - $spec-background: map-get($gradients, spec-image); - } - - @else { - $webkit-background: $background; - $spec-background: $background; - } - } - - @else { - $webkit-background: $background; - $spec-background: $background; - } - - $webkit-backgrounds: append($webkit-backgrounds, $webkit-background, comma); - $spec-backgrounds: append($spec-backgrounds, $spec-background, comma); - } - - background: $webkit-backgrounds; - background: $spec-backgrounds; -} http://git-wip-us.apache.org/repos/asf/incubator-ariatosca-website/blob/77b31961/_sass/vendor/bourbon/css3/_border-image.scss ---------------------------------------------------------------------- diff --git a/_sass/vendor/bourbon/css3/_border-image.scss b/_sass/vendor/bourbon/css3/_border-image.scss deleted file mode 100644 index e338c2d..0000000 --- a/_sass/vendor/bourbon/css3/_border-image.scss +++ /dev/null @@ -1,59 +0,0 @@ -@mixin border-image($borders...) { - $webkit-borders: (); - $spec-borders: (); - - @each $border in $borders { - $webkit-border: (); - $spec-border: (); - $border-type: type-of($border); - - @if $border-type == string or list { - $border-str: if($border-type == list, nth($border, 1), $border); - - $url-str: str-slice($border-str, 0, 3); - $gradient-type: str-slice($border-str, 0, 6); - - @if $url-str == "url" { - $webkit-border: $border; - $spec-border: $border; - } - - @else if $gradient-type == "linear" { - $gradients: _linear-gradient-parser("#{$border}"); - $webkit-border: map-get($gradients, webkit-image); - $spec-border: map-get($gradients, spec-image); - } - - @else if $gradient-type == "radial" { - $gradients: _radial-gradient-parser("#{$border}"); - $webkit-border: map-get($gradients, webkit-image); - $spec-border: map-get($gradients, spec-image); - } - - @else { - $webkit-border: $border; - $spec-border: $border; - } - } - - @else { - $webkit-border: $border; - $spec-border: $border; - } - - $webkit-borders: append($webkit-borders, $webkit-border, comma); - $spec-borders: append($spec-borders, $spec-border, comma); - } - - -webkit-border-image: $webkit-borders; - border-image: $spec-borders; - border-style: solid; -} - -//Examples: -// @include border-image(url("image.png")); -// @include border-image(url("image.png") 20 stretch); -// @include border-image(linear-gradient(45deg, orange, yellow)); -// @include border-image(linear-gradient(45deg, orange, yellow) stretch); -// @include border-image(linear-gradient(45deg, orange, yellow) 20 30 40 50 stretch round); -// @include border-image(radial-gradient(top, cover, orange, yellow, orange)); http://git-wip-us.apache.org/repos/asf/incubator-ariatosca-website/blob/77b31961/_sass/vendor/bourbon/css3/_border-radius.scss ---------------------------------------------------------------------- diff --git a/_sass/vendor/bourbon/css3/_border-radius.scss b/_sass/vendor/bourbon/css3/_border-radius.scss deleted file mode 100644 index 7c17190..0000000 --- a/_sass/vendor/bourbon/css3/_border-radius.scss +++ /dev/null @@ -1,22 +0,0 @@ -//************************************************************************// -// Shorthand Border-radius mixins -//************************************************************************// -@mixin border-top-radius($radii) { - @include prefixer(border-top-left-radius, $radii, spec); - @include prefixer(border-top-right-radius, $radii, spec); -} - -@mixin border-bottom-radius($radii) { - @include prefixer(border-bottom-left-radius, $radii, spec); - @include prefixer(border-bottom-right-radius, $radii, spec); -} - -@mixin border-left-radius($radii) { - @include prefixer(border-top-left-radius, $radii, spec); - @include prefixer(border-bottom-left-radius, $radii, spec); -} - -@mixin border-right-radius($radii) { - @include prefixer(border-top-right-radius, $radii, spec); - @include prefixer(border-bottom-right-radius, $radii, spec); -} http://git-wip-us.apache.org/repos/asf/incubator-ariatosca-website/blob/77b31961/_sass/vendor/bourbon/css3/_box-sizing.scss ---------------------------------------------------------------------- diff --git a/_sass/vendor/bourbon/css3/_box-sizing.scss b/_sass/vendor/bourbon/css3/_box-sizing.scss deleted file mode 100644 index f07e1d4..0000000 --- a/_sass/vendor/bourbon/css3/_box-sizing.scss +++ /dev/null @@ -1,4 +0,0 @@ -@mixin box-sizing ($box) { -// content-box | border-box | inherit - @include prefixer(box-sizing, $box, webkit moz spec); -} http://git-wip-us.apache.org/repos/asf/incubator-ariatosca-website/blob/77b31961/_sass/vendor/bourbon/css3/_calc.scss ---------------------------------------------------------------------- diff --git a/_sass/vendor/bourbon/css3/_calc.scss b/_sass/vendor/bourbon/css3/_calc.scss deleted file mode 100644 index 94d7e4c..0000000 --- a/_sass/vendor/bourbon/css3/_calc.scss +++ /dev/null @@ -1,4 +0,0 @@ -@mixin calc($property, $value) { - #{$property}: -webkit-calc(#{$value}); - #{$property}: calc(#{$value}); -} http://git-wip-us.apache.org/repos/asf/incubator-ariatosca-website/blob/77b31961/_sass/vendor/bourbon/css3/_columns.scss ---------------------------------------------------------------------- diff --git a/_sass/vendor/bourbon/css3/_columns.scss b/_sass/vendor/bourbon/css3/_columns.scss deleted file mode 100644 index 96f601c..0000000 --- a/_sass/vendor/bourbon/css3/_columns.scss +++ /dev/null @@ -1,47 +0,0 @@ -@mixin columns($arg: auto) { -// <column-count> || <column-width> - @include prefixer(columns, $arg, webkit moz spec); -} - -@mixin column-count($int: auto) { -// auto || integer - @include prefixer(column-count, $int, webkit moz spec); -} - -@mixin column-gap($length: normal) { -// normal || length - @include prefixer(column-gap, $length, webkit moz spec); -} - -@mixin column-fill($arg: auto) { -// auto || length - @include prefixer(column-fill, $arg, webkit moz spec); -} - -@mixin column-rule($arg) { -// <border-width> || <border-style> || <color> - @include prefixer(column-rule, $arg, webkit moz spec); -} - -@mixin column-rule-color($color) { - @include prefixer(column-rule-color, $color, webkit moz spec); -} - -@mixin column-rule-style($style: none) { -// none | hidden | dashed | dotted | double | groove | inset | inset | outset | ridge | solid - @include prefixer(column-rule-style, $style, webkit moz spec); -} - -@mixin column-rule-width ($width: none) { - @include prefixer(column-rule-width, $width, webkit moz spec); -} - -@mixin column-span($arg: none) { -// none || all - @include prefixer(column-span, $arg, webkit moz spec); -} - -@mixin column-width($length: auto) { -// auto || length - @include prefixer(column-width, $length, webkit moz spec); -} http://git-wip-us.apache.org/repos/asf/incubator-ariatosca-website/blob/77b31961/_sass/vendor/bourbon/css3/_filter.scss ---------------------------------------------------------------------- diff --git a/_sass/vendor/bourbon/css3/_filter.scss b/_sass/vendor/bourbon/css3/_filter.scss deleted file mode 100644 index 8560d77..0000000 --- a/_sass/vendor/bourbon/css3/_filter.scss +++ /dev/null @@ -1,5 +0,0 @@ -@mixin filter($function: none) { - // <filter-function> [<filter-function]* | none - @include prefixer(filter, $function, webkit spec); -} -
