diff --git a/.gitignore b/.gitignore deleted file mode 100644 index 2f47aa8..0000000 --- a/.gitignore +++ /dev/null @@ -1,7 +0,0 @@ -.DS_Store -node_modules -npm-debug.log -.tmp -dist -.grunt -styleguide/index.html diff --git a/.hound.yml b/.hound.yml deleted file mode 100644 index a36dade..0000000 --- a/.hound.yml +++ /dev/null @@ -1,7 +0,0 @@ -scss: - enabled: true - config_file: .scss-lint.yml -ruby: - enabled: false -javascript: - enabled: false diff --git a/.scss-lint.yml b/.scss-lint.yml deleted file mode 100644 index ce2a8fc..0000000 --- a/.scss-lint.yml +++ /dev/null @@ -1,186 +0,0 @@ -scss_files: 'src/scss/**/*.scss' -exclude: - - 'src/scss/cdb-utilities/normalize.scss' - - 'src/scss/cdb-utilities/reset.scss' - - 'src/scss/cdb-utilities/helpers.scss' - - 'src/scss/utilities/reset.scss' - - 'src/scss/variables/_sizes.scss' -linters: - BangFormat: - enabled: true - space_before_bang: true - space_after_bang: false - BemDepthf: - enabled: true - max_elements: 3 - BorderZero: - enabled: false - convention: zero - ColorKeyword: - enabled: true - severity: warning - ColorVariable: - enabled: false - severity: warning - Comment: - enabled: false - Compass::PropertyWithMixin: - enabled: false - DebugStatement: - enabled: true - DeclarationOrder: - enabled: true - DisableLinterReason: - enabled: false - DuplicateProperty: - enabled: true - ElsePlacement: - enabled: true - style: same_line - EmptyLineBetweenBlocks: - enabled: false - EmptyRule: - enabled: true - FinalNewline: - enabled: true - present: true - HexLength: - enabled: true - style: short - HexNotation: - enabled: true - style: uppercase - HexValidation: - enabled: true - IdSelector: - enabled: true - ImportantRule: - enabled: true - ImportPath: - enabled: true - leading_underscore: false - filename_extension: false - Indentation: - enabled: true - allow_non_nested_indentation: false - character: space - width: 2 - severity: warning - LeadingZero: - enabled: true - style: include_zero - MergeableSelector: - enabled: true - force_nesting: false - NameFormat: - enabled: true - # Valid cases - # - hello - # - helloMates - # - hello-buddy - # - hello-buddyOne - convention: '([a-z]*)([A-Z]+[a-z]*)*-{0,2}([a-z]([a-z]*[A-Z]*[a-z]*))(\.[a-z]+-[a-z]*[A-Z]*[a-z]*)?(:.*)*' - NestingDepth: - enabled: true - max_depth: 3 - severity: warning - PlaceholderInExtend: - enabled: false - PropertyCount: - enabled: true - include_nested: false - max_properties: 18 - severity: warning - PropertySortOrder: - enabled: true - order: smacss - ignore_unspecified: true - severity: warning - separate_groups: false - PropertySpelling: - enabled: true - extra_properties: [] - PropertyUnits: - global: ['em', 'rem', '%', 'px', 's', 'ms', 'vh'] # Allow relative units globally - properties: - border: ['px'] - line-height: ['px', ''] - margin: ['em', 'px', '%'] - QualifyingElement: - enabled: true - allow_element_with_attribute: true - allow_element_with_class: false - allow_element_with_id: false - severity: warning - SelectorDepth: - enabled: true - max_depth: 3 - severity: warning - SelectorFormat: - enabled: true - # Valid cases - # - 0..100% - # - i | em | strong | div | span | ... - # - CDB-Logo - # - CDB-LogoWadus - # - CDB-Logo--cartofante - # - CDB-LogoWadus--cartofante - # - CDB-Logo--cartofantePleased - # - CDB-Logo--cartofanteURL - # - CDB-Logo-oh - # - CDB-Logo-oh:hover - # - CDB-Logo:after - # - CDB-Logo.is-state - convention: '([0-9]+%)|([a-z]+(:.*)*)|CDB-([A-Z]+[a-z]*)([A-Z]+[a-z]*)*-{0,2}([a-z]([a-z]*[A-Z]*[a-z]*))(\.[a-z]+-[a-z]*[A-Z]*[a-z]*)?(:.*)*' - ignored_types: ['id'] - Shorthand: - enabled: true - severity: warning - SingleLinePerProperty: - enabled: true - allow_single_line_rule_sets: false - SingleLinePerSelector: - enabled: true - SpaceAfterComma: - enabled: true - SpaceAfterPropertyColon: - enabled: true - style: one_space - SpaceAfterPropertyName: - enabled: true - SpaceAfterVariableName: - enabled: true - SpaceAroundOperator: - enabled: true - style: one_space - SpaceBeforeBrace: - enabled: true - style: space - allow_single_line_padding: false - SpaceBetweenParens: - enabled: true - spaces: 0 - StringQuotes: - enabled: true - style: single_quotes - TrailingSemicolon: - enabled: true - severity: warning - TrailingZero: - enabled: true - UnnecessaryMantissa: - enabled: true - UnnecessaryParentReference: - enabled: true - UrlFormat: - enabled: true - UrlQuotes: - enabled: true - VariableForProperty: - enabled: false - properties: [] - VendorPrefixes: - enabled: false - ZeroUnit: - enabled: true - severity: warning diff --git a/.styleguide b/.styleguide deleted file mode 100644 index f85e8d7..0000000 --- a/.styleguide +++ /dev/null @@ -1,26 +0,0 @@ -{ - "sgComment": "SG", - "srcFolder": "./src", - "outputFile": "./dist/styleguide/index.html", - "templateFile": "./styleguide/_template.html", - "themeFile": "./styleguide/theme.css", - "highlightFolder": "./node_modules/highlight.js/styles", - "highlightStyle": "github", - "excludeDirs": [ - "target", - "node_modules" - ], - "fileExtensions": { - "scss": true, - "sass": true, - "css": true, - "less": true - }, - "walkerOptions": { - "followLinks": false - }, - "customVars": { - "sampleVar": "Hello from customVars!" - }, - "jqFile": "./node_modules/jquery/dist/jquery.js" -} diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 9c8a9d7..0000000 --- a/.travis.yml +++ /dev/null @@ -1,18 +0,0 @@ -cache: false -language: node_js -node_js: - - "4.1" - -install: - - npm install - -before_script: - - npm install -g grunt-cli - -script: - - grunt build - -notifications: - email: - on_success: never - on_failure: change diff --git a/Gruntfile.js b/Gruntfile.js deleted file mode 100644 index af9f633..0000000 --- a/Gruntfile.js +++ /dev/null @@ -1,44 +0,0 @@ -module.exports = function (grunt) { - require('load-grunt-tasks')(grunt); - - grunt.initConfig({ - concat: require('./tasks/concat'), - connect: require('./tasks/connect'), - clean: require('./tasks/clean'), - sass: require('./tasks/sass'), - cssmin: require('./tasks/cssmin'), - copy: require('./tasks/copy'), - shell: require('./tasks/shell'), - watch: require('./tasks/watch'), - 'gh-pages': require('./tasks/gh-pages') - }); - - var baseTasks = [ - 'clean', - 'shell:generateFont', - 'sass', - 'concat', - 'cssmin', - 'copy', - 'shell' - ]; - - var generateFontTask = baseTasks.concat([ - 'shell:generateFont' - ]); - - var devTasks = baseTasks.concat([ - 'connect', - 'watch:scss' - ]); - - grunt.event.on('watch', function (action, filepath) { - grunt.task.run('shell:style'); - }); - - grunt.registerTask('dev', devTasks); - grunt.registerTask('generate-font', generateFontTask); - grunt.registerTask('build', baseTasks); - grunt.registerTask('default', baseTasks); - grunt.registerTask('publish', ['build', 'gh-pages']); -}; diff --git a/Gulpfile.js b/Gulpfile.js deleted file mode 100644 index 5fc6b5d..0000000 --- a/Gulpfile.js +++ /dev/null @@ -1,28 +0,0 @@ -var gulp = require('gulp'); -var iconfont = require('gulp-iconfont'); -var iconfontCss = require('gulp-iconfont-css'); - -String.prototype.toCamelCase = function() { - return this.replace(/^([A-Z])|\s(\w)/g, function(match, p1, p2, offset) { - if (p2) return p2.toUpperCase(); - return p1.toLowerCase(); - }); -}; - -gulp.task('default', function(){ - gulp.src(['./icon-font/svgs/*.svg']) - - .pipe(iconfontCss({ - fontName: 'cartoIcon', - path: './icon-font/template.jst.ejs', - targetPath: '../scss/cdb-icon-font.scss', - fontPath: '../../fonts/' - })) - - .pipe(iconfont({ - fontName: 'cartoIcon', - appendCodepoints: true - })) - - .pipe(gulp.dest('src/fonts/')); -}); diff --git a/Icon-Fonting.md b/Icon-Fonting.md deleted file mode 100644 index fae062b..0000000 --- a/Icon-Fonting.md +++ /dev/null @@ -1,34 +0,0 @@ -How to make changes in the CartoDB icon font --------------------------------------------- - -If you want to edit, add or remove any icon in our CartoDB font, you should follow these steps: - -- Check you have [Sketch](http://bohemiancoding.com/sketch/) last version. -- Open [font.sketch](http://github.com/CartoDB/CartoAssets/blob/master/icon-font/font.sketch) file and make your changes. - -### Rules for the icons: -- Size should have at max 500px of width/height. -- Place the icon accordingly with the grid. -- Icons should be completely black. -- Group the icon if it has several parts. -- Make icons exportable to SVG. -- Name your icon (layer/group) according to the pattern `icon-font_xx_Name`, where xx is a unique integer (increase it for each new icon). - -### When you're done with changes - -- Select all the icons, and export them to `app/assets/fonts/icon-font/svgs` folder (option should be visible in the bottom corner in your Sketch app): - - ![screen shot 2015-01-16 at 11 40 36](https://cloud.githubusercontent.com/assets/978461/5774986/93dc90e8-9d74-11e4-8064-a478e55d392b.png) - - Take into account that ```svgs``` folder is ignored. -- Open your terminal app and go to the CartoDB root folder. -- Install your node dependencies: `npm install` -- Now we will generate the new icon fonts + stylesheet. Just run: `./node_modules/.bin/gulp` -- Check that your `icon-font.css.scss` and the `cartoIcon` fonts have been edited: - - ![screen shot 2015-01-16 at 11 02 53](https://cloud.githubusercontent.com/assets/978461/5775004/acf10faa-9d74-11e4-893c-790da626d894.png) - -All done! - - -### Troubleshooting - -- **Q**: "I ran `gulp` but the `icon-font.css.scss` file wasn't generated/updated!" - **A**: Make sure that the folder `icon-font/svgs` contain the `.svg` files. diff --git a/LICENSE-MIT b/LICENSE-MIT deleted file mode 100644 index 2653d49..0000000 --- a/LICENSE-MIT +++ /dev/null @@ -1,22 +0,0 @@ -Copyright (c) 2016 xavijam - -Permission is hereby granted, free of charge, to any person -obtaining a copy of this software and associated documentation -files (the "Software"), to deal in the Software without -restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the -Software is furnished to do so, subject to the following -conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES -OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT -HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, -WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR -OTHER DEALINGS IN THE SOFTWARE. diff --git a/README.md b/README.md deleted file mode 100644 index d209f9a..0000000 --- a/README.md +++ /dev/null @@ -1,46 +0,0 @@ -# CartoAssets [![NPM version](http://img.shields.io/npm/v/cartoassets.svg)](https://www.npmjs.org/package/cartoassets) - -> Share frontend assets between different CartoDB repositories - -### Installation -As easy as: -- ```npm install --global grunt-cli``` [Grunt installation](http://gruntjs.com/getting-started) -- ```npm install --global gulp-cli``` [Gulp installation](https://github.com/gulpjs/gulp) -- ```npm install -g markdown-styleguide-generator``` [StyleGenerator installation](https://www.npmjs.com/package/markdown-styleguide-generator#install) -- ```npm install``` - -### Build -If you want to use any of the CartoAssets components, after the installation just run: -- ```grunt build``` - -### Development -It will generate a UI documentation about the components in this repository: -- ```grunt dev``` - -If you want to check the documenation, it is generated in the ```dist``` folder. - -### How to add/update the icon font - -See this [instructions](https://github.com/CartoDB/CartoAssets/blob/master/Icon-Fonting.md) - -### Publish a new version in NPM -In order to publish a new version of CartoAssets you need to: - -- Change version of the package. -- Be a collaborator of the [npm module](https://www.npmjs.com/cartoassets) (Send an email to xavijam[at]cartodb.com). - -If you have these previous steps done: - -- ```npm publish``` - -### Publish CartoAssets styleguide and documentation in GH-Pages -Just run this command: - -- ```grunt publish``` - - -### Browser support - -![Chrome](https://raw.github.com/alrra/browser-logos/master/chrome/chrome_48x48.png) | ![Firefox](https://raw.github.com/alrra/browser-logos/master/firefox/firefox_48x48.png) | ![IE](https://raw.github.com/alrra/browser-logos/master/internet-explorer/internet-explorer_48x48.png) | ![Opera](https://raw.github.com/alrra/browser-logos/master/opera/opera_48x48.png) | ![Safari](https://raw.github.com/alrra/browser-logos/master/safari/safari_48x48.png) ---- | --- | --- | --- | --- | -31+ ✔ | 38+ ✔ | 10+ ✔ | 31+ ✔ | 8+ ✔ | diff --git a/css/cartostyles.css b/css/cartostyles.css index 642616c..6fa8018 100644 --- a/css/cartostyles.css +++ b/css/cartostyles.css @@ -1 +1 @@ -.CDB-OptionInput-content:hover,a{text-decoration:none}.CDB-Tag.CDB-Tag--opaque,.u-upperCase{text-transform:uppercase}.CDB-Dropdown-optionsElement,.CDB-HeaderInfo-titleText,.u-ellipsis{text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.CDB-AvatarList{padding-left:12px}.CDB-AvatarList-item{display:inline-block;margin-left:-12px;border:2px solid #fff;border-radius:50%;vertical-align:middle}.CDB-AvatarList-itemMore{display:inline-block;margin-left:-12px;padding:2px 6px;border-left:2px solid #fff;border-radius:50px;background:#EEE}.CDB-Box-modalHeaderItem,.CDB-BoxLoader-item{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex}.CDB-AvatarList-itemMedia{width:16px;height:16px;border-radius:50%}.CDB-Box-modal{border:1px solid #DDD;border-radius:4px;background:#fff;box-shadow:0 8px 16px 0 rgba(0,0,0,.16)}.CDB-Box-modalHeader{background:#F2F6F9}.CDB-Box-modalHeaderItem{display:flex;-webkit-align-items:center;-moz-align-items:center;-ms-align-items:center;align-items:center;-ms-flex-align:center;padding:12px 16px;border-bottom:1px solid #DDD}.CDB-BoxLoader{padding:0 24px;border-top:1px solid #DDD}.CDB-BoxLoader-inner{padding:12px 0;border-top:1px solid #DDD}.CDB-BoxLoader-inner:first-child{border-top:0}.CDB-BoxLoader-item{display:flex;padding:8px 0;color:#636D72}.CDB-ColorBarContainer,.CDB-InfoBox-footer{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex}.CDB-BoxLoader-item.is-working{color:#979EA1}.CDB-BoxLoader-info{-webkit-box-flex:1;-moz-box-flex:1;-webkit-flex:1;-ms-flex:1;flex:1;padding-right:16px}.CDB-InfoBox{padding:12px 16px;border-radius:4px;background:#F9F9F9}.CDB-InfoBox.is-alert{background:rgba(255,255,192,.6)}.CDB-InfoBox-footer{display:flex;-webkit-align-items:center;-moz-align-items:center;-ms-align-items:center;align-items:center;-ms-flex-align:center}.CDB-InfoBox-footerItem{-webkit-box-flex:1;-moz-box-flex:1;-webkit-flex:1;-ms-flex:1;flex:1}.CDB-InfoBox-footerItem--right{text-align:right}.CDB-Button{padding:9px 20px;border:1px solid transparent;border-radius:4px;cursor:pointer;box-sizing:border-box}.CDB-Button .CDB-Button-Text{display:block}.CDB-Button.is-disabled{cursor:default;opacity:.24}.CDB-Button--small{padding:4px 12px}.CDB-Button--big{padding:12px 20px}.CDB-Button--icon{padding:7px 9px}.CDB-Button--primary{background:#3AA9E3;color:#fff}.CDB-Button--primary:hover{background:#1e97d6}.CDB-Button--primary:active{background:#197eb2}.CDB-Button--primary.is-disabled:active,.CDB-Button--primary.is-disabled:hover{background:#3AA9E3}.CDB-Button--secondary{border:1px solid #3AA9E3;color:#3AA9E3}.CDB-Button--secondary:hover{background:rgba(58,169,227,.08)}.CDB-Button--secondary:active{background:#3AA9E3;color:#fff}.CDB-Button--secondary.is-disabled:active,.CDB-Button--secondary.is-disabled:hover{background:#fff}.box{display:inline-block;width:120px;height:64px;margin:0 24px 24px 0}.Color-Blue{background:#3AA9E3}.Color-White{border:1px solid #E5E5E5;background:#fff}.Color-Dark{background:#000}.Color-MainDark{background:#2E3C43}.Color-SecondaryDark{background:#282C2F}.Color-SecondaryBackground{background:#F2F6F9}.Color-ThirdBackground{background:#F9F9F9}.Color-HoverLine{background:#AAA}.Color-MainLine{background:#DDD}.Color-SecondaryLine{background:#EEE}.Color-Type02{background:#636D72}.Color-Type03{background:#979EA1}.Color-Type04{background:#CBCED0}.Color-Higlight{background:#9DE0AD}.Color-Alert{background:#F19243}.Color-Public{background:#9BC63B}.Color-Link{background:#FEB100}.Color-Password{background:#FB7B23}.Color-Error{background:#F15743}.CDB-Checkbox{position:absolute;width:16px;height:16px;opacity:0;vertical-align:middle;z-index:1}.CDB-Checkbox-face{position:relative;width:16px;height:16px;border:1px solid #DDD;border-radius:3px;background:#fff;cursor:pointer;box-sizing:border-box}.CDB-Checkbox-face::after,.CDB-Checkbox-face::before{display:block;position:absolute;bottom:3px;width:2px;border-radius:1px;background:#EEE;content:''}.CDB-Checkbox-face::before{right:4px;height:8px;transform:rotate(45deg)}.CDB-Checkbox-face::after{left:4px;height:6px;transform:rotate(-45deg)}.CDB-Checkbox:checked+.CDB-Checkbox-face{border:1px solid #3AA9E3;background:#3AA9E3}.CDB-Checkbox:checked+.CDB-Checkbox-face::after,.CDB-Checkbox:checked+.CDB-Checkbox-face::before{background:#fff}.CDB-Checkbox:disabled+.CDB-Checkbox-face{border:1px solid #EEE;background:#F9F9F9}.CDB-Checkbox:disabled+.CDB-Checkbox-face::after,.CDB-Checkbox:disabled+.CDB-Checkbox-face::before{background:#fff}.CDB-Checkbox:disabled:hover+.CDB-Checkbox-face{border:1px solid #EEE}.CDB-Checkbox:checked:hover+.CDB-Checkbox-face,.CDB-Checkbox:focus+.CDB-Checkbox-face{border:1px solid #3AA9E3}.CDB-Checkbox:hover+.CDB-Checkbox-face{border:1px solid #AAA}.CDB-ColorBarContainer{display:flex;-webkit-flex-direction:row;-moz-flex-direction:row;-ms-flex-direction:row;flex-direction:row;width:100%}.CDB-ColorBar{position:relative;width:100%;height:6px;border:1px solid rgba(0,0,0,.2);border-radius:6px;box-sizing:border-box}.CDB-ColorBar:last-child{margin-right:0}.CDB-ColorBar-gradient{border:0}.CDB-ColorBar-gradient::after{position:absolute;top:0;right:0;bottom:0;left:0;border:1px solid rgba(0,0,0,.2);border-radius:6px;content:''}.CDB-ColorBar.CDB-ColorBar--spaceMedium{margin-right:4px}.CDB-ColorBar.CDB-ColorBar--spaceMedium:last-child{margin-right:0}.CDB-ColorBar.CDB-ColorBar--spaceless{border-width:1px 0;border-radius:0}.CDB-ColorBar.CDB-ColorBar--spaceless:first-child{border-width:1px 0 1px 1px;border-radius:6px 0 0 6px}.CDB-ColorBar.CDB-ColorBar--spaceless:last-child{border-width:1px 1px 1px 0;border-radius:0 6px 6px 0}.CDB-ColorBar.CDB-ColorBar--spaceSmall{margin-right:2px;border-radius:2px}.CDB-ColorBar.CDB-ColorBar--spaceSmall:first-child{border-radius:6px 3px 3px 6px}.CDB-ColorBar.CDB-ColorBar--spaceSmall:last-child{margin-right:0;border-radius:3px 6px 6px 3px}.CDB-DropdownContainer{position:relative;height:250px}.CDB-Dropdown{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-flex-direction:row;-moz-flex-direction:row;-ms-flex-direction:row;flex-direction:row;position:absolute;top:40px;max-height:200px}.CDB-Dropdown-calculations{padding:14px;border-right:1px solid #DDD;border-radius:4px 0 0 4px;background-color:#F2F6F9;box-sizing:border-box}.CDB-Dropdown-calculationsElement{margin-bottom:16px;color:#2E3C43;font-size:10px}.CDB-Dropdown-calculationsElement:last-child{margin-bottom:0}.CDB-Dropdown-options{width:160px;border-radius:0 4px 4px 0;background-color:#fff;vertical-align:top}.CDB-InputText,.CDB-InputTextPlain{width:100%;box-sizing:border-box;font-size:12px;line-height:16px}.CDB-Dropdown-optionsElement{padding:12px 10px;border-bottom:1px solid #DDD;color:#3AA9E3}.CDB-Dropdown-optionsElement:last-child{border-bottom:0}.CDB-Dropdown-optionsElement:hover{background-color:rgba(157,224,173,.2);color:#2E3C43;cursor:pointer}.CDB-Dropdown-optionsElement.is-selected{color:#2E3C43}.CDB-Dropdown-optionsElement.is-disabled,.CDB-InputText.is-empty{color:#CBCED0}.CDB-Dropdown-optionsElement.is-disabled:hover{background-color:transparent;cursor:default}.CDB-Fieldset,.CDB-OptionInput-container{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex}.CDB-InputText{padding:7px 8px 6px;border:1px solid #DDD;border-radius:4px}.CDB-InputText.is-cursor{cursor:pointer}.CDB-InputText:hover{border:1px solid #AAA}.CDB-InputText:focus{border:1px solid #3AA9E3}.CDB-InputText.is-disabled,.CDB-InputText:disabled{border-color:#EEE;background:#F9F9F9;cursor:default}.CDB-InputText.has-error{border:1px solid rgba(241,87,67,.48);background:rgba(241,87,67,.04);color:#F15743}.CDB-InputTextPlain{border:0;background:0 0}.CDB-FieldError .CDB-InputText{border:1px solid rgba(241,87,67,.48);background:rgba(241,87,67,.04);color:#F15743}.CDB-Legend{width:96px}.CDB-Legend--big{width:192px}.CDB-Fieldset{display:flex;-webkit-align-items:center;-moz-align-items:center;-ms-align-items:center;align-items:center;-ms-flex-align:center}.CDB-Fieldset-block{width:100%}.CDB-OptionInput{width:100%;height:32px;border:1px solid #DDD;border-radius:4px;box-sizing:border-box;vertical-align:middle}.CDB-OptionInput:hover{border:1px solid #AAA}.CDB-OptionInput.is-active,.CDB-OptionInput:focus{border:1px solid #3AA9E3}.CDB-OptionInput-container{display:flex;-webkit-align-content:center;-moz-align-content:center;-ms-align-content:center;align-content:center;-webkit-align-items:center;-moz-align-items:center;-ms-align-items:center;align-items:center;-ms-flex-align:center;margin:0 8px}.CDB-OptionInput-container--noMargin{margin:0}.CDB-OptionInput-item{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-align-items:center;-moz-align-items:center;-ms-align-items:center;align-items:center;-webkit-align-content:center;-moz-align-content:center;-ms-align-content:center;align-content:center;-ms-flex-align:center;width:auto;height:100%;font-size:12px;box-sizing:content-box}.CDB-OptionInput-item::after{padding:0 6px;color:#CBCED0;content:'·'}.CDB-OptionInput-item--noSeparator::after,.CDB-Radio-face::before,.CDB-Toggle+.CDB-ToggleFace::before{content:''}.CDB-OptionInput-item:last-child{width:100%}.CDB-OptionInput-item:last-child::after{display:none}.CDB-OptionInput-content{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-align-items:center;-moz-align-items:center;-ms-align-items:center;align-items:center;-ms-flex-align:center;height:100%;color:#2E3C43;box-sizing:content-box;white-space:nowrap}.CDB-HeaderNumeration,.CDB-LoaderIcon,.CDB-Radio-face,.CDB-SelectFake,.CDB-Textarea,button{box-sizing:border-box}.CDB-OptionInput-item.is-active>.CDB-OptionInput-content{border-bottom:1px solid #2E3C43}.CDB-Radio{position:absolute;width:16px;height:16px;opacity:0;vertical-align:middle;z-index:1}.CDB-Radio-face{position:relative;width:16px;height:16px;border:1px solid #DDD;border-radius:50%;background:#fff;text-indent:20px;cursor:pointer}.CDB-Radio-face::before{position:absolute;top:50%;left:50%;width:6px;height:6px;margin-top:-3px;margin-left:-3px;border-radius:50%;background:#EEE}.CDB-Radio:checked+.CDB-Radio-face{border:1px solid #3AA9E3;background:#3AA9E3}.CDB-Radio:checked+.CDB-Radio-face::before{background:#fff}.CDB-Radio:disabled+.CDB-Radio-face{border:1px solid #EEE;background:#F9F9F9}.CDB-Radio:disabled+.CDB-Radio-face::before,.CDB-SelectFake{background:#fff}.CDB-Radio:disabled:hover+.CDB-Radio-face{border:1px solid #EEE}.CDB-Radio:hover+.CDB-Radio-face{border:1px solid #AAA}.CDB-Radio:checked:hover+.CDB-Radio-face,.CDB-Radio:focus+.CDB-Radio-face{border:1px solid #3AA9E3}.CDB-Select{position:relative}.CDB-SelectItem{position:absolute;top:40px}.CDB-SelectFake{-webkit-appearance:none;appearance:none;width:100%;padding:7px 8px 6px;border:1px solid #DDD;border-radius:4px;font-size:12px;line-height:16px}.CDB-SelectFake:hover{border:1px solid #AAA}.CDB-SelectFake:focus{border:1px solid #3AA9E3;outline:0}.CDB-SelectFake:disabled{border-color:#EEE;background:#F9F9F9}.CDB-FieldError .CDB-Select,.CDB-FieldError .CDB-SelectFake,.CDB-SelectFake.has-error{border:1px solid rgba(241,87,67,.48);background:rgba(241,87,67,.04);color:#F15743}.CDB-Range{-webkit-appearance:none;-moz-appearance:none;position:relative;width:100%;margin:-4px 0 0;padding:0 6px;border:0;background:0 0;cursor:pointer;overflow:hidden;vertical-align:middle}.CDB-Range:focus{outline:0}.CDB-Range::-webkit-slider-runnable-track{height:2px;margin:8px 0;border-radius:4px;background:#DDD}.CDB-Range::-webkit-slider-thumb{position:relative;width:4px;height:100%;border-radius:4px}.CDB-Range::-webkit-slider-thumb::before{position:absolute;top:0;right:0;bottom:0;left:-3000px;height:2px;border-radius:4px;background:#3AA9E3;content:''}.CDB-Range::-webkit-slider-thumb::after{position:absolute;top:-6px;right:-6px;left:-6px;width:12px;height:12px;border:1px solid #3AA9E3;border-radius:50%;background:#fff;content:'';z-index:1}.CDB-Range::-webkit-slider-thumb:focus::after,.CDB-Range::-webkit-slider-thumb:hover::after{cursor:pointer}.CDB-Range::-webkit-slider-thumb:disabled::after,.CDB-Range::-webkit-slider-thumb:disabled::before{opacity:.2}.CDB-Range::-moz-range-track{height:2px;margin:8px 0;border:0;border-radius:4px;outline:0;background:#DDD}.CDB-Range::-moz-range-thumb{position:absolute;top:-6px;right:-6px;left:-6px;width:12px;height:12px;border:1px solid #3AA9E3;border-radius:50%;background:#fff;content:'';z-index:1}.CDB-Range::-moz-range-progress{position:absolute;top:0;right:0;bottom:0;left:-3000px;height:2px;border-radius:4px;background:#3AA9E3;content:''}.CDB-Range::-ms-track{height:2px;margin:8px 0;border:transparent;border-radius:4px;background:#DDD;color:transparent}.CDB-Range::-ms-thumb{position:absolute;top:-6px;right:-6px;left:-6px;width:12px;height:12px;border:1px solid #3AA9E3;border-radius:50%;background:#fff;content:'';z-index:1}.CDB-TabsForms{border:1px solid #DDD;border-radius:4px}.CDB-TabsForms-inner{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex}.CDB-TabsForms-item{border-left:1px solid #EEE}.CDB-TabsForms-item:first-child{border-left:0}.CDB-TabsForms-button{padding:7px 8px}.CDB-Textarea{width:100%;padding:7px 8px 6px;border:1px solid #DDD;border-radius:4px;font-size:12px;line-height:16px}.CDB-Textarea:hover{border:1px solid #AAA}.CDB-Textarea:focus{border:1px solid #3AA9E3;outline-color:transparent;outline-style:none}a:active,a:hover,button,input{outline:0}.CDB-Textarea:disabled{border-color:#EEE;background:#F9F9F9}.CDB-FieldError .CDB-Textarea,.CDB-Textarea:has-error{border:1px solid rgba(241,87,67,.48);background:rgba(241,87,67,.04);color:#F15743}.CDB-Toggle{position:absolute;width:32px;height:16px;opacity:0;z-index:1}.CDB-Toggle+.CDB-ToggleFace{-webkit-transition:background,.3s;-khtml-transition:background,.3s;-moz-transition:background,.3s;-ms-transition:background,.3s;-o-transition:background,.3s;transition:background,.3s;position:relative;width:32px;height:16px;margin:0 2px;border-radius:50px;background:#CBCED0}.CDB-Toggle+.CDB-ToggleFace::before{position:absolute;top:2px;left:2px;width:12px;height:12px;border-radius:50%;background:#fff;box-shadow:0 1px 2px 0 rgba(0,0,0,.48)}.CDB-Toggle:checked+.CDB-ToggleFace{background:#9DE0AD}.CDB-Toggle:checked+.CDB-ToggleFace::before{right:2px;left:auto}.CDB-HeaderInfo{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-align-items:flex-start;-moz-align-items:flex-start;-ms-align-items:flex-start;align-items:flex-start;-ms-flex-align:flex-start}.CDB-HeaderInfo.is-block{display:block}.CDB-HeaderInfo-listItem{display:inline-block;margin-right:8px;vertical-align:middle}.CDB-HeaderInfo-title,.CDB-ListTag{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex}.CDB-HeaderInfo-listItem:last-child{margin-right:0}.CDB-HeaderInfo-inner{-webkit-box-flex:1;-moz-box-flex:1;-webkit-flex:1;-ms-flex:1;flex:1}.CDB-HeaderInfo-back{margin-top:7px}.CDB-HeaderInfo-title{display:flex;-webkit-align-items:center;-moz-align-items:center;-ms-align-items:center;align-items:center;-ms-flex-align:center}.CDB-HeaderInfo-titleText{-webkit-box-flex:1;-moz-box-flex:1;-webkit-flex:1;-ms-flex:1;flex:1;width:0;padding-right:16px}.CDB-HeaderInfo-actionsItem{display:inline-block;margin-left:4px;vertical-align:middle}.CDB-HeaderNumeration{width:24px;min-width:24px;height:24px;border:1px solid #DDD;border-radius:4px;background-color:#fff;color:#979EA1;font-size:10px;line-height:23px;text-align:center}.CDB-ListDecoration-item{border-bottom:1px solid #EEE}.CDB-ListDecoration-item:last-child{border-bottom:0}.CDB-ListDecoration-itemLink{display:block;padding:12px 16px}.CDB-Loader{-webkit-animation:loader-progress 1s linear 1;-khtml-animation:loader-progress 1s linear 1;-moz-animation:loader-progress 1s linear 1;-ms-animation:loader-progress 1s linear 1;-o-animation:loader-progress 1s linear 1;animation:loader-progress 1s linear 1;opacity:0;filter:alpha(opacity=0);-webkit-transition:opacity,1s;-khtml-transition:opacity,1s;-moz-transition:opacity,1s;-ms-transition:opacity,1s;-o-transition:opacity,1s;transition:opacity,1s;position:absolute;top:0;left:0;width:100%;height:2px;background:#3aa9e3;z-index:10}.CDB-Loader.is-visible{-webkit-animation:loader-progress 2s linear infinite;-khtml-animation:loader-progress 2s linear infinite;-moz-animation:loader-progress 2s linear infinite;-ms-animation:loader-progress 2s linear infinite;-o-animation:loader-progress 2s linear infinite;animation:loader-progress 2s linear infinite;opacity:1;filter:alpha(opacity=100)}@-webkit-keyframes loader-progress{0%{width:0}100%{width:100%}}@-moz-keyframes loader-progress{0%{width:0}100%{width:100%}}@-ms-keyframes loader-progress{0%{width:0}100%{width:100%}}@-o-keyframes loader-progress{0%{width:0}100%{width:100%}}@keyframes loader-progress{0%{width:0}100%{width:100%}}.CDB-LoaderIcon{position:relative;width:16px;height:16px;border:2px solid #DDD;border-radius:50%}.CDB-LoaderIcon.is-bg{border:2px solid rgba(255,255,255,.9)}.CDB-LoaderIcon.is-dark{border:2px solid #636D72}.CDB-LoaderIcon-item{-webkit-animation:loader-icon 1.4s linear infinite;-khtml-animation:loader-icon 1.4s linear infinite;-moz-animation:loader-icon 1.4s linear infinite;-ms-animation:loader-icon 1.4s linear infinite;-o-animation:loader-icon 1.4s linear infinite;animation:loader-icon 1.4s linear infinite;position:absolute;top:-2px;left:-2px;width:16px;height:16px;border-radius:50%;background:linear-gradient(to right,rgba(255,255,255,.1) 10%,rgba(255,255,255,0) 42%)}.CDB-LoaderIcon-item.is-dark{background:linear-gradient(to right,#2E3C43 10%,rgba(255,255,255,0) 42%)}.CDB-LoaderIcon-itemCircle{display:inline-block;top:0;right:0;bottom:0;left:0;width:75%;height:75%;margin:auto;border-radius:50%}.CDB-LoaderIcon-itemClose{position:absolute;top:-2px;left:0;width:50%;height:50%;border-radius:100% 0 0}.CDB-LoaderIcon-itemCircle,.CDB-LoaderIcon-itemClose{background:#fff}.CDB-LoaderIcon.is-dark .CDB-LoaderIcon-itemCircle,.CDB-LoaderIcon.is-dark .CDB-LoaderIcon-itemClose{background:#2E3C43}.CDB-LoaderIcon.is-grey .CDB-LoaderIcon-itemCircle,.CDB-LoaderIcon.is-grey .CDB-LoaderIcon-itemClose{background:#F9F9F9}@-webkit-keyframes loader-icon{0%{transform:rotate(0)}100%{transform:rotate(360deg)}}@-moz-keyframes loader-icon{0%{transform:rotate(0)}100%{transform:rotate(360deg)}}@-ms-keyframes loader-icon{0%{transform:rotate(0)}100%{transform:rotate(360deg)}}@-o-keyframes loader-icon{0%{transform:rotate(0)}100%{transform:rotate(360deg)}}@keyframes loader-icon{0%{transform:rotate(0)}100%{transform:rotate(360deg)}}.CDB-NavMenu{position:relative}.CDB-NavMenu-inner{position:relative;margin-bottom:18px;border-bottom:1px solid #DDD}.CDB-NavMenu-inner--no-margin{margin-bottom:0}.CDB-NavMenu-inner--is-dropdown{padding:8px 0 0 16px}.CDB-NavMenu-link{display:block;margin-bottom:-1px;padding:4px 0 11px;border-bottom:1px solid transparent;color:#3AA9E3}.CDB-NavMenu-item,.CDB-NavSubmenu-item{display:inline-block;margin-right:8px;vertical-align:middle}.CDB-NavMenu-item.is-selected .CDB-NavMenu-link{border-bottom:1px solid #000;color:#2E3C43}.CDB-NavSubmenu{border-bottom:1px solid #EEE}.CDB-NavSubmenu--inside{position:absolute;right:0;left:0;padding-top:14px}.CDB-NavSubmenu--outside{margin-top:-5px;margin-bottom:18px}.CDB-NavSubmenu-link{display:block;margin-bottom:-1px;padding-bottom:12px;border-bottom:1px solid transparent;color:#3AA9E3}.CDB-NavSubmenu-item.is-selected .CDB-NavSubmenu-link{border-bottom:1px solid #DDD;color:#2E3C43}.CDB-NavSubmenu-status{margin-left:2px}.CDB-Navmenu.is-dark .CDB-NavMenu-inner,.CDB-Navmenu.is-dark .CDB-NavSubmenu{border-bottom:1px solid #636D72}.CDB-Navmenu.is-dark .CDB-NavMenu-link,.CDB-Navmenu.is-dark .CDB-NavSubmenu-link{color:#979EA1}.CDB-Navmenu.is-dark .CDB-NavMenu-item.is-selected .CDB-NavMenu-link,.CDB-Navmenu.is-dark .CDB-NavSubmenu-item.is-selected .CDB-NavSubmenu-link{border-bottom:1px solid #DDD;color:#fff}.CDB-Navmenu.is-dark .CDB-NavSubmenu-status{color:#636D72}.CDB-Shape-add{position:relative;height:100%}.CDB-Shape-add.is-small::before,.CDB-Shape-add::before{height:1px;display:block;position:absolute;background:#2E3C43;content:''}.CDB-Shape-add::before{right:1px;bottom:7px;left:0}.CDB-Shape-add::after{display:block;position:absolute;top:1;bottom:0;left:7px;width:1px;background:#2E3C43;content:''}.CDB-Shape-add.is-small::before{right:3px;bottom:7px;left:4px}.CDB-Shape-add.is-small::after{display:block;position:absolute;top:4px;bottom:3px;left:8px;width:1px;background:#2E3C43;content:''}.CDB-Shape-add.is-blue::after,.CDB-Shape-add.is-blue::before{background:#3AA9E3}.CDB-Shape-add.is-white::after,.CDB-Shape-add.is-white::before{background:#fff}.CDB-Shape-Arrow{position:relative;width:1px;height:8px;background:#2E3C43}.CDB-Shape-Arrow::after,.CDB-Shape-Arrow::before{position:absolute;top:2px;width:5px;height:1px;background:#2E3C43;content:'';display:block}.CDB-Shape-Arrow::before{left:0;transform:rotate(45deg)}.CDB-Shape-Arrow::after{left:-4px;transform:rotate(-45deg)}.CDB-Shape-Arrow.is-up{top:6px;right:9px;transform:rotate(45deg)}.CDB-Shape-Arrow.is-down{top:13px;left:46px;transform:rotate(-135deg)}.CDB-Shape-Arrow.is-blue,.CDB-Shape-Arrow.is-blue::after,.CDB-Shape-Arrow.is-blue::before{background:#3AA9E3}.CDB-Shape-Arrow.is-white,.CDB-Shape-Arrow.is-white::after,.CDB-Shape-Arrow.is-white::before{background:#fff}.CDB-Shape-CircleItem.is-small{transform:translateY(2px)}.CDB-Shape-tick{display:block;position:relative;height:100%}.CDB-Shape-tick::after,.CDB-Shape-tick::before{position:absolute;width:1px;background:#2E3C43;content:'';display:block}.CDB-Shape-tick::before{transform:rotate(-45deg)}.CDB-Shape-tick::after{transform:rotate(45deg)}.CDB-Shape-tick.is-medium::before{top:5px;left:4px;height:4px}.CDB-Shape-tick.is-medium::after{top:3px;right:5px;height:6px}.CDB-Shape-tick.is-small::before{top:4px;left:2px;height:3px}.CDB-Shape-tick.is-small::after{top:2px;right:3px;height:5px}.CDB-Shape-tick.is-blue::after,.CDB-Shape-tick.is-blue::before{background:#3AA9E3}.CDB-Shape-tick.is-white::after,.CDB-Shape-tick.is-white::before{background:#fff}.CDB-Shape-tick.is-green::after,.CDB-Shape-tick.is-green::before{background:#9DE0AD}.CDB-Shape-close{display:block;position:relative;height:100%}.CDB-Shape-close::after,.CDB-Shape-close::before{position:absolute;width:1px;background:#2E3C43;content:'';display:block}.CDB-Shape-close::before{transform:rotate(-45deg)}.CDB-Shape-close::after{transform:rotate(45deg)}.CDB-Shape-close.is-huge::before{top:-2px;left:7px;height:20px}.CDB-Shape-close.is-huge::after{top:-2px;right:8px;height:20px}.CDB-Shape-close.is-large::before{top:2px;left:7px;height:12px}.CDB-Shape-close.is-large::after{top:2px;right:8px;height:12px}.CDB-Shape-close.is-medium::before{top:3px;left:6px;height:7px}.CDB-Shape-close.is-medium::after{top:3px;right:6px;height:7px}.CDB-Shape-close.is-small::before{top:2px;left:4px;height:5px}.CDB-Shape-close.is-small::after{top:2px;right:4px;height:5px}.CDB-Shape-close.is-blue::after,.CDB-Shape-close.is-blue::before{background:#3AA9E3}.CDB-Shape-close.is-white::after,.CDB-Shape-close.is-white::before{background:#fff}.CDB-InfoTooltip.is-error,.CDB-Shape-close.is-red::after,.CDB-Shape-close.is-red::before{background:#F15743}.CDB-Shape-dash{position:relative;height:100%}.CDB-Shape-dash::before{display:block;position:absolute;right:2px;bottom:7px;left:2px;height:1px;background:#2E3C43;content:''}.CDB-Shape-dash.is-small::before{right:3px;left:3px}.CDB-Shape-dash.is-blue::before{background:#3AA9E3}.CDB-Shape-dash.is-white::before{background:#fff}.CDB-Shape-Dataset{padding-top:1px}.CDB-Shape-Dataset.is-small{padding-top:0}.CDB-Shape-DatasetItem{display:inline-block;width:9px;height:9px;margin-left:-10px;border:1px solid #2E3C43;border-radius:50%;background:#fff}.CDB-Shape-DatasetItem:first-child{position:relative;margin-left:0;box-shadow:3px 0 0 #fff;z-index:1}.CDB-Shape-Dataset.is-small .CDB-Shape-DatasetItem{width:6px;height:6px;margin-left:-7px}.CDB-Shape-Dataset.is-small .CDB-Shape-DatasetItem:first-child{margin-left:0;box-shadow:2px 0 0 #fff}.CDB-Shape-Dataset.is-blue .CDB-Shape-DatasetItem{border:1px solid #3AA9E3}.CDB-Shape-Dataset.is-grey .CDB-Shape-DatasetItem{border:1px solid #AAA}.CDB-Shape-Dataset.is-white .CDB-Shape-DatasetItem{border:1px solid #AAA;background:#2E3C43}.CDB-Shape-Dataset.is-white .CDB-Shape-DatasetItem:first-child{box-shadow:3px 0 #2E3C43}.CDB-Shape-Dataset.is-white.is-small .CDB-Shape-DatasetItem:first-child{box-shadow:2px 0 #2E3C43}.CDB-Shape-dot{display:inline-block;width:8px;height:8px;border-radius:50%;background:#EEE}.CDB-Shape-dot.is-selected{background:#636D72}.CDB-Shape-CircleItem{width:13px;height:13px;border:1px solid #2E3C43;border-radius:50%}.CDB-Shape-CircleItem.is-small{width:9px;height:9px;margin:0 auto}.CDB-Shape-CircleItem.is-blue{border:1px solid #3AA9E3}.CDB-Shape-CircleItem.is-white{border:1px solid #fff}.CDB-Shape-CircleItem.is-green{border:1px solid #9DE0AD}.CDB-Shape-CircleItem.is-red{border:1px solid #F15743}.CDB-Shape-hamburguer{width:16px}.CDB-Shape-hamburguer:hover{cursor:pointer}.CDB-Shape-hamburguerItem{height:2px;margin-bottom:2px;background:#2E3C43}.CDB-Shape-hamburguerItem:last-child{margin-bottom:0}.CDB-Shape-hamburguer.is-blue .CDB-Shape-hamburguerItem{background:#3AA9E3}.CDB-Shape-hamburguer.is-white .CDB-Shape-hamburguerItem{background:#fff}.CDB-Shape-magnify{display:block;position:relative;height:100%}.CDB-Shape-magnify.is-small::after,.CDB-Shape-magnify::after,.CDB-Shape-magnify::before{display:block;position:absolute;content:''}.CDB-Shape-magnify::before{top:0;left:0;width:11px;height:11px;border:1px solid #2E3C43;border-radius:50%}.CDB-Shape-magnify::after{right:2px;bottom:-1px;width:1px;height:7px;transform:rotate(314deg);background:#2E3C43}.CDB-Shape-magnify.is-blue::before{border:1px solid #3AA9E3}.CDB-Shape-magnify.is-blue::after{background:#3AA9E3}.CDB-Shape-magnify.is-white::before{border:1px solid #fff}.CDB-Shape-threePointsItem.is-round,.CDB-Type-circle{border-radius:50%}.CDB-Shape-magnify.is-white::after{background:#fff}.CDB-Shape-magnify.is-small::before{top:3px;left:3px;width:6px;height:6px}.CDB-Shape-magnify.is-small::after{right:4px;bottom:2px;width:1px;height:5px;transform:rotate(314deg)}.CDB-Shape-rectsHandle{position:relative;padding:1px 0 0}.CDB-Shape-rectsHandle.is-small{padding:3px 0 0 1px}.CDB-Shape-rectsHandle.is-small .CDB-Shape-rectsHandleItem{height:2px;margin-bottom:2px}.CDB-Shape-rectsHandle.is-small .CDB-Shape-rectsHandleItem::before{left:5px;width:2px;height:2px}.CDB-Shape-rectsHandle.is-small .CDB-Shape-rectsHandleItem::after{width:2px;height:2px}.CDB-Shape-rectsHandleItem::after,.CDB-Shape-rectsHandleItem::before{display:block;position:absolute;width:3px;background:#2E3C43;content:''}.CDB-Shape-rectsHandleItem{height:3px;margin-bottom:3px}.CDB-Shape-rectsHandleItem:last-child{margin-bottom:0}.CDB-Shape-rectsHandleItem::before{left:4px;height:3px}.CDB-Shape-rectsHandleItem::after{left:9px;height:3px}.CDB-Shape-rectsHandleItem--blue::after,.CDB-Shape-rectsHandleItem--blue::before{background:#3AA9E3}.CDB-Shape-rectsHandleItem--white::after,.CDB-Shape-rectsHandleItem--white::before{background:#fff}.CDB-Shape-rectsHandleItem--grey::after,.CDB-Shape-rectsHandleItem--grey::before{background:#AAA}.CDB-Shape-paragraph{padding-top:3px;text-align:left}.CDB-Shape-threePoints.is-medium,.CDB-Shape-threePoints.is-small{padding-top:2px}.CDB-Shape-paragraph.is-center{text-align:center}.CDB-Shape-paragraph.is-right{text-align:right}.CDB-Shape-paragraphItem{height:1px;margin-bottom:2px}.CDB-Shape-paragraphItem:last-child{margin-bottom:0}.CDB-Shape-paragraphBar{display:inline-block;height:1px;margin-bottom:2px;background:#EEE;vertical-align:top}.CDB-Shape-paragraph.is-active .CDB-Shape-paragraphBar{background:#3AA9E3}.CDB-Shape-paragraphBar--01{width:12px}.CDB-Shape-paragraphBar--02{width:6px}.CDB-Shape-paragraphBar--03{width:8px}.CDB-Shape-paragraphBar--04{width:4px}.CDB-Shape-threePoints{display:inline-block}.CDB-Shape-threePoints.is-horizontal{transform:rotate(90deg)}.CDB-Shape-threePointsItem{width:2px;height:2px;margin-bottom:5px;background:#2E3C43}.CDB-Shape-threePointsItem:last-child{margin-bottom:0}.CDB-Shape-threePoints.is-small .CDB-Shape-threePointsItem{width:2px;height:2px;margin-bottom:3px}.CDB-Shape-threePoints.is-medium .CDB-Shape-threePointsItem{width:4px;height:4px;margin-bottom:3px}.CDB-Shape-threePoints.is-blue .CDB-Shape-threePointsItem{background:#3AA9E3}.CDB-Shape-threePoints.is-white .CDB-Shape-threePointsItem{background:#fff}.CDB-ArrowToogle{position:relative;height:100%}.CDB-ArrowToogle::after,.CDB-ArrowToogle::before{position:absolute;top:8px;width:10px;height:1px;background:#2E3C43;display:block;content:''}.CDB-ArrowToogle::before{left:0;transform:rotate(-45deg)}.CDB-ArrowToogle::after{right:-1px;transform:rotate(45deg)}.CDB-ArrowToogle.is-down{transform:rotate(180deg)}.CDB-ArrowToogle.is-small::before{left:2px;width:8px}.CDB-ArrowToogle.is-small::after{right:1px;width:8px}.CDB-ArrowToogle.is-blue::after,.CDB-ArrowToogle.is-blue::before{background:#3AA9E3}.CDB-ArrowToogle.is-white::after,.CDB-ArrowToogle.is-white::before{background:#fff}.CDB-Shape{width:16px;height:16px;text-align:center}.CDB-Shape--small{width:8px;height:8px}.CDB-Shape--medium{width:24px;height:24px}.CDB-Shape:hover{cursor:pointer}.CDB-Type{position:relative;width:100%;height:100%}.CDB-Type-circle{position:absolute;width:3px;height:3px;background:#AAA}.CDB-Type-circle--01{top:0;left:0}.CDB-Type-circle--02{top:0;right:0}.CDB-Type-circle--03{bottom:0;left:0}.CDB-Type-circle--04{right:0;bottom:0}.CDB-Type--polygon::before{display:block;position:absolute;top:1px;right:1px;bottom:1px;left:1px;border:1px solid #AAA;content:''}.CDB-Type--line::before{display:block;position:absolute;top:0;right:0;bottom:0;left:3px;width:1px;transform:rotate(45deg);background:#AAA;content:''}.CDB-Tag{padding:0 3px;border:1px solid #3AA9E3;border-radius:2px;color:#3AA9E3}.CDB-Tag.is-public{border:1px solid #9BC63B;color:#9BC63B}.CDB-Tag.is-link{border:1px solid #FEB100;color:#FEB100}.CDB-Tag.is-password{border:1px solid #FB7B23;color:#FB7B23}.CDB-Tag.is-private{border:1px solid #F15743;color:#F15743}.CDB-ListTag{display:flex}.CDB-ListTag-item{margin-right:8px}.CDB-Tag.CDB-Tag--withLink{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;padding:4px 4px 4px 8px;border-radius:4px;background:rgba(58,169,227,.16)}.CDB-Tag.CDB-Tag--opaque{padding:2px 4px;border-radius:2px;background:#F9F9F9}.CDB-InfoTooltip{display:inline-block;position:absolute;padding:8px;border-radius:4px;background:rgba(46,60,67,.8)}.CDB-InfoTooltip::after{display:block;position:absolute;width:0;height:0;border:4px solid transparent;content:''}.is-black.CDB-InfoTooltip.CDB-InfoTooltip--up::after{border-bottom-color:rgba(46,60,67,.8)}.is-black.CDB-InfoTooltip.CDB-InfoTooltip--down::after{border-top-color:rgba(46,60,67,.8)}.is-black.CDB-InfoTooltip.CDB-InfoTooltip--left::after{border-right-color:rgba(46,60,67,.8)}.is-black.CDB-InfoTooltip.CDB-InfoTooltip--right::after{border-left-color:rgba(46,60,67,.8)}.is-error.CDB-InfoTooltip.CDB-InfoTooltip--up::after{border-bottom-color:#F15743}.is-error.CDB-InfoTooltip.CDB-InfoTooltip--down::after{border-top-color:#F15743}.is-error.CDB-InfoTooltip.CDB-InfoTooltip--left::after{border-right-color:#F15743}.is-error.CDB-InfoTooltip.CDB-InfoTooltip--right::after{border-left-color:#F15743}.CDB-InfoTooltip.CDB-InfoTooltip--up::after{top:-8px;left:calc(50% - 4px);border-top-width:4px;border-top-style:solid}.CDB-InfoTooltip.CDB-InfoTooltip--down::after{bottom:-8px;left:calc(50% - 4px);border-top-width:4px;border-top-style:solid}.CDB-InfoTooltip.CDB-InfoTooltip--left::after{top:calc(50% - 4px);left:-8px;border-right-width:4px;border-right-style:solid}.CDB-InfoTooltip.CDB-InfoTooltip--right::after{top:calc(50% - 4px);right:-8px;border-right-width:4px;border-right-style:solid}.CDB-InfoTooltip-text{color:#fff}.CDB-Text{font-family:'Open Sans'}.CDB-Text.is-semibold{font-weight:600}.CDB-Text.is-light{font-weight:300}.CDB-Size-huge{font-size:26px;line-height:34px}.CDB-Size-large{font-size:16px;line-height:22px}.CDB-Size-medium{font-size:12px;line-height:16px}.CDB-Size-small{font-size:10px;line-height:14px}.CDB-FontSize-small{font-size:10px}.CDB-FontSize-medium{font-size:12px}@font-face{font-family:CartoIcon;src:url(../fonts/cartoIcon.eot);src:url(../fonts/cartoIcon.eot?#iefix) format("embedded-opentype"),url(../fonts/cartoIcon.woff) format("woff"),url(../fonts/cartoIcon.ttf) format("truetype"),url(../fonts/cartoIcon.svg?ey3vsq#cartoIcon) format("svg");font-weight:400;font-style:normal}.CDB-IconFont{display:inline-block;font-family:CartoIcon;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;line-height:1}.CDB-IconFont--center{vertical-align:middle}.CDB-IconFont--top{vertical-align:top}.CDB-IconFont--small{font-size:11px}.CDB-IconFont-clock::before{content:'\E001'}.CDB-IconFont-stats::before{content:'\E002'}.CDB-IconFont-heartEmpty::before{content:'\E003'}.CDB-IconFont-heartFill::before{content:'\E004'}.CDB-IconFont-alert::before{content:'\E005'}.CDB-IconFont-rows::before{content:'\E006'}.CDB-IconFont-check::before{content:'\E007'}.CDB-IconFont-dribbble::before{content:'\E008'}.CDB-IconFont-twitter::before{content:'\E009'}.CDB-IconFont-caretDown::before{content:'\E00A'}.CDB-IconFont-lightbulb::before{content:'\E00B'}.CDB-IconFont-explore::before{content:'\E00C'}.CDB-IconFont-drop::before{content:'\E00D'}.CDB-IconFont-edition::before{content:'\E00E'}.CDB-IconFont-view::before{content:'\E00F'}.CDB-IconFont-odyssey::before{content:'\E010'}.CDB-IconFont-settings::before{content:'\E011'}.CDB-IconFont-wizard::before{content:'\E012'}.CDB-IconFont-info::before{content:'\E013'}.CDB-IconFont-fork::before{content:'\E014'}.CDB-IconFont-facebook::before{content:'\E015'}.CDB-IconFont-folder::before{content:'\E016'}.CDB-IconFont-dropbox::before{content:'\E017'}.CDB-IconFont-cloud::before{content:'\E018'}.CDB-IconFont-step::before{content:'\E019'}.CDB-IconFont-addDocument::before{content:'\E01A'}.CDB-IconFont-arrowNext::before{content:'\E01B'}.CDB-IconFont-arrowPrev::before{content:'\E01C'}.CDB-IconFont-close::before{content:'\E01D'}.CDB-IconFont-cartoFante::before{content:'\E01E'}.CDB-IconFont-lock::before{content:'\E01F'}.CDB-IconFont-cartoDB::before{content:'\E020'}.CDB-IconFont-lens::before{content:'\E021'}.CDB-IconFont-closeLimits::before{content:'\E022'}.CDB-IconFont-defaultUser::before{content:'\E023'}.CDB-IconFont-cockroach::before{content:'\E024'}.CDB-IconFont-floppy::before{content:'\E025'}.CDB-IconFont-trash::before{content:'\E026'}.CDB-IconFont-wifi::before{content:'\E027'}.CDB-IconFont-unlock::before{content:'\E028'}.CDB-IconFont-unlockWithEllipsis::before{content:'\E029'}.CDB-IconFont-gift::before{content:'\E02A'}.CDB-IconFont-people::before{content:'\E02B'}.CDB-IconFont-play::before{content:'\E02C'}.CDB-IconFont-add::before{content:'\E02D'}.CDB-IconFont-map::before{content:'\E02E'}.CDB-IconFont-anchor::before{content:'\E02F'}.CDB-IconFont-key::before{content:'\E030'}.CDB-IconFont-calendar::before{content:'\E031'}.CDB-IconFont-document::before{content:'\E032'}.CDB-IconFont-eye::before{content:'\E033'}.CDB-IconFont-marker::before{content:'\E034'}.CDB-IconFont-progressBar::before{content:'\E035'}.CDB-IconFont-book::before{content:'\E036'}.CDB-IconFont-notes::before{content:'\E037'}.CDB-IconFont-rectangles::before{content:'\E038'}.CDB-IconFont-mountain::before{content:'\E039'}.CDB-IconFont-points::before{content:'\E03A'}.CDB-IconFont-snake::before{content:'\E03B'}.CDB-IconFont-boss::before{content:'\E03C'}.CDB-IconFont-rocket::before{content:'\E03D'}.CDB-IconFont-barometer::before{content:'\E03E'}.CDB-IconFont-dollar::before{content:'\E03F'}.CDB-IconFont-email::before{content:'\E040'}.CDB-IconFont-label::before{content:'\E041'}.CDB-IconFont-outside::before{content:'\E042'}.CDB-IconFont-jigsaw::before{content:'\E043'}.CDB-IconFont-tools::before{content:'\E044'}.CDB-IconFont-question::before{content:'\E045'}.CDB-IconFont-layerStack::before{content:'\E046'}.CDB-IconFont-alarm::before{content:'\E047'}.CDB-IconFont-cloudDownArrow::before{content:'\E048'}.CDB-IconFont-pencil::before{content:'\E049'}.CDB-IconFont-fountainPen::before{content:'\E04A'}.CDB-IconFont-emptyDoc::before{content:'\E04B'}.CDB-IconFont-mergeArrow::before{content:'\E04C'}.CDB-IconFont-mergeColumns::before{content:'\E04D'}.CDB-IconFont-mergeSpatial::before{content:'\E04E'}.CDB-IconFont-globe::before{content:'\E04F'}.CDB-IconFont-chevronDown::before{content:'\E050'}.CDB-IconFont-streets::before{content:'\E051'}.CDB-IconFont-keys::before{content:'\E052'}.CDB-IconFont-facebookSquare::before{content:'\E053'}.CDB-IconFont-fullscreen::before{content:'\E054'}.CDB-IconFont-rArrowLight::before{content:'\E055'}.CDB-IconFont-share::before{content:'\E056'}.CDB-IconFont-linkedin::before{content:'\E057'}.CDB-IconFont-calendarBlank::before{content:'\E058'}.CDB-IconFont-creativeCommons::before{content:'\E059'}.CDB-IconFont-bubble::before{content:'\E05A'}.CDB-IconFont-bars::before{content:'\E05B'}.CDB-IconFont-arrowMenuLight::before{content:'\E05C'}.CDB-IconFont-tieFighter::before{content:'\E05D'}.CDB-IconFont-ray::before{content:'\E05E'}.CDB-IconFont-markup::before{content:'\E05F'}.CDB-IconFont-table::before{content:'\E060'}.CDB-IconFont-airlock::before{content:'\E061'}.CDB-IconFont-pin::before{content:'\E062'}.CDB-IconFont-attache::before{content:'\E063'}.CDB-IconFont-download::before{content:'\E064'}.CDB-IconFont-group::before{content:'\E065'}.CDB-IconFont-dashboard::before{content:'\E066'}.CDB-IconFont-spinner::before{content:'\E067'}.CDB-IconFont-mapsearch::before{content:'\E068'}.CDB-IconFont-rArrow::before{content:'\E069'}body{color:#2E3C43}.u-actionTextColor,a{color:#3AA9E3}a{background-color:transparent}a:hover{text-decoration:underline}@font-face{font-family:'Open Sans';font-style:normal;font-weight:300;src:local("Open Sans Light"),local("OpenSans-Light"),url(//themes.googleusercontent.com/static/fonts/opensans/v6/cJZKeOuBrn4kERxqtaUH3aCWcynf_cDxXwCLxiixG1c.ttf) format("truetype"),url(//themes.googleusercontent.com/static/fonts/opensans/v8/DXI1ORHCpsQm3Vp6mXoaTeY5mlVXtdNkpsMpKkrDXP4.woff) format("woff")}@font-face{font-family:'Open Sans';font-style:normal;font-weight:400;src:local("Open Sans"),local("OpenSans"),url(//themes.googleusercontent.com/static/fonts/opensans/v6/cJZKeOuBrn4kERxqtaUH3aCWcynf_cDxXwCLxiixG1c.ttf) format("truetype"),url(//themes.googleusercontent.com/static/fonts/opensans/v8/u-WUoqrET9fUeobQW7jkRbO3LdcAZYWl9Si6vvxL-qU.woff) format("woff")}@font-face{font-family:'Open Sans';font-style:normal;font-weight:600;src:local("Open Sans Semibold"),local("OpenSans-Semibold"),url(//themes.googleusercontent.com/static/fonts/opensans/v6/cJZKeOuBrn4kERxqtaUH3aCWcynf_cDxXwCLxiixG1c.ttf) format("truetype"),url(//themes.googleusercontent.com/static/fonts/opensans/v8/MTP_ySUJH_bn48VBG8sNSuY5mlVXtdNkpsMpKkrDXP4.woff) format("woff")}.u-tSpace{margin-top:4px}.u-tSpace--m{margin-top:8px}.u-tSpace-xl{margin-top:12px}.u-rSpace--s{margin-right:2px}.u-rSpace{margin-right:4px}.u-rSpace--m{margin-right:8px}.u-rSpace--xl{margin-right:12px}.u-bSpace{margin-bottom:4px}.u-bSpace--m{margin-bottom:8px}.u-bSpace--xl{margin-bottom:12px}.u-lSpace{margin-left:4px}.u-lSpace--xl{margin-left:12px}.u-mainTextColor{color:#2E3C43}.u-secondaryTextColor{color:#636D72}.u-altTextColor{color:#979EA1}.u-hintTextColor{color:#CBCED0}.u-iBlock{display:inline-block;vertical-align:middle}.u-showDesktop{display:block!important}.u-showMobile{display:none!important}@media only screen and (max-width:600px){.u-showDesktop{display:none!important}.u-showMobile{display:block!important}}html{-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}abbr[title]{border-bottom:1px dotted}mark{background:#ff0;color:#000}sub,sup{line-height:0;position:relative}sup{top:-.5em}sub{bottom:-.25em}svg:not(:root){overflow:hidden}hr{box-sizing:content-box;height:0}pre,textarea{overflow:auto}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible;margin:0;padding:0;border:none;background:0 0}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input[type=checkbox],input[type=radio]{-moz-appearance:none;-webkit-appearance:none;appearance:none;box-sizing:border-box;padding:0;outline:0;cursor:pointer}input[type=range]::-webkit-slider-thumb{-moz-appearance:none;-webkit-appearance:none;appearance:none}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-appearance:textfield;box-sizing:content-box}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}optgroup{font-weight:700}input{line-height:normal;-moz-appearance:none;-webkit-appearance:none;appearance:none}a,abbr,acronym,address,applet,article,aside,audio,b,big,blockquote,body,canvas,caption,center,cite,code,dd,del,details,dfn,div,dl,dt,em,embed,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,html,i,iframe,img,ins,kbd,label,legend,li,mark,menu,nav,object,ol,output,p,pre,q,ruby,s,samp,section,small,span,strike,strong,sub,summary,sup,table,tbody,td,tfoot,th,thead,time,tr,tt,u,ul,var,video{margin:0;padding:0;border:0;font:inherit;font-size:100%;vertical-align:baseline}body{margin:0;line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:after,blockquote:before,q:after,q:before{content:''}table{border-collapse:collapse;border-spacing:0}dd,dt{display:inline-block} \ No newline at end of file +.CDB-OptionInput-content:hover,a{text-decoration:none}.CDB-OptionInput-item--noSeparator::after,.CDB-OptionInput-item::after,.CDB-Radio-face::before,.CDB-Toggle+.CDB-ToggleFace::before{content:''}.CDB-Tag.CDB-Tag--opaque,.u-upperCase{text-transform:uppercase}.CDB-Dropdown-optionsElement,.CDB-HeaderInfo-titleText,.u-ellipsis{white-space:nowrap;overflow:hidden}.CDB-AvatarList{padding-left:12px}.CDB-AvatarList-item{display:inline-block;margin-left:-12px;border:2px solid #fff;border-radius:50%;vertical-align:middle}.CDB-AvatarList-itemMore{display:inline-block;margin-left:-12px;padding:2px 6px;border-left:2px solid #fff;border-radius:50px;background:#EEE}.CDB-AvatarList-itemMedia{width:16px;height:16px;border-radius:50%}.CDB-Box-modal{min-width:160px;border:1px solid #DDD;border-radius:4px;background:#fff;box-shadow:0 8px 16px 0 rgba(0,0,0,.16);box-sizing:border-box}.CDB-Box-modalHeader{background:#F2F6F9}.CDB-Box-modalHeaderItem{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;padding:12px 16px;border-bottom:1px solid #DDD}.CDB-Box-modalHeaderItem--block,.CDB-Button .CDB-Button-Text{display:block}.CDB-Box-modalHeaderItem--paddingHorizontal{padding:0 16px}.CDB-Box-modalHeaderItem--paddingVertical{padding:12px 0}.CDB-Button{-webkit-transition:background,.3s;-khtml-transition:background,.3s;-moz-transition:background,.3s;-ms-transition:background,.3s;-o-transition:background,.3s;transition:background,.3s;padding:9px 20px;border:1px solid transparent;border-radius:4px;cursor:pointer;box-sizing:border-box}.CDB-Checkbox:checked+.CDB-Checkbox-face,.CDB-Radio:checked+.CDB-Radio-face{-webkit-transition:background,.3s;-moz-transition:background,.3s;-ms-transition:background,.3s;-o-transition:background,.3s;-khtml-transition:background,.3s}.CDB-Button.is-disabled{cursor:default;opacity:.24}.CDB-Button--small{padding:4px 12px}.CDB-Button--big{padding:12px 20px}.CDB-Button--icon{padding:7px 9px}.CDB-Button--primary{background:#1181FB;color:#fff}.CDB-Button--primary:hover{background:#046ddf}.CDB-Button--primary:active{background:#0359b7}.CDB-Button--primary.is-disabled:active,.CDB-Button--primary.is-disabled:hover{background:#1181FB}.CDB-Button--alert{background:#F19243;color:#fff}.CDB-Button--alert:hover{background:#ee7c1d}.CDB-Button--alert:active{background:#d36810}.CDB-Button--alert.is-disabled:active,.CDB-Button--alert.is-disabled:hover{background:#F19243}.CDB-Button--error,.CDB-Button--negative{background:#F15743;color:#fff}.CDB-Button--error:hover,.CDB-Button--negative:hover{background:#ee351d}.CDB-Button--error:active,.CDB-Button--negative:active{background:#d32610}.CDB-Button--error.is-disabled:active,.CDB-Button--error.is-disabled:hover,.CDB-Button--negative.is-disabled:active,.CDB-Button--negative.is-disabled:hover{background:#F15743}.CDB-Button--secondary{border:1px solid #1181FB;color:#1181FB}.CDB-Button--secondary:hover{background:rgba(17,129,251,.08)}.CDB-Button--secondary:active{background:#1181FB;color:#fff}.CDB-Button--secondary.is-disabled:active,.CDB-Button--secondary.is-disabled:hover{background:0 0}.CDB-Button--white{border:1px solid #fff;color:#fff}.CDB-Button--white:hover{background:rgba(255,255,255,.08)}.CDB-Button--white:active{background:rgba(46,60,67,.08);color:#fff}.CDB-Button--white.is-disabled{opacity:.24;filter:alpha(opacity=24)}.CDB-Checkbox:disabled+.CDB-Checkbox-face::after,.CDB-Checkbox:disabled+.CDB-Checkbox-face::before,.CDB-Radio,.CDB-Radio:disabled+.CDB-Radio-face::before,.CDB-Toggle{opacity:0}.CDB-Button--white.is-disabled:hover{background:0 0}.CDB-Button--white.is-disabled:active{background:0 0;color:#fff}.Color-Blue{background:#1181FB}.Color-White{border:1px solid #E5E5E5;background:#fff}.Color-Dark{background:#000}.Color-MainDark{background:#2E3C43}.Color-SecondaryDark{background:#282C2F}.Color-SecondaryBackground{background:#F2F6F9}.Color-ThirdBackground{background:#F9F9F9}.Color-HoverLine{background:#AAA}.Color-MainLine{background:#DDD}.Color-SecondaryLine{background:#EEE}.Color-Type02{background:#636D72}.Color-Type03{background:#979EA1}.Color-Type04{background:#CBCED0}.Color-Higlight{background:#9DE0AD}.Color-Alert{background:#F19243}.Color-Public{background:#9BC63B}.Color-Link{background:#FEB100}.Color-Password{background:#FB7B23}.Color-Error{background:#F15743}.CDB-Checkbox{position:absolute;width:16px;height:16px;opacity:0;vertical-align:middle;z-index:1}.CDB-Checkbox-face{position:relative;width:16px;height:16px;border:1px solid #DDD;border-radius:3px;background:#fff;cursor:pointer;box-sizing:border-box;z-index:2;pointer-events:none}.CDB-Checkbox-face::after,.CDB-Checkbox-face::before{display:block;position:absolute;bottom:3px;width:2px;border-radius:1px;background:#fff;content:''}.CDB-Checkbox-face::before{right:4px;height:8px;transform:rotate(45deg)}.CDB-Checkbox-face::after{left:4px;height:6px;transform:rotate(-45deg)}.CDB-Checkbox:checked+.CDB-Checkbox-face{transition:background,.3s;border:1px solid #1181FB;background:#1181FB}.CDB-Checkbox:checked+.CDB-Checkbox-face::after,.CDB-Checkbox:checked+.CDB-Checkbox-face::before,.CDB-Checkbox:checked:hover+.CDB-Checkbox-face::after,.CDB-Checkbox:checked:hover+.CDB-Checkbox-face::before{background:#fff}.CDB-Checkbox:checked:hover+.CDB-Checkbox-face{border:1px solid #1181FB}.CDB-Checkbox:hover+.CDB-Checkbox-face{border:1px solid #AAA}.CDB-Checkbox:hover+.CDB-Checkbox-face::after,.CDB-Checkbox:hover+.CDB-Checkbox-face::before{background:#AAA}.CDB-Checkbox:active+.CDB-Checkbox-face{border:1px solid #1181FB}.CDB-Checkbox:active+.CDB-Checkbox-face::after,.CDB-Checkbox:active+.CDB-Checkbox-face::before{background:#1181FB}.CDB-Checkbox:disabled+.CDB-Checkbox-face{border:1px solid #EEE;background:#F9F9F9}.CDB-DropdownContainer{position:relative;height:250px}.CDB-Dropdown{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-flex-direction:row;-moz-flex-direction:row;-ms-flex-direction:row;flex-direction:row;position:absolute;top:40px;max-height:200px}.CDB-Dropdown-calculations{padding:14px;border-right:1px solid #DDD;border-radius:4px 0 0 4px;background-color:#F2F6F9;box-sizing:border-box}.CDB-Dropdown-calculationsElement{margin-bottom:16px;color:#2E3C43;font-size:10px}.CDB-Dropdown-calculationsElement:last-child{margin-bottom:0}.CDB-Dropdown-options{width:160px;border-radius:0 4px 4px 0;background-color:#fff;vertical-align:top}.CDB-InputText,.CDB-InputTextPlain{width:100%;line-height:16px;box-sizing:border-box;font-size:12px}.CDB-Dropdown-optionsElement{text-overflow:ellipsis;padding:12px 10px;border-bottom:1px solid #DDD;color:#1181FB}.CDB-Dropdown-optionsElement:last-child{border-bottom:0}.CDB-Dropdown-optionsElement:hover{background-color:rgba(157,224,173,.2);color:#2E3C43;cursor:pointer}.CDB-Dropdown-optionsElement.is-selected{color:#2E3C43}.CDB-Dropdown-optionsElement.is-disabled,.CDB-InputText.is-empty{color:#CBCED0}.CDB-Dropdown-optionsElement.is-disabled:hover{background-color:transparent;cursor:default}.CDB-Fieldset,.CDB-OptionInput-container{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex}.CDB-InputText{min-height:32px;padding:7px 8px;border:1px solid #DDD;border-radius:4px}.CDB-InputText.is-cursor{cursor:pointer}.CDB-InputText.is-number{color:#5fcc79}.CDB-InputText.is-null{color:#CBCED0;font-style:italic}.CDB-InputText:hover{border:1px solid #AAA}.CDB-InputText:focus{border:1px solid #1181FB;outline:0}.CDB-InputText.is-disabled,.CDB-InputText:disabled{border-color:#EEE;background:#F9F9F9;cursor:default}.CDB-InputText.has-icon{padding-right:32px}.CDB-InputText.has-error{border:1px solid rgba(241,87,67,.48);background:rgba(241,87,67,.04);color:#F15743}.CDB-InputTextPlain{border:0;background:0 0}.CDB-FieldError .CDB-InputText{border:1px solid rgba(241,87,67,.48);background:rgba(241,87,67,.04);color:#F15743}.CDB-Legend{width:96px}.CDB-Legend--big{width:192px}.CDB-Fieldset{display:flex;-webkit-align-items:center;-moz-align-items:center;-ms-align-items:center;align-items:center;-ms-flex-align:center}.CDB-Fieldset-block{width:100%}.CDB-OptionInput{width:100%;height:32px;border:1px solid #DDD;border-radius:4px;box-sizing:border-box;vertical-align:middle}.CDB-OptionInput:hover{border:1px solid #AAA}.CDB-OptionInput.is-active,.CDB-OptionInput:focus{border:1px solid #1181FB}.CDB-OptionInput-container{display:flex;-webkit-align-content:center;-moz-align-content:center;-ms-align-content:center;align-content:center;-webkit-align-items:center;-moz-align-items:center;-ms-align-items:center;align-items:center;-ms-flex-align:center;margin:0 8px}.CDB-OptionInput-container--noMargin{margin:0}.CDB-OptionInput-item{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-align-items:center;-moz-align-items:center;-ms-align-items:center;align-items:center;-webkit-align-content:center;-moz-align-content:center;-ms-align-content:center;align-content:center;-ms-flex-align:center;width:auto;height:100%;font-size:12px;box-sizing:content-box}.CDB-OptionInput-item::after{width:1px;height:100%;margin-right:8px;background-color:#EEE}.CDB-OptionInput-item:last-child{width:100%}.CDB-OptionInput-item:last-child::after{display:none}.CDB-OptionInput-content{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-align-items:center;-moz-align-items:center;-ms-align-items:center;align-items:center;-ms-flex-align:center;height:100%;margin-left:-8px;padding:0 10px;color:#2E3C43;box-sizing:content-box;white-space:nowrap}.CDB-OptionInput-item:first-child .CDB-OptionInput-content{border-bottom-left-radius:4px}.CDB-OptionInput-item.is-active>.CDB-OptionInput-content{border-bottom:1px solid #2E3C43}.CDB-Radio{position:absolute;width:16px;height:16px;vertical-align:middle;z-index:1}.CDB-Radio-face{position:relative;width:16px;height:16px;border:1px solid #DDD;border-radius:50%;background:#fff;text-indent:20px;cursor:pointer;box-sizing:border-box}.CDB-Radio-face::before{position:absolute;top:50%;left:50%;width:6px;height:6px;margin-top:-3px;margin-left:-3px;border-radius:50%;background:#fff}.CDB-SelectFake,.CDB-Textarea{width:100%;font-size:12px;line-height:16px;box-sizing:border-box}.CDB-Radio:checked+.CDB-Radio-face{transition:background,.3s;border:1px solid #1181FB;background:#1181FB}.CDB-Radio:checked+.CDB-Radio-face::before{background:#fff}.CDB-Radio:disabled+.CDB-Radio-face{border:1px solid #EEE;background:#F9F9F9}.CDB-Radio:disabled:hover+.CDB-Radio-face{border:1px solid #EEE}.CDB-Radio:hover+.CDB-Radio-face{border:1px solid #AAA}.CDB-Radio:hover+.CDB-Radio-face::before{background:#AAA}.CDB-Radio:checked:hover+.CDB-Radio-face,.CDB-Radio:focus+.CDB-Radio-face{border:1px solid #1181FB}.CDB-Radio:checked:hover+.CDB-Radio-face::before{background:#fff}.CDB-Radio:active+.CDB-Radio-face::before{background:#1181FB}.CDB-Select{position:relative}.CDB-SelectItem{position:absolute;top:40px}.CDB-SelectFake{-webkit-appearance:none;appearance:none;padding:7px 8px 6px;border:1px solid #DDD;border-radius:4px;background:#fff}.CDB-SelectFake:hover{border:1px solid #AAA}.CDB-SelectFake:focus{border:1px solid #1181FB;outline:0}.CDB-SelectFake:disabled{border-color:#EEE;background:#F9F9F9}.CDB-FieldError .CDB-Select,.CDB-FieldError .CDB-SelectFake,.CDB-SelectFake.has-error{border:1px solid rgba(241,87,67,.48);background:rgba(241,87,67,.04);color:#F15743}.CDB-TabsForms{border:1px solid #DDD;border-radius:4px}.CDB-TabsForms-inner{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex}.CDB-TabsForms-item{border-left:1px solid #EEE}.CDB-TabsForms-item:first-child{border-left:0}.CDB-TabsForms-button{padding:7px 8px}.CDB-Textarea{padding:7px 8px 6px;border:1px solid #DDD;border-radius:4px}.CDB-Textarea:hover{border:1px solid #AAA}.CDB-Textarea:focus{border:1px solid #1181FB;outline-color:transparent;outline-style:none}a:active,a:hover,button,input{outline:0}.CDB-Textarea.is-disabled,.CDB-Textarea:disabled{border-color:#EEE;background:#F9F9F9}.CDB-FieldError .CDB-Textarea,.CDB-Textarea.has-error,.CDB-Textarea:has-error{border:1px solid rgba(241,87,67,.48);background:rgba(241,87,67,.04);color:#F15743}.CDB-Toggle{position:absolute;width:32px;height:16px;z-index:1}.CDB-IconFont.is-disabled,.Toggle .is-disabled{opacity:.24}.CDB-Toggle+.CDB-ToggleFace{-webkit-transition:background,.3s;-khtml-transition:background,.3s;-moz-transition:background,.3s;-ms-transition:background,.3s;-o-transition:background,.3s;transition:background,.3s;position:relative;width:32px;height:16px;margin:0 2px;border-radius:50px;background:#CBCED0}.CDB-Toggle+.CDB-ToggleFace::before{position:absolute;top:2px;left:2px;width:12px;height:12px;border-radius:50%;background:#fff;box-shadow:0 1px 2px 0 rgba(0,0,0,.48)}.CDB-Toggle:checked+.CDB-ToggleFace{background:#9DE0AD}.CDB-Toggle:checked+.CDB-ToggleFace::before{right:2px;left:auto}.CDB-HeaderInfo{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-align-items:flex-start;-moz-align-items:flex-start;-ms-align-items:flex-start;align-items:flex-start;-ms-flex-align:flex-start}.CDB-HeaderInfo.is-block{display:block}.CDB-HeaderInfo-listItem{display:inline-block;margin-right:8px;vertical-align:middle}.CDB-HeaderInfo-title,.CDB-ListTag{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex}.CDB-HeaderInfo-listItem:last-child{margin-right:0}.CDB-HeaderInfo-inner{-webkit-box-flex:1;-moz-box-flex:1;-webkit-flex:1;-ms-flex:1;flex:1}.CDB-HeaderInfo-back{margin-top:7px}.CDB-HeaderInfo-title{display:flex;-webkit-align-items:center;-moz-align-items:center;-ms-align-items:center;align-items:center;-ms-flex-align:center}.CDB-HeaderInfo-titleText{-webkit-box-flex:1;-moz-box-flex:1;-webkit-flex:1;-ms-flex:1;flex:1;width:0;padding-right:16px;text-overflow:ellipsis}.CDB-HeaderInfo-actionsItem{display:inline-block;margin-left:4px;vertical-align:middle}.CDB-HeaderNumeration{width:24px;min-width:24px;height:24px;border:1px solid #DDD;border-radius:4px;background-color:#fff;color:#979EA1;font-size:10px;line-height:23px;text-align:center;box-sizing:border-box}.CDB-ListDecoration-item{border-bottom:1px solid #EEE}.CDB-ListDecoration-item:last-child{border-bottom:0}.CDB-ListDecoration-itemPadding{padding:12px 16px}.CDB-ListDecoration-itemPadding--horizontal{padding:0 16px}.CDB-ListDecoration-itemPadding--vertical{padding:12px 0}.CDB-ListDecoration-itemLink{display:block;max-width:100%;padding:12px 16px;text-align:left}.CDB-Loader{position:absolute;top:0;left:0;width:50%;height:3px;transform:translateX(-200%);background-image:linear-gradient(90deg,#1181fb 0,#32BBFE 90%,#FAFEFF 95%);z-index:2}.CDB-Loader.is-visible{-webkit-animation:loader-progress 1s cubic-bezier(0,.85,.6,.6) infinite;-khtml-animation:loader-progress 1s cubic-bezier(0,.85,.6,.6) infinite;-moz-animation:loader-progress 1s cubic-bezier(0,.85,.6,.6) infinite;-ms-animation:loader-progress 1s cubic-bezier(0,.85,.6,.6) infinite;-o-animation:loader-progress 1s cubic-bezier(0,.85,.6,.6) infinite;animation:loader-progress 1s cubic-bezier(0,.85,.6,.6) infinite}@-webkit-keyframes loader-progress{from{transform:translateX(-200%)}to{transform:translateX(200%)}}@-moz-keyframes loader-progress{from{transform:translateX(-200%)}to{transform:translateX(200%)}}@-ms-keyframes loader-progress{from{transform:translateX(-200%)}to{transform:translateX(200%)}}@-o-keyframes loader-progress{from{transform:translateX(-200%)}to{transform:translateX(200%)}}@keyframes loader-progress{from{transform:translateX(-200%)}to{transform:translateX(200%)}}.CDB-LoaderIcon-spinner{animation:rotate 2s linear infinite;width:16px;height:16px}.CDB-LoaderIcon--small .CDB-LoaderIcon-spinner{width:14px;height:14px}.CDB-LoaderIcon--big .CDB-LoaderIcon-spinner{width:40px;height:40px}.CDB-LoaderIcon-path{stroke:rgba(255,255,255,.88);stroke-linecap:round;animation:dash 1.5s ease-in-out infinite;stroke-width:4px}.CDB-LoaderIcon--big .CDB-LoaderIcon-path{stroke-width:2px}.CDB-LoaderIcon.is-dark .CDB-LoaderIcon-path{stroke:rgba(0,0,0,.24)}.CDB-LoaderIcon.is-blue .CDB-LoaderIcon-path{stroke:#1181FB}@keyframes rotate{100%{transform:rotate(360deg)}}@keyframes dash{0%{stroke-dasharray:1,150;stroke-dashoffset:0}50%{stroke-dasharray:90,150;stroke-dashoffset:-35}100%{stroke-dasharray:90,150;stroke-dashoffset:-124}}.CDB-NavMenu{position:relative;z-index:2}.CDB-NavMenu-inner{position:relative;margin-bottom:18px;border-bottom:1px solid #DDD}.CDB-NavMenu-inner--no-margin{margin-bottom:0}.CDB-NavMenu-inner--is-dropdown{padding:8px 0 0 16px}.CDB-NavMenu-link{display:block;margin-bottom:-1px;padding:4px 0 11px;border-bottom:1px solid transparent;color:#1181FB}.CDB-NavMenu-item,.CDB-NavSubmenu-item{display:inline-block;margin-right:12px;vertical-align:middle}.CDB-NavMenu-item.is-selected .CDB-NavMenu-link{border-bottom:1px solid #000;color:#2E3C43}.CDB-NavSubmenu{border-bottom:1px solid #EEE}.CDB-NavSubmenu--inside{position:absolute;right:0;left:0;padding-top:14px}.CDB-NavSubmenu--outside{margin-top:-5px;margin-bottom:18px}.CDB-NavSubmenu-link{display:block;margin-bottom:-1px;padding-bottom:12px;border-bottom:1px solid transparent;color:#1181FB}.CDB-NavSubmenu-item.is-selected .CDB-NavSubmenu-link{border-bottom:1px solid #DDD;color:#2E3C43}.CDB-NavSubmenu-status{margin-left:2px}.CDB-NavMenu.is-dark .CDB-NavMenu-inner,.CDB-NavMenu.is-dark .CDB-NavSubmenu{border-bottom:1px solid #636D72}.CDB-NavMenu.is-dark .CDB-NavMenu-link,.CDB-NavMenu.is-dark .CDB-NavSubmenu-link{color:#979EA1}.CDB-NavMenu.is-dark .CDB-NavMenu-item.is-selected .CDB-NavMenu-link,.CDB-NavMenu.is-dark .CDB-NavSubmenu-item.is-selected .CDB-NavSubmenu-link{border-bottom:1px solid #DDD;color:#fff}.CDB-NavMenu.is-dark .CDB-NavSubmenu-status{color:#636D72}.CDB-Shape-add{position:relative;height:100%}.CDB-Shape-add.is-small::before,.CDB-Shape-add::before{height:1px;display:block;position:absolute;background:#2E3C43;content:''}.CDB-Shape-add::before{right:1px;bottom:7px;left:0}.CDB-Shape-add::after{display:block;position:absolute;top:1;bottom:0;left:7px;width:1px;background:#2E3C43;content:''}.CDB-Shape-add.is-small::before{right:3px;bottom:7px;left:4px}.CDB-Shape-add.is-small::after{display:block;position:absolute;top:4px;bottom:3px;left:8px;width:1px;background:#2E3C43;content:''}.CDB-Shape-add.is-blue::after,.CDB-Shape-add.is-blue::before{background:#1181FB}.CDB-Shape-add.is-white::after,.CDB-Shape-add.is-white::before{background:#fff}.CDB-Shape-Arrow{position:relative;width:1px;height:8px;background:#2E3C43}.CDB-Shape-Arrow::after,.CDB-Shape-Arrow::before{position:absolute;top:2px;width:5px;height:1px;background:#2E3C43;content:'';display:block}.CDB-Shape-Arrow::before{left:0;transform:rotate(45deg)}.CDB-Shape-Arrow::after{left:-4px;transform:rotate(-45deg)}.CDB-Shape-Arrow.is-up{top:6px;right:9px;transform:rotate(45deg)}.CDB-Shape-Arrow.is-down{top:13px;left:46px;transform:rotate(-135deg)}.CDB-Shape-Arrow.is-blue,.CDB-Shape-Arrow.is-blue::after,.CDB-Shape-Arrow.is-blue::before{background:#1181FB}.CDB-Shape-Arrow.is-white,.CDB-Shape-Arrow.is-white::after,.CDB-Shape-Arrow.is-white::before{background:#fff}.CDB-Shape-CircleItem.is-small{transform:translateY(2px)}.CDB-Shape-tick{display:block;position:relative;height:100%}.CDB-Shape-tick::after,.CDB-Shape-tick::before{position:absolute;width:1px;background:#2E3C43;content:'';display:block}.CDB-Shape-tick::before{transform:rotate(-45deg)}.CDB-Shape-tick::after{transform:rotate(45deg)}.CDB-Shape-tick.is-medium::before{top:5px;left:4px;height:4px}.CDB-Shape-tick.is-medium::after{top:3px;right:5px;height:6px}.CDB-Shape-tick.is-small::before{top:4px;left:2px;height:3px}.CDB-Shape-tick.is-small::after{top:2px;right:3px;height:5px}.CDB-Shape-tick.is-blue::after,.CDB-Shape-tick.is-blue::before{background:#1181FB}.CDB-Shape-tick.is-white::after,.CDB-Shape-tick.is-white::before{background:#fff}.CDB-Shape-tick.is-green::after,.CDB-Shape-tick.is-green::before{background:#9DE0AD}.CDB-Shape-close{display:block;position:relative;height:100%}.CDB-Shape-close::after,.CDB-Shape-close::before{position:absolute;width:1px;background:#2E3C43;content:'';display:block}.CDB-Shape-close::before{transform:rotate(-45deg)}.CDB-Shape-close::after{transform:rotate(45deg)}.CDB-Shape-close.is-huge::before{top:-2px;left:7px;height:20px}.CDB-Shape-close.is-huge::after{top:-2px;right:8px;height:20px}.CDB-Shape-close.is-large::before{top:2px;left:7px;height:12px}.CDB-Shape-close.is-large::after{top:2px;right:8px;height:12px}.CDB-Shape-close.is-medium::before{top:3px;left:6px;height:7px}.CDB-Shape-close.is-medium::after{top:3px;right:6px;height:7px}.CDB-Shape-close.is-small::before{top:2px;left:4px;height:5px}.CDB-Shape-close.is-small::after{top:2px;right:4px;height:5px}.CDB-Shape-close.is-blue::after,.CDB-Shape-close.is-blue::before{background:#1181FB}.CDB-Shape-close.is-white::after,.CDB-Shape-close.is-white::before{background:#fff}.CDB-Shape-close.is-red::after,.CDB-Shape-close.is-red::before{background:#F15743}.CDB-Shape-dash{position:relative;height:100%}.CDB-Shape-dash::before{display:block;position:absolute;right:2px;bottom:7px;left:2px;height:1px;background:#2E3C43;content:''}.CDB-Shape-dash.is-small::before{right:3px;left:3px}.CDB-Shape-dash.is-blue::before{background:#1181FB}.CDB-Shape-dash.is-white::before{background:#fff}.CDB-Shape-Dataset{padding-top:1px}.CDB-Shape-Dataset.is-small{padding-top:0}.CDB-Shape-DatasetItem{display:inline-block;width:9px;height:9px;margin-left:-10px;border:1px solid #2E3C43;border-radius:50%;background:#fff}.CDB-Shape-DatasetItem:first-child{position:relative;margin-left:0;box-shadow:3px 0 0 #fff;z-index:1}.CDB-Shape-Dataset.is-small .CDB-Shape-DatasetItem{width:6px;height:6px;margin-left:-7px}.CDB-Shape-Dataset.is-small .CDB-Shape-DatasetItem:first-child{margin-left:0;box-shadow:2px 0 0 #fff}.CDB-Shape-Dataset.is-blue .CDB-Shape-DatasetItem{border:1px solid #1181FB}.CDB-Shape-Dataset.is-grey .CDB-Shape-DatasetItem{border:1px solid #AAA}.CDB-Shape-Dataset.is-white .CDB-Shape-DatasetItem{border:1px solid #AAA;background:#2E3C43}.CDB-Shape-Dataset.is-white .CDB-Shape-DatasetItem:first-child{box-shadow:3px 0 #2E3C43}.CDB-Shape-Dataset.is-white.is-small .CDB-Shape-DatasetItem:first-child{box-shadow:2px 0 #2E3C43}.CDB-Shape-dot{display:inline-block;width:8px;height:8px;border-radius:50%;background:#EEE}.CDB-Shape-dot.is-selected{background:#636D72}.CDB-Shape-CircleItem{width:13px;height:13px;border:1px solid #2E3C43;border-radius:50%}.CDB-Shape-CircleItem.is-small{width:9px;height:9px;margin:0 auto}.CDB-Shape-CircleItem.is-blue{border:1px solid #1181FB}.CDB-Shape-CircleItem.is-white{border:1px solid #fff}.CDB-Shape-CircleItem.is-green{border:1px solid #9DE0AD}.CDB-Shape-CircleItem.is-red{border:1px solid #F15743}.CDB-Shape-CircleItem--fill.is-blue{border:1px solid #1181FB;background:#1181FB}.CDB-Shape-CircleItem--fill.is-white{border:1px solid #fff;background:#fff}.CDB-Shape-CircleItem--fill.is-green{border:1px solid #9DE0AD;background:#9DE0AD}.CDB-Shape-CircleItem--fill.is-red{border:1px solid #F15743;background:#F15743}.CDB-Shape-hamburguer{width:16px}.CDB-Shape-hamburguer:hover{cursor:pointer}.CDB-Shape-hamburguerItem{height:2px;margin-bottom:2px;background:#2E3C43}.CDB-Shape-hamburguerItem:last-child{margin-bottom:0}.CDB-Shape-hamburguer.is-blue .CDB-Shape-hamburguerItem{background:#1181FB}.CDB-Shape-hamburguer.is-white .CDB-Shape-hamburguerItem{background:#fff}.CDB-Shape-magnify{display:block;position:relative;height:100%}.CDB-Shape-magnify.is-small::after,.CDB-Shape-magnify::after,.CDB-Shape-magnify::before{display:block;position:absolute;content:''}.CDB-Shape-magnify::before{top:0;left:0;width:11px;height:11px;border:1px solid #2E3C43;border-radius:50%}.CDB-Shape-magnify::after{right:2px;bottom:-1px;width:1px;height:7px;transform:rotate(314deg);background:#2E3C43}.CDB-Shape-magnify.is-blue::before{border:1px solid #1181FB}.CDB-Shape-magnify.is-blue::after{background:#1181FB}.CDB-Shape-magnify.is-white::before{border:1px solid #fff}.CDB-Shape-threePointsItem.is-round,.CDB-Type-circle{border-radius:50%}.CDB-Shape-magnify.is-white::after{background:#fff}.CDB-Shape-magnify.is-small::before{top:3px;left:4px;width:5px;height:5px}.CDB-Shape-magnify.is-small::after{right:4px;bottom:3px;width:1px;height:5px;transform:rotate(314deg)}.CDB-Shape-rectsHandle{position:relative;padding:1px 0 0}.CDB-Shape-rectsHandle.is-small{padding:3px 0 0 1px}.CDB-Shape-rectsHandle.is-small .CDB-Shape-rectsHandleItem{height:2px;margin-bottom:2px}.CDB-Shape-rectsHandle.is-small .CDB-Shape-rectsHandleItem::before{left:5px;width:2px;height:2px}.CDB-Shape-rectsHandle.is-small .CDB-Shape-rectsHandleItem::after{width:2px;height:2px}.CDB-Shape-rectsHandleItem::after,.CDB-Shape-rectsHandleItem::before{display:block;position:absolute;width:3px;background:#2E3C43;content:''}.CDB-Shape-rectsHandleItem{height:3px;margin-bottom:3px}.CDB-Shape-rectsHandleItem:last-child{margin-bottom:0}.CDB-Shape-rectsHandleItem::before{left:4px;height:3px}.CDB-Shape-rectsHandleItem::after{left:9px;height:3px}.CDB-Shape-rectsHandleItem--blue::after,.CDB-Shape-rectsHandleItem--blue::before{background:#1181FB}.CDB-Shape-rectsHandleItem--white::after,.CDB-Shape-rectsHandleItem--white::before{background:#fff}.CDB-Shape-rectsHandleItem--grey::after,.CDB-Shape-rectsHandleItem--grey::before{background:#AAA}.CDB-Shape-paragraph{padding-top:3px;text-align:left}.CDB-Shape-paragraph.is-center{text-align:center}.CDB-Shape-paragraph.is-right{text-align:right}.CDB-Shape-paragraphItem{height:1px;margin-bottom:2px}.CDB-Shape-paragraphItem:last-child{margin-bottom:0}.CDB-Shape-paragraphBar{display:inline-block;height:1px;margin-bottom:2px;background:#EEE;vertical-align:top}.CDB-Shape-paragraph.is-active .CDB-Shape-paragraphBar{background:#1181FB}.CDB-Shape-paragraphBar--01{width:12px}.CDB-Shape-paragraphBar--02{width:6px}.CDB-Shape-paragraphBar--03{width:8px}.CDB-Shape-paragraphBar--04{width:4px}.CDB-Shape-threePoints{display:inline-block;padding:0 4px}.CDB-Shape-threePoints.is-horizontal{transform:rotate(90deg);padding:4px 0}.CDB-Shape-threePoints.is-medium,.CDB-Shape-threePoints.is-small{padding-top:2px}.CDB-Shape-threePointsItem{width:2px;height:2px;margin-bottom:5px;background:#2E3C43}.CDB-Shape-threePointsItem:last-child{margin-bottom:0}.CDB-Shape-threePoints.is-small .CDB-Shape-threePointsItem{width:2px;height:2px;margin-bottom:3px}.CDB-Shape-threePoints.is-medium .CDB-Shape-threePointsItem{width:4px;height:4px;margin-bottom:3px}.CDB-Shape-threePoints.is-blue .CDB-Shape-threePointsItem{background:#1181FB}.CDB-Shape-threePoints.is-white .CDB-Shape-threePointsItem{background:#fff}.CDB-ArrowToogle{position:relative;height:100%}.CDB-ArrowToogle::after,.CDB-ArrowToogle::before{position:absolute;top:8px;width:10px;height:1px;background:#2E3C43;display:block;content:''}.CDB-ArrowToogle::before{left:0;transform:rotate(-45deg)}.CDB-ArrowToogle::after{right:-1px;transform:rotate(45deg)}.CDB-ArrowToogle.is-down{transform:rotate(180deg)}.CDB-ArrowToogle.is-small::before{left:2px;width:8px}.CDB-ArrowToogle.is-small::after{right:1px;width:8px}.CDB-ArrowToogle.is-blue::after,.CDB-ArrowToogle.is-blue::before{background:#1181FB}.CDB-ArrowToogle.is-white::after,.CDB-ArrowToogle.is-white::before{background:#fff}.CDB-Shape{width:16px;height:16px;text-align:center}.CDB-Shape--small{width:8px;height:8px}.CDB-Shape--medium{width:24px;height:24px}.CDB-Shape:hover{cursor:pointer}.CDB-Type{position:relative;width:100%;height:100%}.CDB-Type-circle{position:absolute;width:3px;height:3px;background:#AAA}.CDB-Type-circle--01{top:0;left:0}.CDB-Type-circle--02{top:0;right:0}.CDB-Type-circle--03{bottom:0;left:0}.CDB-Type-circle--04{right:0;bottom:0}.CDB-Type--polygon::before{display:block;position:absolute;top:1px;right:1px;bottom:1px;left:1px;border:1px solid #AAA;content:''}.CDB-Type--line::before{display:block;position:absolute;top:0;right:0;bottom:0;left:3px;width:1px;transform:rotate(45deg);background:#AAA;content:''}.CDB-Tag{padding:0 3px;border:1px solid #1181FB;border-radius:2px;color:#1181FB}.CDB-Tag.is-public{border:1px solid #9BC63B;color:#9BC63B}.CDB-Tag.is-link{border:1px solid #FEB100;color:#FEB100}.CDB-Tag.is-password{border:1px solid #FB7B23;color:#FB7B23}.CDB-Tag.is-private{border:1px solid #F15743;color:#F15743}.CDB-ListTag{display:flex}.CDB-ListTag-item{margin-right:8px}.CDB-Tag.CDB-Tag--withLink{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;padding:4px 4px 4px 8px;border-radius:4px;background:rgba(17,129,251,.16)}.CDB-Tag.CDB-Tag--opaque{padding:2px 4px;border:0;border-radius:2px;background:rgba(0,0,0,.04)}.CDB-InfoTooltip{display:inline-block;position:absolute;padding:8px;border-radius:4px;background:rgba(46,60,67,.8)}.CDB-InfoTooltip::after{display:block;position:absolute;width:0;height:0;border:4px solid transparent;content:''}.is-black.CDB-InfoTooltip.CDB-InfoTooltip--up::after{border-bottom-color:rgba(46,60,67,.8)}.is-black.CDB-InfoTooltip.CDB-InfoTooltip--down::after{border-top-color:rgba(46,60,67,.8)}.is-black.CDB-InfoTooltip.CDB-InfoTooltip--left::after{border-right-color:rgba(46,60,67,.8)}.is-black.CDB-InfoTooltip.CDB-InfoTooltip--right::after{border-left-color:rgba(46,60,67,.8)}.is-error.CDB-InfoTooltip.CDB-InfoTooltip--up::after{border-bottom-color:#F15743}.is-error.CDB-InfoTooltip.CDB-InfoTooltip--down::after{border-top-color:#F15743}.is-error.CDB-InfoTooltip.CDB-InfoTooltip--left::after{border-right-color:#F15743}.is-error.CDB-InfoTooltip.CDB-InfoTooltip--right::after{border-left-color:#F15743}.CDB-InfoTooltip.CDB-InfoTooltip--up::after{top:-8px;left:calc(50% - 4px);border-top-width:4px;border-top-style:solid}.CDB-InfoTooltip.CDB-InfoTooltip--down::after{bottom:-8px;left:calc(50% - 4px);border-top-width:4px;border-top-style:solid}.CDB-InfoTooltip.CDB-InfoTooltip--left::after{top:calc(50% - 4px);left:-8px;border-right-width:4px;border-right-style:solid}.CDB-InfoTooltip.CDB-InfoTooltip--right::after{top:calc(50% - 4px);right:-8px;border-right-width:4px;border-right-style:solid}.CDB-InfoTooltip.is-error{background:#F15743}.CDB-InfoTooltip-text{color:#fff}.CDB-Text{font-family:'Open Sans'}.CDB-Text.is-semibold{font-weight:600}.CDB-Text.is-light{font-weight:300}.is-underlined{border-bottom:1px dotted #DDD}.CDB-Size-huge{font-size:26px;line-height:34px}.CDB-Size-large{font-size:16px;line-height:22px}.CDB-Size-medium{font-size:12px;line-height:16px}.CDB-Size-small{font-size:10px;line-height:14px}.CDB-Size-small.u-whiteTextColor{-webkit-font-smoothing:initial}.CDB-FontSize-small{font-size:10px}.CDB-FontSize-medium{font-size:12px}@font-face{font-family:CartoIcon;src:url(../fonts/cartoIcon.eot);src:url(../fonts/cartoIcon.eot?#iefix) format("embedded-opentype"),url(../fonts/cartoIcon.woff) format("woff"),url(../fonts/cartoIcon.ttf) format("truetype"),url(../fonts/cartoIcon.svg?ey3vsq#cartoIcon) format("svg");font-weight:400;font-style:normal}.CDB-IconFont{display:inline-block;font-family:CartoIcon;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;line-height:1}.CDB-IconFont--center{vertical-align:middle}.CDB-IconFont--top{vertical-align:top}.CDB-IconFont--small{font-size:11px}.CDB-IconFont-clock::before{content:'\E001'}.CDB-IconFont-stats::before{content:'\E002'}.CDB-IconFont-heartEmpty::before{content:'\E003'}.CDB-IconFont-heartFill::before{content:'\E004'}.CDB-IconFont-alert::before{content:'\E005'}.CDB-IconFont-rows::before{content:'\E006'}.CDB-IconFont-check::before{content:'\E007'}.CDB-IconFont-dribbble::before{content:'\E008'}.CDB-IconFont-twitter::before{content:'\E009'}.CDB-IconFont-caretDown::before{content:'\E00A'}.CDB-IconFont-lightbulb::before{content:'\E00B'}.CDB-IconFont-explore::before{content:'\E00C'}.CDB-IconFont-drop::before{content:'\E00D'}.CDB-IconFont-edition::before{content:'\E00E'}.CDB-IconFont-view::before{content:'\E00F'}.CDB-IconFont-odyssey::before{content:'\E010'}.CDB-IconFont-settings::before{content:'\E011'}.CDB-IconFont-downloadCircle::before{content:'\E012'}.CDB-IconFont-pencilMenu::before{content:'\E013'}.CDB-IconFont-mobile::before{content:'\E014'}.CDB-IconFont-wizard::before{content:'\E015'}.CDB-IconFont-undo::before{content:'\E016'}.CDB-IconFont-redo::before{content:'\E017'}.CDB-IconFont-lArrowLight::before{content:'\E018'}.CDB-IconFont-hide::before{content:'\E019'}.CDB-IconFont-info::before{content:'\E01A'}.CDB-IconFont-fork::before{content:'\E01B'}.CDB-IconFont-facebook::before{content:'\E01C'}.CDB-IconFont-folder::before{content:'\E01D'}.CDB-IconFont-dropbox::before{content:'\E01E'}.CDB-IconFont-cloud::before{content:'\E01F'}.CDB-IconFont-step::before{content:'\E020'}.CDB-IconFont-addDocument::before{content:'\E021'}.CDB-IconFont-arrowNext::before{content:'\E022'}.CDB-IconFont-arrowPrev::before{content:'\E023'}.CDB-IconFont-close::before{content:'\E024'}.CDB-IconFont-cartoFante::before{content:'\E025'}.CDB-IconFont-lock::before{content:'\E026'}.CDB-IconFont-cartoDB::before{content:'\E027'}.CDB-IconFont-lens::before{content:'\E028'}.CDB-IconFont-closeLimits::before{content:'\E029'}.CDB-IconFont-defaultUser::before{content:'\E02A'}.CDB-IconFont-cockroach::before{content:'\E02B'}.CDB-IconFont-floppy::before{content:'\E02C'}.CDB-IconFont-trash::before{content:'\E02D'}.CDB-IconFont-wifi::before{content:'\E02E'}.CDB-IconFont-unlock::before{content:'\E02F'}.CDB-IconFont-unlockWithEllipsis::before{content:'\E030'}.CDB-IconFont-gift::before{content:'\E031'}.CDB-IconFont-people::before{content:'\E032'}.CDB-IconFont-play::before{content:'\E033'}.CDB-IconFont-add::before{content:'\E034'}.CDB-IconFont-map::before{content:'\E035'}.CDB-IconFont-anchor::before{content:'\E036'}.CDB-IconFont-key::before{content:'\E037'}.CDB-IconFont-calendar::before{content:'\E038'}.CDB-IconFont-document::before{content:'\E039'}.CDB-IconFont-eye::before{content:'\E03A'}.CDB-IconFont-marker::before{content:'\E03B'}.CDB-IconFont-progressBar::before{content:'\E03C'}.CDB-IconFont-book::before{content:'\E03D'}.CDB-IconFont-notes::before{content:'\E03E'}.CDB-IconFont-rectangles::before{content:'\E03F'}.CDB-IconFont-mountain::before{content:'\E040'}.CDB-IconFont-points::before{content:'\E041'}.CDB-IconFont-snake::before{content:'\E042'}.CDB-IconFont-boss::before{content:'\E043'}.CDB-IconFont-rocket::before{content:'\E044'}.CDB-IconFont-barometer::before{content:'\E045'}.CDB-IconFont-dollar::before{content:'\E046'}.CDB-IconFont-email::before{content:'\E047'}.CDB-IconFont-label::before{content:'\E048'}.CDB-IconFont-outside::before{content:'\E049'}.CDB-IconFont-jigsaw::before{content:'\E04A'}.CDB-IconFont-tools::before{content:'\E04B'}.CDB-IconFont-question::before{content:'\E04C'}.CDB-IconFont-layerStack::before{content:'\E04D'}.CDB-IconFont-alarm::before{content:'\E04E'}.CDB-IconFont-cloudDownArrow::before{content:'\E04F'}.CDB-IconFont-pencil::before{content:'\E050'}.CDB-IconFont-fountainPen::before{content:'\E051'}.CDB-IconFont-emptyDoc::before{content:'\E052'}.CDB-IconFont-mergeArrow::before{content:'\E053'}.CDB-IconFont-mergeColumns::before{content:'\E054'}.CDB-IconFont-mergeSpatial::before{content:'\E055'}.CDB-IconFont-globe::before{content:'\E056'}.CDB-IconFont-chevronDown::before{content:'\E057'}.CDB-IconFont-streets::before{content:'\E058'}.CDB-IconFont-keys::before{content:'\E059'}.CDB-IconFont-facebookSquare::before{content:'\E05A'}.CDB-IconFont-fullscreen::before{content:'\E05B'}.CDB-IconFont-rArrowLight::before{content:'\E05C'}.CDB-IconFont-share::before{content:'\E05D'}.CDB-IconFont-linkedin::before{content:'\E05E'}.CDB-IconFont-calendarBlank::before{content:'\E05F'}.CDB-IconFont-creativeCommons::before{content:'\E060'}.CDB-IconFont-bubble::before{content:'\E061'}.CDB-IconFont-bars::before{content:'\E062'}.CDB-IconFont-arrowMenuLight::before{content:'\E063'}.CDB-IconFont-tieFighter::before{content:'\E064'}.CDB-IconFont-ray::before{content:'\E065'}.CDB-IconFont-markup::before{content:'\E066'}.CDB-IconFont-table::before{content:'\E067'}.CDB-IconFont-airlock::before{content:'\E068'}.CDB-IconFont-pin::before{content:'\E069'}.CDB-IconFont-attache::before{content:'\E06A'}.CDB-IconFont-download::before{content:'\E06B'}.CDB-IconFont-group::before{content:'\E06C'}.CDB-IconFont-dashboard::before{content:'\E06D'}.CDB-IconFont-spinner::before{content:'\E06E'}.CDB-IconFont-mapsearch::before{content:'\E06F'}.CDB-IconFont-rArrow::before{content:'\E070'}body{color:#2E3C43}.u-actionTextColor,a{color:#1181FB}a{background-color:transparent}a:hover{text-decoration:underline}@font-face{font-family:'Open Sans';font-style:normal;font-weight:300;src:url(../fonts/OpenSans-Light.eot);src:url(../fonts/OpenSans-Light.eot?#iefix) format("embedded-opentype"),url(../fonts/OpenSans-Light.woff) format("woff"),url(../fonts/OpenSans-Light.ttf) format("truetype")}@font-face{font-family:'Open Sans';font-style:normal;font-weight:400;src:url(../fonts/OpenSans-Regular.eot);src:url(../fonts/OpenSans-Regular.eot?#iefix) format("embedded-opentype"),url(../fonts/OpenSans-Regular.woff) format("woff"),url(../fonts/OpenSans-Regular.ttf) format("truetype")}@font-face{font-family:'Open Sans';font-style:normal;font-weight:600;src:url(../fonts/OpenSans-Semibold.eot);src:url(../fonts/OpenSans-Semibold.eot?#iefix) format("embedded-opentype"),url(../fonts/OpenSans-Semibold.woff) format("woff"),url(../fonts/OpenSans-Semibold.ttf) format("truetype")}.u-tSpace{margin-top:4px}.u-tSpace--m{margin-top:8px}.u-tSpace-xl{margin-top:12px}.u-rSpace--s{margin-right:2px}.u-rSpace{margin-right:4px}.u-rSpace--m{margin-right:8px}.u-rSpace--xl{margin-right:12px}.u-bSpace{margin-bottom:4px}.u-bSpace--m{margin-bottom:8px}.u-bSpace--xl{margin-bottom:12px}.u-lSpace{margin-left:4px}.u-lSpace--xl{margin-left:12px}.u-ellipsis{text-overflow:ellipsis}.u-mainTextColor{color:#2E3C43}.u-secondaryTextColor{color:#636D72}.u-altTextColor{color:#979EA1}.u-hintTextColor{color:#CBCED0}.u-alertTextColor{color:#F19243}.u-whiteTextColor{color:#fff}.u-errorTextColor{color:#F15743}.u-iBlock{display:inline-block;vertical-align:middle}.u-showDesktop{display:block!important}.u-showMobile{display:none!important}.u-flex{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex}.u-justifySpace{-webkit-justify-content:space-between;-moz-justify-content:space-between;-ms-justify-content:space-between;justify-content:space-between;-ms-flex-pack:space-between}.u-justifyCenter{-webkit-justify-content:center;-moz-justify-content:center;-ms-justify-content:center;justify-content:center;-ms-flex-pack:center}.u-justifyStart{-webkit-justify-content:flex-start;-moz-justify-content:flex-start;-ms-justify-content:flex-start;justify-content:flex-start;-ms-flex-pack:flex-start}.u-justifyEnd{-webkit-justify-content:flex-end;-moz-justify-content:flex-end;-ms-justify-content:flex-end;justify-content:flex-end;-ms-flex-pack:flex-end}.u-alignStart{-webkit-align-items:flex-start;-moz-align-items:flex-start;-ms-align-items:flex-start;align-items:flex-start;-ms-flex-align:flex-start}.u-alignCenter{-webkit-align-items:center;-moz-align-items:center;-ms-align-items:center;align-items:center;-ms-flex-align:center}.u-alignEnd{-webkit-align-items:flex-end;-moz-align-items:flex-end;-ms-align-items:flex-end;align-items:flex-end;-ms-flex-align:flex-end}@media only screen and (max-width:600px){.u-showDesktop{display:none!important}.u-showMobile{display:block!important}}html{-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}abbr[title]{border-bottom:1px dotted}mark{background:#ff0;color:#000}sub,sup{line-height:0;position:relative}sup{top:-.5em}sub{bottom:-.25em}svg:not(:root){overflow:hidden}hr{box-sizing:content-box;height:0}pre,textarea{overflow:auto}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible;margin:0;padding:0;border:none;background:0 0;box-sizing:border-box}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input[type=checkbox],input[type=radio]{-moz-appearance:none;-webkit-appearance:none;appearance:none;box-sizing:border-box;padding:0;outline:0;cursor:pointer}input[type=range]::-webkit-slider-thumb{-moz-appearance:none;-webkit-appearance:none;appearance:none}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-appearance:textfield;box-sizing:content-box}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}optgroup{font-weight:700}input{line-height:normal;-moz-appearance:none;-webkit-appearance:none;appearance:none}a,abbr,acronym,address,applet,article,aside,audio,b,big,blockquote,body,canvas,caption,center,cite,code,dd,del,details,dfn,div,dl,dt,em,embed,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,html,i,iframe,img,ins,kbd,label,legend,li,mark,menu,nav,object,ol,output,p,pre,q,ruby,s,samp,section,small,span,strike,strong,sub,summary,sup,table,tbody,td,tfoot,th,thead,time,tr,tt,u,ul,var,video{margin:0;padding:0;border:0;font:inherit;font-size:100%;vertical-align:baseline}body{margin:0;line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:after,blockquote:before,q:after,q:before{content:''}table{border-collapse:collapse;border-spacing:0}dd,dt{display:inline-block} \ No newline at end of file diff --git a/src/fonts/OpenSans-Light.eot b/fonts/OpenSans-Light.eot similarity index 100% rename from src/fonts/OpenSans-Light.eot rename to fonts/OpenSans-Light.eot diff --git a/src/fonts/OpenSans-Light.ttf b/fonts/OpenSans-Light.ttf old mode 100755 new mode 100644 similarity index 100% rename from src/fonts/OpenSans-Light.ttf rename to fonts/OpenSans-Light.ttf diff --git a/src/fonts/OpenSans-Light.woff b/fonts/OpenSans-Light.woff similarity index 100% rename from src/fonts/OpenSans-Light.woff rename to fonts/OpenSans-Light.woff diff --git a/src/fonts/OpenSans-Regular.eot b/fonts/OpenSans-Regular.eot similarity index 100% rename from src/fonts/OpenSans-Regular.eot rename to fonts/OpenSans-Regular.eot diff --git a/src/fonts/OpenSans-Regular.ttf b/fonts/OpenSans-Regular.ttf old mode 100755 new mode 100644 similarity index 100% rename from src/fonts/OpenSans-Regular.ttf rename to fonts/OpenSans-Regular.ttf diff --git a/src/fonts/OpenSans-Regular.woff b/fonts/OpenSans-Regular.woff similarity index 100% rename from src/fonts/OpenSans-Regular.woff rename to fonts/OpenSans-Regular.woff diff --git a/src/fonts/OpenSans-Semibold.eot b/fonts/OpenSans-Semibold.eot similarity index 100% rename from src/fonts/OpenSans-Semibold.eot rename to fonts/OpenSans-Semibold.eot diff --git a/src/fonts/OpenSans-Semibold.ttf b/fonts/OpenSans-Semibold.ttf old mode 100755 new mode 100644 similarity index 100% rename from src/fonts/OpenSans-Semibold.ttf rename to fonts/OpenSans-Semibold.ttf diff --git a/src/fonts/OpenSans-Semibold.woff b/fonts/OpenSans-Semibold.woff similarity index 100% rename from src/fonts/OpenSans-Semibold.woff rename to fonts/OpenSans-Semibold.woff diff --git a/fonts/cartoIcon.eot b/fonts/cartoIcon.eot index c479fd1..934c4fb 100644 Binary files a/fonts/cartoIcon.eot and b/fonts/cartoIcon.eot differ diff --git a/fonts/cartoIcon.svg b/fonts/cartoIcon.svg index 95faee4..46331da 100644 --- a/fonts/cartoIcon.svg +++ b/fonts/cartoIcon.svg @@ -51,276 +51,297 @@ horiz-adv-x="500" d=" M458.3333329999996 270.5667543L458.3333329999996 291.5014482000006C458.3333329999996 314.3842010000008 439.7610320000004 333 416.8509379999996 333L41.4823957999997 333C18.5348739000001 333 0 314.4204654999994 0 291.5014482000006L0 41.5212410000004C0 18.6384880000005 18.5723011999999 0.0226889999994 41.4823957999997 0.0226889999994L323.0088020000003 0.0226889999994L229.1666670000004 0.0226889999994L229.1666670000004 20.8337709999996L41.4823957999997 20.8337709999996C30.1003708999997 20.8337709999996 20.8333333000001 30.1100139999999 20.8333333000001 41.5212410000004L20.8333333000001 291.5014482000006C20.8333333000001 302.9494474999992 30.0634509000001 312.1889181000006 41.4823957999997 312.1889181000006L416.8509379999996 312.1889181000006C428.2329620000001 312.1889181000006 437.5 302.9126754000008 437.5 291.5014482000006L437.5 270.5667543L458.3333329999996 270.5667543z M497.3853079999999 149.3760249999996L454.0595730000005 194.0726599999998C450.6801660000001 197.5589980000004 445.186463 197.5589980000004 441.8070559999997 194.0726599999998L329.1601449999999 77.8614080000007C328.1723179999999 76.8423239999993 327.5657579999998 75.6265760000006 327.1498309999997 74.3393130000004C327.1151700000001 74.2141620000002 326.9938579999998 74.124769 326.9591980000005 73.9817399999993L309.6289040000002 11.4064500000004C308.7623889999996 8.295564 309.6115730000002 4.9343769999996 311.8298510000004 2.6280299999999C313.4762289999999 0.9295579999998 315.6771760000002 0.0177469999999 317.9474449999998 0.0177469999999C318.7446380000001 0.0177469999999 319.5418319999999 0.1250189999992 320.3216949999997 0.3574410000001L380.9777240000003 18.2360960000005C381.0990359999996 18.2718530000002 381.1856870000002 18.397003 381.3243300000004 18.432761C382.5721110000004 18.8618480000005 383.7505709999996 19.4876010000007 384.7383980000004 20.5066850000003L497.3853079999999 136.7179369999995C500.7647159999997 140.2221539999991 500.7647159999997 145.8718079999999 497.3853079999999 149.3760249999996L497.3853079999999 149.3760249999996zM378.6034739999996 39.4759369999993L347.5302570000004 71.5323640000006L413.2640620000002 139.3461000000007L444.3372790000003 107.2896720000008L378.6034739999996 39.4759369999993L378.6034739999996 39.4759369999993zM339.5583210000005 54.4761280000002L362.0703730000005 31.2517559999997L330.5638989999998 21.9727340000009L339.5583210000005 54.4761280000002L339.5583210000005 54.4761280000002zM456.5897960000002 119.929881L425.5165790000001 151.9863079999996L447.9246489999996 175.1034080000009L478.9978659999997 143.0469809999995L456.5897960000002 119.929881L456.5897960000002 119.929881z" /> + horiz-adv-x="500" d=" M471.1960670000008 220.6112940000003C468.6592870000004 222.7702989999998 466.4509839999992 225.0756130000009 463.7010229999996 228.1592189999992C461.7324970000009 230.3665810000002 459.5724740000005 232.9013969999997 456.2912849999993 236.8225459999994C456.2348480000001 236.8899899999997 449.5926369999998 244.8512310000006 447.4096229999996 247.4500229999994C428.7365480000008 269.6795779999993 412.6629670000002 287.2538580000001 394.0431320000007 304.7193380000008C344.7754609999993 350.9326139999994 296.2390670000005 377.2498329999999 250.9930399999994 377.2498329999999C202.0460039999998 377.2498329999999 150.5073219999995 351.9256960000003 102.4172949999993 309.1259950000004C83.9404873999993 292.681799 67.2191012999992 274.6517729999996 54.2710955999992 257.9615310000009C49.1796635999999 251.3985720000001 45.0628096 245.5214190000006 42.4195884000001 241.1871219999994C41.5462179999995 239.7549870000003 41.0017054 238.7631440000005 40.8804115000003 238.5016269999997C42.4533613000003 241.8930049999999 43.4872395999992 245.10203 43.4872395999992 252.1663329999992C43.4872395999992 259.2306349999999 42.4533613000003 262.4396610000004 40.8804115000003 265.8310380000003C41.0017054 265.5695209999995 41.5462179999995 264.5776779999997 42.4195884000001 263.1455440000009C45.0628096 258.8112459999993 49.1796635999999 252.9340940000002 54.2710955999992 246.3711349999994C67.2191012999992 229.6808930000007 83.9404873999993 211.6508670000003 102.4172949999993 195.2066699999996C150.5073219999995 152.4069689999997 202.0460039999998 127.0828320000001 250.9930399999994 127.0828320000001C296.2390670000005 127.0828320000001 344.7754609999993 153.4000510000005 394.0431320000007 199.6133269999991C412.6629670000002 217.0788080000002 428.7365480000008 234.6530870000006 447.4096229999996 256.8826420000005C449.5926369999998 259.4814339999994 456.2348480000001 267.4426750000003 456.2912849999993 267.5101200000008C459.5724740000005 271.4312680000003 461.7324970000009 273.9660839999997 463.7010229999996 276.1734460000007C466.4509839999992 279.2570529999994 468.6592870000004 281.5623660000001 471.1960670000008 283.721372C489.5854689999996 262.3043300000009 500 248.2439180000001 500 252.1663329999992C500 256.0887480000001 489.5854679999993 242.0283350000009 471.1960670000008 220.6112940000003L471.1960670000008 220.6112940000003zM471.1125100000008 221.6755649999996L471.1125100000008 221.6755649999996C429.6387429999995 173.2312189999993 346.1872970000004 85.3326649999999 249.9970119999998 85.3326649999999C112.4742650000007 85.3326649999999 0.9900516739999 239.3329740000009 0.9900516739999 252.1663329999992C0.9900516739999 264.9996919999994 112.4742650000007 419 249.9970119999998 419C346.1872970000004 419 429.6387429999995 331.1014460000006 471.1125100000008 282.6571000000004C467.6019770000003 279.4853729999996 464.6276610000004 275.7031569999999 462.3569189999998 271.4506820000006C458.6593040000007 264.5260670000007 457.5028120000006 258.2517680000001 457.5028120000006 252.1663329999992C457.5028120000006 246.0808969999998 458.6593040000007 239.8065979999992 462.3569189999998 232.8819829999993C464.6276610000004 228.629508 467.6019770000003 224.8472920000004 471.1125100000008 221.6755649999996L471.1125100000008 221.6755649999996z M210.7548430000006 252.1663329999992C210.7548430000006 275.1655449999999 229.4827750000004 293.8747490000005 252.5050100000008 293.8747490000005C275.5272449999993 293.8747490000005 294.2551769999991 275.1655449999999 294.2551769999991 252.1663329999992C294.2551769999991 229.1671200000001 275.5272449999993 210.4579159999994 252.5050100000008 210.4579159999994C229.4827750000004 210.4579159999994 210.7548430000006 229.1671200000001 210.7548430000006 252.1663329999992z" /> - + - + + + + + + + + diff --git a/fonts/cartoIcon.ttf b/fonts/cartoIcon.ttf index 6590735..77995b7 100644 Binary files a/fonts/cartoIcon.ttf and b/fonts/cartoIcon.ttf differ diff --git a/fonts/cartoIcon.woff b/fonts/cartoIcon.woff index 4acd669..4d9ccab 100644 Binary files a/fonts/cartoIcon.woff and b/fonts/cartoIcon.woff differ diff --git a/icon-font/font.sketch b/icon-font/font.sketch deleted file mode 100644 index 8f88b6a..0000000 Binary files a/icon-font/font.sketch and /dev/null differ diff --git a/icon-font/svgs/icon-font_01_Clock.svg b/icon-font/svgs/icon-font_01_Clock.svg deleted file mode 100644 index b3e741b..0000000 --- a/icon-font/svgs/icon-font_01_Clock.svg +++ /dev/null @@ -1,17 +0,0 @@ - - - - icon-font_01_Clock - Created with Sketch. - - - - - - - - - - - - \ No newline at end of file diff --git a/icon-font/svgs/icon-font_02_Stats.svg b/icon-font/svgs/icon-font_02_Stats.svg deleted file mode 100644 index e5ad332..0000000 --- a/icon-font/svgs/icon-font_02_Stats.svg +++ /dev/null @@ -1,16 +0,0 @@ - - - - icon-font_02_Stats - Created with Sketch. - - - - - - - - - - - \ No newline at end of file diff --git a/icon-font/svgs/icon-font_03_HeartEmpty.svg b/icon-font/svgs/icon-font_03_HeartEmpty.svg deleted file mode 100644 index 8d0a5bd..0000000 --- a/icon-font/svgs/icon-font_03_HeartEmpty.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - icon-font_03_HeartEmpty - Created with Sketch. - - - - - - - \ No newline at end of file diff --git a/icon-font/svgs/icon-font_04_HeartFill.svg b/icon-font/svgs/icon-font_04_HeartFill.svg deleted file mode 100644 index 164666e..0000000 --- a/icon-font/svgs/icon-font_04_HeartFill.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - icon-font_04_HeartFill - Created with Sketch. - - - - - - - \ No newline at end of file diff --git a/icon-font/svgs/icon-font_05_Alert.svg b/icon-font/svgs/icon-font_05_Alert.svg deleted file mode 100644 index 3adc3bf..0000000 --- a/icon-font/svgs/icon-font_05_Alert.svg +++ /dev/null @@ -1,14 +0,0 @@ - - - - icon-font_05_Alert - Created with Sketch. - - - - - - - - - \ No newline at end of file diff --git a/icon-font/svgs/icon-font_06_Rows.svg b/icon-font/svgs/icon-font_06_Rows.svg deleted file mode 100644 index 74e7b3b..0000000 --- a/icon-font/svgs/icon-font_06_Rows.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - icon-font_06_Rows - Created with Sketch. - - - - - - - \ No newline at end of file diff --git a/icon-font/svgs/icon-font_07_Check.svg b/icon-font/svgs/icon-font_07_Check.svg deleted file mode 100644 index 5435d68..0000000 --- a/icon-font/svgs/icon-font_07_Check.svg +++ /dev/null @@ -1,14 +0,0 @@ - - - - icon-font_07_Check - Created with Sketch. - - - - - - - - - \ No newline at end of file diff --git a/icon-font/svgs/icon-font_08_Dribbble.svg b/icon-font/svgs/icon-font_08_Dribbble.svg deleted file mode 100644 index bbc33bf..0000000 --- a/icon-font/svgs/icon-font_08_Dribbble.svg +++ /dev/null @@ -1,14 +0,0 @@ - - - - icon-font_08_Dribbble - Created with Sketch. - - - - - - - - - \ No newline at end of file diff --git a/icon-font/svgs/icon-font_09_Twitter.svg b/icon-font/svgs/icon-font_09_Twitter.svg deleted file mode 100644 index c89e41a..0000000 --- a/icon-font/svgs/icon-font_09_Twitter.svg +++ /dev/null @@ -1,14 +0,0 @@ - - - - icon-font_09_Twitter - Created with Sketch. - - - - - - - - - \ No newline at end of file diff --git a/icon-font/svgs/icon-font_100_caretDown.svg b/icon-font/svgs/icon-font_100_caretDown.svg deleted file mode 100644 index ace255f..0000000 --- a/icon-font/svgs/icon-font_100_caretDown.svg +++ /dev/null @@ -1,14 +0,0 @@ - - - - icon-font_100_caretDown - Created with Sketch. - - - - - - - - - \ No newline at end of file diff --git a/icon-font/svgs/icon-font_101_Lightbulb.svg b/icon-font/svgs/icon-font_101_Lightbulb.svg deleted file mode 100644 index 92b43be..0000000 --- a/icon-font/svgs/icon-font_101_Lightbulb.svg +++ /dev/null @@ -1,21 +0,0 @@ - - - - icon-font_101_Lightbulb - Created with Sketch. - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/icon-font/svgs/icon-font_102_Explore.svg b/icon-font/svgs/icon-font_102_Explore.svg deleted file mode 100644 index 42444cf..0000000 --- a/icon-font/svgs/icon-font_102_Explore.svg +++ /dev/null @@ -1,15 +0,0 @@ - - - - icon-font_102_Explore - Created with Sketch. - - - - - - - - - - \ No newline at end of file diff --git a/icon-font/svgs/icon-font_103_Drop.svg b/icon-font/svgs/icon-font_103_Drop.svg deleted file mode 100644 index 54d8cc5..0000000 --- a/icon-font/svgs/icon-font_103_Drop.svg +++ /dev/null @@ -1,14 +0,0 @@ - - - - icon-font_103_Drop - Created with Sketch. - - - - - - - - - \ No newline at end of file diff --git a/icon-font/svgs/icon-font_104_Edition.svg b/icon-font/svgs/icon-font_104_Edition.svg deleted file mode 100644 index 524d76a..0000000 --- a/icon-font/svgs/icon-font_104_Edition.svg +++ /dev/null @@ -1,15 +0,0 @@ - - - - icon-font_104_Edition - Created with Sketch. - - - - - - - - - - \ No newline at end of file diff --git a/icon-font/svgs/icon-font_105_View.svg b/icon-font/svgs/icon-font_105_View.svg deleted file mode 100644 index f92e0a9..0000000 --- a/icon-font/svgs/icon-font_105_View.svg +++ /dev/null @@ -1,15 +0,0 @@ - - - - icon-font_105_View - Created with Sketch. - - - - - - - - - - \ No newline at end of file diff --git a/icon-font/svgs/icon-font_106_Odyssey.svg b/icon-font/svgs/icon-font_106_Odyssey.svg deleted file mode 100644 index 8564f89..0000000 --- a/icon-font/svgs/icon-font_106_Odyssey.svg +++ /dev/null @@ -1,15 +0,0 @@ - - - - icon-font_106_Odyssey - Created with Sketch. - - - - - - - - - - \ No newline at end of file diff --git a/icon-font/svgs/icon-font_107_Settings.svg b/icon-font/svgs/icon-font_107_Settings.svg deleted file mode 100644 index d3d2d88..0000000 --- a/icon-font/svgs/icon-font_107_Settings.svg +++ /dev/null @@ -1,17 +0,0 @@ - - - - icon-font_107_Settings - Created with Sketch. - - - - - - - - - - - - \ No newline at end of file diff --git a/icon-font/svgs/icon-font_108_downloadCircle.svg b/icon-font/svgs/icon-font_108_downloadCircle.svg deleted file mode 100644 index e9906c7..0000000 --- a/icon-font/svgs/icon-font_108_downloadCircle.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - icon-font_108_downloadCircle - Created with Sketch. - - - - - - - \ No newline at end of file diff --git a/icon-font/svgs/icon-font_108_pencilMenu.svg b/icon-font/svgs/icon-font_108_pencilMenu.svg deleted file mode 100644 index aadb981..0000000 --- a/icon-font/svgs/icon-font_108_pencilMenu.svg +++ /dev/null @@ -1,14 +0,0 @@ - - - - icon-font_108_pencilMenu - Created with Sketch. - - - - - - - - - \ No newline at end of file diff --git a/icon-font/svgs/icon-font_109_Mobile.svg b/icon-font/svgs/icon-font_109_Mobile.svg deleted file mode 100644 index 1e3384b..0000000 --- a/icon-font/svgs/icon-font_109_Mobile.svg +++ /dev/null @@ -1,20 +0,0 @@ - - - - icon-font_109_Mobile - Created with Sketch. - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/icon-font/svgs/icon-font_10_Wizard.svg b/icon-font/svgs/icon-font_10_Wizard.svg deleted file mode 100644 index 001fb05..0000000 --- a/icon-font/svgs/icon-font_10_Wizard.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - icon-font_10_Wizard - Created with Sketch. - - - - - - - \ No newline at end of file diff --git a/icon-font/svgs/icon-font_110_Undo.svg b/icon-font/svgs/icon-font_110_Undo.svg deleted file mode 100644 index 0048437..0000000 --- a/icon-font/svgs/icon-font_110_Undo.svg +++ /dev/null @@ -1,14 +0,0 @@ - - - - icon-font_110_Undo - Created with Sketch. - - - - - - - - - \ No newline at end of file diff --git a/icon-font/svgs/icon-font_111_Redo.svg b/icon-font/svgs/icon-font_111_Redo.svg deleted file mode 100644 index 3e3226b..0000000 --- a/icon-font/svgs/icon-font_111_Redo.svg +++ /dev/null @@ -1,14 +0,0 @@ - - - - icon-font_111_Redo - Created with Sketch. - - - - - - - - - \ No newline at end of file diff --git a/icon-font/svgs/icon-font_112_lArrowLight.svg b/icon-font/svgs/icon-font_112_lArrowLight.svg deleted file mode 100644 index 2feb940..0000000 --- a/icon-font/svgs/icon-font_112_lArrowLight.svg +++ /dev/null @@ -1,14 +0,0 @@ - - - - icon-font_112_lArrowLight - Created with Sketch. - - - - - - - - - \ No newline at end of file diff --git a/icon-font/svgs/icon-font_113_Hide.svg b/icon-font/svgs/icon-font_113_Hide.svg deleted file mode 100644 index b262ee3..0000000 --- a/icon-font/svgs/icon-font_113_Hide.svg +++ /dev/null @@ -1,15 +0,0 @@ - - - - icon-font_113_Hide - Created with Sketch. - - - - - - - - - - \ No newline at end of file diff --git a/icon-font/svgs/icon-font_11_Info.svg b/icon-font/svgs/icon-font_11_Info.svg deleted file mode 100644 index d8b7a08..0000000 --- a/icon-font/svgs/icon-font_11_Info.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - icon-font_11_Info - Created with Sketch. - - - - - - - \ No newline at end of file diff --git a/icon-font/svgs/icon-font_12_Fork.svg b/icon-font/svgs/icon-font_12_Fork.svg deleted file mode 100644 index 4b02f5b..0000000 --- a/icon-font/svgs/icon-font_12_Fork.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - icon-font_12_Fork - Created with Sketch. - - - - - - - \ No newline at end of file diff --git a/icon-font/svgs/icon-font_13_Facebook.svg b/icon-font/svgs/icon-font_13_Facebook.svg deleted file mode 100644 index d4debe7..0000000 --- a/icon-font/svgs/icon-font_13_Facebook.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - icon-font_13_Facebook - Created with Sketch. - - - - - - - \ No newline at end of file diff --git a/icon-font/svgs/icon-font_14_Folder.svg b/icon-font/svgs/icon-font_14_Folder.svg deleted file mode 100644 index 7f66c56..0000000 --- a/icon-font/svgs/icon-font_14_Folder.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - icon-font_14_Folder - Created with Sketch. - - - - - - - \ No newline at end of file diff --git a/icon-font/svgs/icon-font_15_Dropbox.svg b/icon-font/svgs/icon-font_15_Dropbox.svg deleted file mode 100644 index 69c2f92..0000000 --- a/icon-font/svgs/icon-font_15_Dropbox.svg +++ /dev/null @@ -1,14 +0,0 @@ - - - - icon-font_15_Dropbox - Created with Sketch. - - - - - - - - - \ No newline at end of file diff --git a/icon-font/svgs/icon-font_16_Cloud.svg b/icon-font/svgs/icon-font_16_Cloud.svg deleted file mode 100644 index aff4589..0000000 --- a/icon-font/svgs/icon-font_16_Cloud.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - icon-font_16_Cloud - Created with Sketch. - - - - - - - \ No newline at end of file diff --git a/icon-font/svgs/icon-font_17_Step.svg b/icon-font/svgs/icon-font_17_Step.svg deleted file mode 100644 index 46ccff7..0000000 --- a/icon-font/svgs/icon-font_17_Step.svg +++ /dev/null @@ -1,14 +0,0 @@ - - - - icon-font_17_Step - Created with Sketch. - - - - - - - - - \ No newline at end of file diff --git a/icon-font/svgs/icon-font_18_AddDocument.svg b/icon-font/svgs/icon-font_18_AddDocument.svg deleted file mode 100644 index da1ca6e..0000000 --- a/icon-font/svgs/icon-font_18_AddDocument.svg +++ /dev/null @@ -1,14 +0,0 @@ - - - - icon-font_18_AddDocument - Created with Sketch. - - - - - - - - - \ No newline at end of file diff --git a/icon-font/svgs/icon-font_21_ArrowNext.svg b/icon-font/svgs/icon-font_21_ArrowNext.svg deleted file mode 100644 index 9be7423..0000000 --- a/icon-font/svgs/icon-font_21_ArrowNext.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - icon-font_21_ArrowNext - Created with Sketch. - - - - - - - \ No newline at end of file diff --git a/icon-font/svgs/icon-font_22_ArrowPrev.svg b/icon-font/svgs/icon-font_22_ArrowPrev.svg deleted file mode 100644 index bdc04cb..0000000 --- a/icon-font/svgs/icon-font_22_ArrowPrev.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - icon-font_22_ArrowPrev - Created with Sketch. - - - - - - - \ No newline at end of file diff --git a/icon-font/svgs/icon-font_23_Close.svg b/icon-font/svgs/icon-font_23_Close.svg deleted file mode 100644 index 0d40187..0000000 --- a/icon-font/svgs/icon-font_23_Close.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - icon-font_23_Close - Created with Sketch. - - - - - - - \ No newline at end of file diff --git a/icon-font/svgs/icon-font_24_CartoFante.svg b/icon-font/svgs/icon-font_24_CartoFante.svg deleted file mode 100644 index 7bb3094..0000000 --- a/icon-font/svgs/icon-font_24_CartoFante.svg +++ /dev/null @@ -1,19 +0,0 @@ - - - - icon-font_24_CartoFante - Created with Sketch. - - - - - - - - - - - - - - \ No newline at end of file diff --git a/icon-font/svgs/icon-font_25_Lock.svg b/icon-font/svgs/icon-font_25_Lock.svg deleted file mode 100644 index 933f393..0000000 --- a/icon-font/svgs/icon-font_25_Lock.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - icon-font_25_Lock - Created with Sketch. - - - - - - - \ No newline at end of file diff --git a/icon-font/svgs/icon-font_26_CartoDB.svg b/icon-font/svgs/icon-font_26_CartoDB.svg deleted file mode 100644 index 2536893..0000000 --- a/icon-font/svgs/icon-font_26_CartoDB.svg +++ /dev/null @@ -1,22 +0,0 @@ - - - - icon-font_26_CartoDB - Created with Sketch. - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/icon-font/svgs/icon-font_27_Lens.svg b/icon-font/svgs/icon-font_27_Lens.svg deleted file mode 100644 index 7e904d2..0000000 --- a/icon-font/svgs/icon-font_27_Lens.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - icon-font_27_Lens - Created with Sketch. - - - - - - - \ No newline at end of file diff --git a/icon-font/svgs/icon-font_28_CloseLimits.svg b/icon-font/svgs/icon-font_28_CloseLimits.svg deleted file mode 100644 index a68a682..0000000 --- a/icon-font/svgs/icon-font_28_CloseLimits.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - icon-font_28_CloseLimits - Created with Sketch. - - - - - - - \ No newline at end of file diff --git a/icon-font/svgs/icon-font_29_DefaultUser.svg b/icon-font/svgs/icon-font_29_DefaultUser.svg deleted file mode 100644 index 7d2c9c7..0000000 --- a/icon-font/svgs/icon-font_29_DefaultUser.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - icon-font_29_DefaultUser - Created with Sketch. - - - - - - - \ No newline at end of file diff --git a/icon-font/svgs/icon-font_30_Cockroach.svg b/icon-font/svgs/icon-font_30_Cockroach.svg deleted file mode 100644 index f7ae287..0000000 --- a/icon-font/svgs/icon-font_30_Cockroach.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - icon-font_30_Cockroach - Created with Sketch. - - - - - - - \ No newline at end of file diff --git a/icon-font/svgs/icon-font_31_Floppy.svg b/icon-font/svgs/icon-font_31_Floppy.svg deleted file mode 100644 index a246b40..0000000 --- a/icon-font/svgs/icon-font_31_Floppy.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - icon-font_31_Floppy - Created with Sketch. - - - - - - - \ No newline at end of file diff --git a/icon-font/svgs/icon-font_32_Trash.svg b/icon-font/svgs/icon-font_32_Trash.svg deleted file mode 100644 index 48340f6..0000000 --- a/icon-font/svgs/icon-font_32_Trash.svg +++ /dev/null @@ -1,19 +0,0 @@ - - - - icon-font_32_Trash - Created with Sketch. - - - - - - - - - - - - - - \ No newline at end of file diff --git a/icon-font/svgs/icon-font_33_Wifi.svg b/icon-font/svgs/icon-font_33_Wifi.svg deleted file mode 100644 index 7f894cf..0000000 --- a/icon-font/svgs/icon-font_33_Wifi.svg +++ /dev/null @@ -1,18 +0,0 @@ - - - - icon-font_33_Wifi - Created with Sketch. - - - - - - - - - - - - - \ No newline at end of file diff --git a/icon-font/svgs/icon-font_34_Unlock.svg b/icon-font/svgs/icon-font_34_Unlock.svg deleted file mode 100644 index c10b8a7..0000000 --- a/icon-font/svgs/icon-font_34_Unlock.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - icon-font_34_Unlock - Created with Sketch. - - - - - - - \ No newline at end of file diff --git a/icon-font/svgs/icon-font_35_UnlockWithEllipsis.svg b/icon-font/svgs/icon-font_35_UnlockWithEllipsis.svg deleted file mode 100644 index 0a452a5..0000000 --- a/icon-font/svgs/icon-font_35_UnlockWithEllipsis.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - icon-font_35_UnlockWithEllipsis - Created with Sketch. - - - - - - - \ No newline at end of file diff --git a/icon-font/svgs/icon-font_36_Gift.svg b/icon-font/svgs/icon-font_36_Gift.svg deleted file mode 100644 index c05647b..0000000 --- a/icon-font/svgs/icon-font_36_Gift.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - icon-font_36_Gift - Created with Sketch. - - - - - - - \ No newline at end of file diff --git a/icon-font/svgs/icon-font_37_People.svg b/icon-font/svgs/icon-font_37_People.svg deleted file mode 100644 index 39955db..0000000 --- a/icon-font/svgs/icon-font_37_People.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - icon-font_37_People - Created with Sketch. - - - - - - - \ No newline at end of file diff --git a/icon-font/svgs/icon-font_38_Play.svg b/icon-font/svgs/icon-font_38_Play.svg deleted file mode 100644 index d68246f..0000000 --- a/icon-font/svgs/icon-font_38_Play.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - icon-font_38_Play - Created with Sketch. - - - - - - - \ No newline at end of file diff --git a/icon-font/svgs/icon-font_39_Add.svg b/icon-font/svgs/icon-font_39_Add.svg deleted file mode 100644 index f05f2fb..0000000 --- a/icon-font/svgs/icon-font_39_Add.svg +++ /dev/null @@ -1,27 +0,0 @@ - - - - icon-font_39_Add - Created with Sketch. - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/icon-font/svgs/icon-font_40_Map.svg b/icon-font/svgs/icon-font_40_Map.svg deleted file mode 100644 index 937ab4e..0000000 --- a/icon-font/svgs/icon-font_40_Map.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - icon-font_40_Map - Created with Sketch. - - - - - - - \ No newline at end of file diff --git a/icon-font/svgs/icon-font_41_Anchor.svg b/icon-font/svgs/icon-font_41_Anchor.svg deleted file mode 100644 index 7ec37fc..0000000 --- a/icon-font/svgs/icon-font_41_Anchor.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - icon-font_41_Anchor - Created with Sketch. - - - - - - - \ No newline at end of file diff --git a/icon-font/svgs/icon-font_42_Key.svg b/icon-font/svgs/icon-font_42_Key.svg deleted file mode 100644 index a6ffcd3..0000000 --- a/icon-font/svgs/icon-font_42_Key.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - icon-font_42_Key - Created with Sketch. - - - - - - - \ No newline at end of file diff --git a/icon-font/svgs/icon-font_43_Calendar.svg b/icon-font/svgs/icon-font_43_Calendar.svg deleted file mode 100644 index c0f68f4..0000000 --- a/icon-font/svgs/icon-font_43_Calendar.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - icon-font_43_Calendar - Created with Sketch. - - - - - - - \ No newline at end of file diff --git a/icon-font/svgs/icon-font_44_Document.svg b/icon-font/svgs/icon-font_44_Document.svg deleted file mode 100644 index 8044e29..0000000 --- a/icon-font/svgs/icon-font_44_Document.svg +++ /dev/null @@ -1,14 +0,0 @@ - - - - icon-font_44_Document - Created with Sketch. - - - - - - - - - \ No newline at end of file diff --git a/icon-font/svgs/icon-font_45_Eye.svg b/icon-font/svgs/icon-font_45_Eye.svg deleted file mode 100644 index a164f58..0000000 --- a/icon-font/svgs/icon-font_45_Eye.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - icon-font_45_Eye - Created with Sketch. - - - - - - - \ No newline at end of file diff --git a/icon-font/svgs/icon-font_46_Marker.svg b/icon-font/svgs/icon-font_46_Marker.svg deleted file mode 100644 index d3d4e8a..0000000 --- a/icon-font/svgs/icon-font_46_Marker.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - icon-font_46_Marker - Created with Sketch. - - - - - - - \ No newline at end of file diff --git a/icon-font/svgs/icon-font_47_ProgressBar.svg b/icon-font/svgs/icon-font_47_ProgressBar.svg deleted file mode 100644 index d835596..0000000 --- a/icon-font/svgs/icon-font_47_ProgressBar.svg +++ /dev/null @@ -1,19 +0,0 @@ - - - - icon-font_47_ProgressBar - Created with Sketch. - - - - - - - - - - - - - - \ No newline at end of file diff --git a/icon-font/svgs/icon-font_48_Book.svg b/icon-font/svgs/icon-font_48_Book.svg deleted file mode 100644 index e37e587..0000000 --- a/icon-font/svgs/icon-font_48_Book.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - icon-font_48_Book - Created with Sketch. - - - - - - - \ No newline at end of file diff --git a/icon-font/svgs/icon-font_49_Notes.svg b/icon-font/svgs/icon-font_49_Notes.svg deleted file mode 100644 index e2fe2f0..0000000 --- a/icon-font/svgs/icon-font_49_Notes.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - icon-font_49_Notes - Created with Sketch. - - - - - - - \ No newline at end of file diff --git a/icon-font/svgs/icon-font_50_Rectangles.svg b/icon-font/svgs/icon-font_50_Rectangles.svg deleted file mode 100644 index 2b09a5b..0000000 --- a/icon-font/svgs/icon-font_50_Rectangles.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - icon-font_50_Rectangles - Created with Sketch. - - - - - - - \ No newline at end of file diff --git a/icon-font/svgs/icon-font_51_Mountain.svg b/icon-font/svgs/icon-font_51_Mountain.svg deleted file mode 100644 index e58cb93..0000000 --- a/icon-font/svgs/icon-font_51_Mountain.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - icon-font_51_Mountain - Created with Sketch. - - - - - - - \ No newline at end of file diff --git a/icon-font/svgs/icon-font_52_Points.svg b/icon-font/svgs/icon-font_52_Points.svg deleted file mode 100644 index 91ce106..0000000 --- a/icon-font/svgs/icon-font_52_Points.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - icon-font_52_Points - Created with Sketch. - - - - - - - \ No newline at end of file diff --git a/icon-font/svgs/icon-font_53_Snake.svg b/icon-font/svgs/icon-font_53_Snake.svg deleted file mode 100644 index 54c7c19..0000000 --- a/icon-font/svgs/icon-font_53_Snake.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - icon-font_53_Snake - Created with Sketch. - - - - - - - \ No newline at end of file diff --git a/icon-font/svgs/icon-font_54_Boss.svg b/icon-font/svgs/icon-font_54_Boss.svg deleted file mode 100644 index a6bf9b3..0000000 --- a/icon-font/svgs/icon-font_54_Boss.svg +++ /dev/null @@ -1,18 +0,0 @@ - - - - icon-font_54_Boss - Created with Sketch. - - - - - - - - - - - - - \ No newline at end of file diff --git a/icon-font/svgs/icon-font_55_Rocket.svg b/icon-font/svgs/icon-font_55_Rocket.svg deleted file mode 100644 index 5d4abe6..0000000 --- a/icon-font/svgs/icon-font_55_Rocket.svg +++ /dev/null @@ -1,16 +0,0 @@ - - - - icon-font_55_Rocket - Created with Sketch. - - - - - - - - - - - \ No newline at end of file diff --git a/icon-font/svgs/icon-font_56_Barometer.svg b/icon-font/svgs/icon-font_56_Barometer.svg deleted file mode 100644 index 48d14d8..0000000 --- a/icon-font/svgs/icon-font_56_Barometer.svg +++ /dev/null @@ -1,16 +0,0 @@ - - - - icon-font_56_Barometer - Created with Sketch. - - - - - - - - - - - \ No newline at end of file diff --git a/icon-font/svgs/icon-font_57_Dollar.svg b/icon-font/svgs/icon-font_57_Dollar.svg deleted file mode 100644 index c63544f..0000000 --- a/icon-font/svgs/icon-font_57_Dollar.svg +++ /dev/null @@ -1,15 +0,0 @@ - - - - icon-font_57_Dollar - Created with Sketch. - - - - - - - - - - \ No newline at end of file diff --git a/icon-font/svgs/icon-font_58_Email.svg b/icon-font/svgs/icon-font_58_Email.svg deleted file mode 100644 index 33bb782..0000000 --- a/icon-font/svgs/icon-font_58_Email.svg +++ /dev/null @@ -1,15 +0,0 @@ - - - - icon-font_58_Email - Created with Sketch. - - - - - - - - - - \ No newline at end of file diff --git a/icon-font/svgs/icon-font_59_Label.svg b/icon-font/svgs/icon-font_59_Label.svg deleted file mode 100644 index 9200a4d..0000000 --- a/icon-font/svgs/icon-font_59_Label.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - icon-font_59_Label - Created with Sketch. - - - - - - - \ No newline at end of file diff --git a/icon-font/svgs/icon-font_60_Outside.svg b/icon-font/svgs/icon-font_60_Outside.svg deleted file mode 100644 index d41eeb6..0000000 --- a/icon-font/svgs/icon-font_60_Outside.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - icon-font_60_Outside - Created with Sketch. - - - - - - - \ No newline at end of file diff --git a/icon-font/svgs/icon-font_61_Jigsaw.svg b/icon-font/svgs/icon-font_61_Jigsaw.svg deleted file mode 100644 index 10304ed..0000000 --- a/icon-font/svgs/icon-font_61_Jigsaw.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - icon-font_61_Jigsaw - Created with Sketch. - - - - - - - \ No newline at end of file diff --git a/icon-font/svgs/icon-font_62_Tools.svg b/icon-font/svgs/icon-font_62_Tools.svg deleted file mode 100644 index 3025b12..0000000 --- a/icon-font/svgs/icon-font_62_Tools.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - icon-font_62_Tools - Created with Sketch. - - - - - - - \ No newline at end of file diff --git a/icon-font/svgs/icon-font_63_Question.svg b/icon-font/svgs/icon-font_63_Question.svg deleted file mode 100644 index 3aa8500..0000000 --- a/icon-font/svgs/icon-font_63_Question.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - icon-font_63_Question - Created with Sketch. - - - - - - - \ No newline at end of file diff --git a/icon-font/svgs/icon-font_64_LayerStack.svg b/icon-font/svgs/icon-font_64_LayerStack.svg deleted file mode 100644 index ac65fc1..0000000 --- a/icon-font/svgs/icon-font_64_LayerStack.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - icon-font_64_LayerStack - Created with Sketch. - - - - - - - \ No newline at end of file diff --git a/icon-font/svgs/icon-font_65_Alarm.svg b/icon-font/svgs/icon-font_65_Alarm.svg deleted file mode 100644 index 2ac15d4..0000000 --- a/icon-font/svgs/icon-font_65_Alarm.svg +++ /dev/null @@ -1,18 +0,0 @@ - - - - icon-font_65_Alarm - Created with Sketch. - - - - - - - - - - - - - \ No newline at end of file diff --git a/icon-font/svgs/icon-font_66_CloudDownArrow.svg b/icon-font/svgs/icon-font_66_CloudDownArrow.svg deleted file mode 100644 index 6318b87..0000000 --- a/icon-font/svgs/icon-font_66_CloudDownArrow.svg +++ /dev/null @@ -1,15 +0,0 @@ - - - - icon-font_66_CloudDownArrow - Created with Sketch. - - - - - - - - - - \ No newline at end of file diff --git a/icon-font/svgs/icon-font_67_Pencil.svg b/icon-font/svgs/icon-font_67_Pencil.svg deleted file mode 100644 index 281770c..0000000 --- a/icon-font/svgs/icon-font_67_Pencil.svg +++ /dev/null @@ -1,15 +0,0 @@ - - - - icon-font_67_Pencil - Created with Sketch. - - - - - - - - - - \ No newline at end of file diff --git a/icon-font/svgs/icon-font_68_FountainPen.svg b/icon-font/svgs/icon-font_68_FountainPen.svg deleted file mode 100644 index 87eb2f7..0000000 --- a/icon-font/svgs/icon-font_68_FountainPen.svg +++ /dev/null @@ -1,17 +0,0 @@ - - - - icon-font_68_FountainPen - Created with Sketch. - - - - - - - - - - - - \ No newline at end of file diff --git a/icon-font/svgs/icon-font_69_EmptyDoc.svg b/icon-font/svgs/icon-font_69_EmptyDoc.svg deleted file mode 100644 index 0abc2c2..0000000 --- a/icon-font/svgs/icon-font_69_EmptyDoc.svg +++ /dev/null @@ -1,14 +0,0 @@ - - - - icon-font_69_EmptyDoc - Created with Sketch. - - - - - - - - - \ No newline at end of file diff --git a/icon-font/svgs/icon-font_70_MergeArrow.svg b/icon-font/svgs/icon-font_70_MergeArrow.svg deleted file mode 100644 index 8b35a9d..0000000 --- a/icon-font/svgs/icon-font_70_MergeArrow.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - icon-font_70_MergeArrow - Created with Sketch. - - - - - - - \ No newline at end of file diff --git a/icon-font/svgs/icon-font_71_MergeColumns.svg b/icon-font/svgs/icon-font_71_MergeColumns.svg deleted file mode 100644 index d5dd23d..0000000 --- a/icon-font/svgs/icon-font_71_MergeColumns.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - icon-font_71_MergeColumns - Created with Sketch. - - - - - - - \ No newline at end of file diff --git a/icon-font/svgs/icon-font_72_MergeSpatial.svg b/icon-font/svgs/icon-font_72_MergeSpatial.svg deleted file mode 100644 index 55ba759..0000000 --- a/icon-font/svgs/icon-font_72_MergeSpatial.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - icon-font_72_MergeSpatial - Created with Sketch. - - - - - - - \ No newline at end of file diff --git a/icon-font/svgs/icon-font_73_Globe.svg b/icon-font/svgs/icon-font_73_Globe.svg deleted file mode 100644 index bbdb446..0000000 --- a/icon-font/svgs/icon-font_73_Globe.svg +++ /dev/null @@ -1,20 +0,0 @@ - - - - icon-font_73_Globe - Created with Sketch. - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/icon-font/svgs/icon-font_74_ChevronDown.svg b/icon-font/svgs/icon-font_74_ChevronDown.svg deleted file mode 100644 index 8bb29fb..0000000 --- a/icon-font/svgs/icon-font_74_ChevronDown.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - icon-font_74_ChevronDown - Created with Sketch. - - - - - - - \ No newline at end of file diff --git a/icon-font/svgs/icon-font_75_Streets.svg b/icon-font/svgs/icon-font_75_Streets.svg deleted file mode 100644 index 7cb315d..0000000 --- a/icon-font/svgs/icon-font_75_Streets.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - icon-font_75_Streets - Created with Sketch. - - - - - - - \ No newline at end of file diff --git a/icon-font/svgs/icon-font_76_Keys.svg b/icon-font/svgs/icon-font_76_Keys.svg deleted file mode 100644 index 064a035..0000000 --- a/icon-font/svgs/icon-font_76_Keys.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - icon-font_76_Keys - Created with Sketch. - - - - - - - \ No newline at end of file diff --git a/icon-font/svgs/icon-font_77_FacebookSquare.svg b/icon-font/svgs/icon-font_77_FacebookSquare.svg deleted file mode 100644 index 093165f..0000000 --- a/icon-font/svgs/icon-font_77_FacebookSquare.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - icon-font_77_FacebookSquare - Created with Sketch. - - - - - - - \ No newline at end of file diff --git a/icon-font/svgs/icon-font_78_Fullscreen.svg b/icon-font/svgs/icon-font_78_Fullscreen.svg deleted file mode 100644 index 9726480..0000000 --- a/icon-font/svgs/icon-font_78_Fullscreen.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - icon-font_78_Fullscreen - Created with Sketch. - - - - - - - \ No newline at end of file diff --git a/icon-font/svgs/icon-font_79_rArrowLight.svg b/icon-font/svgs/icon-font_79_rArrowLight.svg deleted file mode 100644 index ba76778..0000000 --- a/icon-font/svgs/icon-font_79_rArrowLight.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - icon-font_79_rArrowLight - Created with Sketch. - - - - - - - \ No newline at end of file diff --git a/icon-font/svgs/icon-font_80_Share.svg b/icon-font/svgs/icon-font_80_Share.svg deleted file mode 100644 index 6b67136..0000000 --- a/icon-font/svgs/icon-font_80_Share.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - icon-font_80_Share - Created with Sketch. - - - - - - - \ No newline at end of file diff --git a/icon-font/svgs/icon-font_81_Linkedin.svg b/icon-font/svgs/icon-font_81_Linkedin.svg deleted file mode 100644 index 3f60381..0000000 --- a/icon-font/svgs/icon-font_81_Linkedin.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - icon-font_81_Linkedin - Created with Sketch. - - - - - - - \ No newline at end of file diff --git a/icon-font/svgs/icon-font_82_CalendarBlank.svg b/icon-font/svgs/icon-font_82_CalendarBlank.svg deleted file mode 100644 index 74083cf..0000000 --- a/icon-font/svgs/icon-font_82_CalendarBlank.svg +++ /dev/null @@ -1,15 +0,0 @@ - - - - icon-font_82_CalendarBlank - Created with Sketch. - - - - - - - - - - \ No newline at end of file diff --git a/icon-font/svgs/icon-font_83_CreativeCommons.svg b/icon-font/svgs/icon-font_83_CreativeCommons.svg deleted file mode 100644 index a7df97e..0000000 --- a/icon-font/svgs/icon-font_83_CreativeCommons.svg +++ /dev/null @@ -1,15 +0,0 @@ - - - - icon-font_83_CreativeCommons - Created with Sketch. - - - - - - - - - - \ No newline at end of file diff --git a/icon-font/svgs/icon-font_84_Bubble.svg b/icon-font/svgs/icon-font_84_Bubble.svg deleted file mode 100644 index 9986899..0000000 --- a/icon-font/svgs/icon-font_84_Bubble.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - icon-font_84_Bubble - Created with Sketch. - - - - - - - \ No newline at end of file diff --git a/icon-font/svgs/icon-font_85_Bars.svg b/icon-font/svgs/icon-font_85_Bars.svg deleted file mode 100644 index 7c7aa8e..0000000 --- a/icon-font/svgs/icon-font_85_Bars.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - icon-font_85_Bars - Created with Sketch. - - - - - - - \ No newline at end of file diff --git a/icon-font/svgs/icon-font_86_ArrowMenuLight.svg b/icon-font/svgs/icon-font_86_ArrowMenuLight.svg deleted file mode 100644 index 828f56c..0000000 --- a/icon-font/svgs/icon-font_86_ArrowMenuLight.svg +++ /dev/null @@ -1,15 +0,0 @@ - - - - icon-font_86_ArrowMenuLight - Created with Sketch. - - - - - - - - - - \ No newline at end of file diff --git a/icon-font/svgs/icon-font_87_TieFighter.svg b/icon-font/svgs/icon-font_87_TieFighter.svg deleted file mode 100644 index c10588f..0000000 --- a/icon-font/svgs/icon-font_87_TieFighter.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - icon-font_87_TieFighter - Created with Sketch. - - - - - - - \ No newline at end of file diff --git a/icon-font/svgs/icon-font_88_Ray.svg b/icon-font/svgs/icon-font_88_Ray.svg deleted file mode 100644 index 07b1601..0000000 --- a/icon-font/svgs/icon-font_88_Ray.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - icon-font_88_Ray - Created with Sketch. - - - - - - - \ No newline at end of file diff --git a/icon-font/svgs/icon-font_89_Markup.svg b/icon-font/svgs/icon-font_89_Markup.svg deleted file mode 100644 index a29fe80..0000000 --- a/icon-font/svgs/icon-font_89_Markup.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - icon-font_89_Markup - Created with Sketch. - - - - - - - \ No newline at end of file diff --git a/icon-font/svgs/icon-font_90_Table.svg b/icon-font/svgs/icon-font_90_Table.svg deleted file mode 100644 index 2b98fc4..0000000 --- a/icon-font/svgs/icon-font_90_Table.svg +++ /dev/null @@ -1,16 +0,0 @@ - - - - icon-font_90_Table - Created with Sketch. - - - - - - - - - - - \ No newline at end of file diff --git a/icon-font/svgs/icon-font_91_Airlock.svg b/icon-font/svgs/icon-font_91_Airlock.svg deleted file mode 100644 index 59f2f68..0000000 --- a/icon-font/svgs/icon-font_91_Airlock.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - icon-font_91_Airlock - Created with Sketch. - - - - - - - \ No newline at end of file diff --git a/icon-font/svgs/icon-font_92_Pin.svg b/icon-font/svgs/icon-font_92_Pin.svg deleted file mode 100644 index 2748462..0000000 --- a/icon-font/svgs/icon-font_92_Pin.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - icon-font_92_Pin - Created with Sketch. - - - - - - - \ No newline at end of file diff --git a/icon-font/svgs/icon-font_93_Attache.svg b/icon-font/svgs/icon-font_93_Attache.svg deleted file mode 100644 index 0866cb8..0000000 --- a/icon-font/svgs/icon-font_93_Attache.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - icon-font_93_Attache - Created with Sketch. - - - - - - - \ No newline at end of file diff --git a/icon-font/svgs/icon-font_94_Download.svg b/icon-font/svgs/icon-font_94_Download.svg deleted file mode 100644 index 652d25f..0000000 --- a/icon-font/svgs/icon-font_94_Download.svg +++ /dev/null @@ -1,17 +0,0 @@ - - - - icon-font_94_Download - Created with Sketch. - - - - - - - - - - - - \ No newline at end of file diff --git a/icon-font/svgs/icon-font_95_Group.svg b/icon-font/svgs/icon-font_95_Group.svg deleted file mode 100644 index 915dd03..0000000 --- a/icon-font/svgs/icon-font_95_Group.svg +++ /dev/null @@ -1,17 +0,0 @@ - - - - icon-font_95_Group - Created with Sketch. - - - - - - - - - - - - \ No newline at end of file diff --git a/icon-font/svgs/icon-font_96_Dashboard.svg b/icon-font/svgs/icon-font_96_Dashboard.svg deleted file mode 100644 index 8e4a691..0000000 --- a/icon-font/svgs/icon-font_96_Dashboard.svg +++ /dev/null @@ -1,14 +0,0 @@ - - - - icon-font_96_Dashboard - Created with Sketch. - - - - - - - - - \ No newline at end of file diff --git a/icon-font/svgs/icon-font_97_Spinner.svg b/icon-font/svgs/icon-font_97_Spinner.svg deleted file mode 100644 index e58e2e4..0000000 --- a/icon-font/svgs/icon-font_97_Spinner.svg +++ /dev/null @@ -1,14 +0,0 @@ - - - - icon-font_97_Spinner - Created with Sketch. - - - - - - - - - \ No newline at end of file diff --git a/icon-font/svgs/icon-font_98_Mapsearch.svg b/icon-font/svgs/icon-font_98_Mapsearch.svg deleted file mode 100644 index 45848d5..0000000 --- a/icon-font/svgs/icon-font_98_Mapsearch.svg +++ /dev/null @@ -1,15 +0,0 @@ - - - - icon-font_98_Mapsearch - Created with Sketch. - - - - - - - - - - \ No newline at end of file diff --git a/icon-font/svgs/icon-font_99_rArrow.svg b/icon-font/svgs/icon-font_99_rArrow.svg deleted file mode 100644 index 53d8c65..0000000 --- a/icon-font/svgs/icon-font_99_rArrow.svg +++ /dev/null @@ -1,20 +0,0 @@ - - - - icon-font_99_rArrow - Created with Sketch. - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/icon-font/template.jst.ejs b/icon-font/template.jst.ejs deleted file mode 100644 index 3552596..0000000 --- a/icon-font/template.jst.ejs +++ /dev/null @@ -1,57 +0,0 @@ -// Icon font elements -// ---------------------------------------------- - -// Do not import any file (variables, mixins,...) in this stylesheet. - -@font-face { - font-family: 'CartoIcon'; - src: url('../fonts/cartoIcon.eot'); - src: url('../fonts/cartoIcon.eot?#iefix') format('embedded-opentype'), - url('../fonts/cartoIcon.woff') format('woff'), - url('../fonts/cartoIcon.ttf') format('truetype'), - url('../fonts/cartoIcon.svg?ey3vsq#cartoIcon') format('svg'); - font-weight: normal; - font-style: normal; -} - -.CDB-IconFont { - display: inline-block; - font-family: 'CartoIcon'; - font-style: normal; - font-weight: normal; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; - line-height: 1; -} - -.CDB-IconFont--center { - vertical-align: middle; -} -.CDB-IconFont--top { - vertical-align: top; -} -.CDB-IconFont--small { - font-size: 11px; -} - -/* SG -# Typography/Icon font -All available icons in CartoDB. - -``` -<% _.each(glyphs, function(glyph) { %> -<% var name = glyph.fileName.split("_")[2].toCamelCase(); %> -
- -

<%= name %>

-
-<% }); %> -``` -*/ - -<% _.each(glyphs, function(glyph) { %> -<% var name = glyph.fileName.split("_")[2].toCamelCase(); %> -.CDB-IconFont-<%= name %>::before { - content: '\<%= glyph.codePoint %>'; -} -<% }); %> diff --git a/package.json b/package.json deleted file mode 100644 index 463b565..0000000 --- a/package.json +++ /dev/null @@ -1,62 +0,0 @@ -{ - "name": "cartoassets", - "description": "Share frontend assets between different CartoDB repositories", - "version": "0.1.32", - "homepage": "https://github.com/cartodb/CartoAssets", - "author": { - "name": "CartoDB", - "email": "contact@cartodb.com" - }, - "contributors": [ - "Javier Álvarez ", - "Emilio García ", - "Javier Arce " - ], - "repository": { - "type": "git", - "url": "git://github.com/cartodb/CartoAssets.git" - }, - "bugs": { - "url": "https://github.com/cartodb/CartoAssets/issues" - }, - "licenses": [ - { - "type": "MIT", - "url": "https://github.com/cartodb/CartoAssets/blob/master/LICENSE-MIT" - } - ], - "engines": { - "node": ">= 0.8.0" - }, - "devDependencies": { - "grunt": "~0.4.5", - "jquery": "~2.2.0", - "highlight.js": "~9.1.0", - "markdown-styleguide-generator": "~2.0.4", - "grunt-sass": "1.1.0", - "grunt-contrib-clean": "0.7.0", - "grunt-contrib-concat": "0.5.1", - "grunt-contrib-cssmin": "0.14.0", - "grunt-contrib-copy": "~0.5.0", - "grunt-contrib-connect": "0.11.2", - "grunt-contrib-watch": "0.6.1", - "grunt-gh-pages": "1.0.0", - "gulp": "3.8.10", - "gulp-iconfont": "1.0.0", - "gulp-iconfont-css": "0.0.9", - "gulp-install": "0.2.0", - "gulp-sketch": "0.0.7", - "grunt-shell": "1.1.2", - "load-grunt-tasks": "*" - }, - "keywords": [ - "library", - "CartoDB", - "share", - "assets", - "styleguide", - "shared components", - "editor", - "deep-insights" - ] -} diff --git a/src/fonts/cartoIcon.eot b/src/fonts/cartoIcon.eot deleted file mode 100644 index f862b16..0000000 Binary files a/src/fonts/cartoIcon.eot and /dev/null differ diff --git a/src/fonts/cartoIcon.svg b/src/fonts/cartoIcon.svg deleted file mode 100644 index 46331da..0000000 --- a/src/fonts/cartoIcon.svg +++ /dev/null @@ -1,348 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/fonts/cartoIcon.ttf b/src/fonts/cartoIcon.ttf deleted file mode 100644 index 1afe852..0000000 Binary files a/src/fonts/cartoIcon.ttf and /dev/null differ diff --git a/src/fonts/cartoIcon.woff b/src/fonts/cartoIcon.woff deleted file mode 100644 index ea740c0..0000000 Binary files a/src/fonts/cartoIcon.woff and /dev/null differ diff --git a/src/img/avatar-40x40.png b/src/img/avatar-40x40.png deleted file mode 100644 index a261d7d..0000000 Binary files a/src/img/avatar-40x40.png and /dev/null differ diff --git a/src/scss/cdb-components/avatars.scss b/src/scss/cdb-components/avatars.scss deleted file mode 100644 index 772a210..0000000 --- a/src/scss/cdb-components/avatars.scss +++ /dev/null @@ -1,53 +0,0 @@ -// Typography styles -// ---------------------------------------------- - -/* SG -# Avatars/List - -``` -
    -
  • - User Name -
  • -
  • - User Name -
  • -
  • - User Name -
  • -
  • - -
  • -
-``` -*/ - -@import '../cdb-variables/sizes'; -@import '../cdb-variables/colors'; - -.CDB-AvatarList { - padding-left: 12px; -} - -.CDB-AvatarList-item { - display: inline-block; - margin-left: -12px; - border: 2px solid $cWhite; - border-radius: 50%; - vertical-align: middle; -} - -.CDB-AvatarList-itemMore { - display: inline-block; - margin-left: -12px; - padding: 2px 6px; - border-left: 2px solid $cWhite; - border-radius: 50px; - background: $cSecondaryLine; -} - -.CDB-AvatarList-itemMedia { - width: 16px; - height: 16px; - border-radius: 50%; -} diff --git a/src/scss/cdb-components/boxes.scss b/src/scss/cdb-components/boxes.scss deleted file mode 100644 index d32fd51..0000000 --- a/src/scss/cdb-components/boxes.scss +++ /dev/null @@ -1,42 +0,0 @@ -// Menu styles -// ---------------------------------------------- - -/* SG -# Boxes/Dropdown - - -``` -
 
-``` -*/ - -@import '../cdb-utilities/mixins'; -@import '../cdb-variables/sizes'; -@import '../cdb-variables/colors'; - -.CDB-Box-modal { - min-width: 160px; - border: 1px solid $cMainLine; - border-radius: 4px; - background: $cWhite; - box-shadow: 0 $baseSize $baseSize * 2 0 rgba(0, 0, 0, 0.16); - box-sizing: border-box; -} - -.CDB-Box-modalHeader { - background: $cSecondaryBackground; -} -.CDB-Box-modalHeaderItem { - @include display-flex(); - padding: $baseSize + 4 $baseSize * 2; - border-bottom: 1px solid $cMainLine; -} -.CDB-Box-modalHeaderItem--block { - display: block; -} -.CDB-Box-modalHeaderItem--paddingHorizontal { - padding: 0 $baseSize * 2; -} -.CDB-Box-modalHeaderItem--paddingVertical { - padding: $baseSize + 4 0; -} diff --git a/src/scss/cdb-components/buttons.scss b/src/scss/cdb-components/buttons.scss deleted file mode 100644 index c7136c3..0000000 --- a/src/scss/cdb-components/buttons.scss +++ /dev/null @@ -1,366 +0,0 @@ -// Buttons styles -// ---------------------------------------------- - -/* SG -# Buttons/Primary - -Layout Component: -[CDB-Button][CDB-Button--primary | CDB-Button--secondary] - -``` - - - - - - - - - - - - - - - - -
-
-
- - - - - - - - - - - - - - - - - -
-
-
- - - - - - - - - - - - - - - - -
-
-
- -
- - - - - - - - - - - - - - - -
- -``` -*/ - -@import '../cdb-utilities/mixins'; -@import '../cdb-variables/sizes'; -@import '../cdb-variables/colors'; - - -.CDB-Button { - @include transition(background, 300ms); - padding: $baseSize + 1 $baseSize + 12; - border: 1px solid transparent; - border-radius: $baseSize / 2; - cursor: pointer; - box-sizing: border-box; - - .CDB-Button-Text { - display: block; - } - &.is-disabled { - cursor: default; - opacity: 0.24; - } -} - -.CDB-Button--small { - padding: $baseSize / 2 $baseSize + 4; -} - -.CDB-Button--big { - padding: $baseSize + 4 $baseSize + 12; -} - -.CDB-Button--icon { - padding: 7px 9px; -} - -.CDB-Button--primary { - background: $cBlue; - color: $cWhite; - - &:hover { - background: darken($cBlue, 8%); - } - &:active { - background: darken($cBlue, 16%); - } - - &.is-disabled { - &:hover { - background: $cBlue; - } - &:active { - background: $cBlue; - } - } -} - -.CDB-Button--alert { - background: $cAlert; - color: $cWhite; - - &:hover { - background: darken($cAlert, 8%); - } - &:active { - background: darken($cAlert, 16%); - } - - &.is-disabled { - &:hover { - background: $cAlert; - } - &:active { - background: $cAlert; - } - } -} - - -.CDB-Button--error, -.CDB-Button--negative { - background: $cError; - color: $cWhite; - - &:hover { - background: darken($cError, 8%); - } - &:active { - background: darken($cError, 16%); - } - - &.is-disabled { - &:hover { - background: $cError; - } - &:active { - background: $cError; - } - } -} - - - -// Buttons styles -// ---------------------------------------------- - -/* SG -# Buttons/Secondary - -``` - - - - - - - - - - - - -
-
-
- -
- - - - - - - - - - - - - - - -
- -``` -*/ - - -.CDB-Button--secondary { - border: 1px solid $cBlue; - color: $cBlue; - - &:hover { - background: rgba($cBlue, 0.08); - } - &:active { - background: $cBlue; - color: $cWhite; - } - - &.is-disabled { - &:hover { - background: transparent; - } - &:active { - background: transparent; - } - } -} - - -.CDB-Button--white { - border: 1px solid $cWhite; - color: $cWhite; - - &:hover { - background: rgba($cWhite, 0.08); - } - &:active { - background: rgba($cMainBg, 0.08); - color: $cWhite; - } - - &.is-disabled { - @include opacity(0.24); - &:hover { - background: transparent; - } - &:active { - background: transparent; - color: $cWhite; - } - } -} diff --git a/src/scss/cdb-components/colors.scss b/src/scss/cdb-components/colors.scss deleted file mode 100644 index 87fb7b7..0000000 --- a/src/scss/cdb-components/colors.scss +++ /dev/null @@ -1,129 +0,0 @@ -// Colors styles -// ---------------------------------------------- - -/* SG -# Colors/structure - - -``` -
-
-
-
-
-
-``` -*/ - -@import '../cdb-variables/colors'; - - -.Color-Blue { - background: $cBlue; -} -.Color-White { - border: 1px solid #E5E5E5; - background: $cWhite; -} -.Color-Dark { - background: $cBlack; -} - -.Color-MainDark { - background: $cMainBg; -} -.Color-SecondaryDark { - background: $cSecondaryDark; -} -.Color-SecondaryBackground { - background: $cSecondaryBackground; -} -.Color-ThirdBackground { - background: $cThirdBackground; -} - - -/* SG -# Colors/line - - -``` -
-
-
-
-``` -*/ - - -.Color-HoverLine { - background: $cHoverLine; -} -.Color-MainLine { - background: $cMainLine; -} -.Color-SecondaryLine { - background: $cSecondaryLine; -} - - -/* SG -# Colors/typography - - -``` -
-
-
-
-
-
-``` -*/ - - -.Color-Type02 { - background: $cSecondaryText; -} -.Color-Type03 { - background: $cAltText; -} -.Color-Type04 { - background: $cHintText; -} - - -/* SG -# Colors/other - - -``` -
-
-
- -
-
-``` -*/ - -.Color-Higlight { - background: $cHighlight; -} -.Color-Alert { - background: $cAlert; -} -.Color-Public { - background: $cPublic; -} -.Color-Link { - background: $cLink; -} -.Color-Password { - background: $cPassword; -} -.Color-Error { - background: $cError; -} - - diff --git a/src/scss/cdb-components/forms/checkbox.scss b/src/scss/cdb-components/forms/checkbox.scss deleted file mode 100644 index 8774a75..0000000 --- a/src/scss/cdb-components/forms/checkbox.scss +++ /dev/null @@ -1,103 +0,0 @@ -// CheckBoxes styles -// ---------------------------------------------- - -/* SG -# Forms/Checkbox - -``` -
- - -
-
- - -
-
- - -
-``` -*/ - -@import '../../cdb-variables/sizes'; -@import '../../cdb-variables/colors'; -@import '../../cdb-utilities/mixins'; - - -.CDB-Checkbox { - position: absolute; - width: $baseSize * 2; - height: $baseSize * 2; - opacity: 0; - vertical-align: middle; - z-index: 1; -} - -.CDB-Checkbox-face { - position: relative; - width: $baseSize * 2; - height: $baseSize * 2; - border: 1px solid $cMainLine; - border-radius: 3px; - background: $cWhite; - cursor: pointer; - box-sizing: border-box; - - &::before, - &::after { - display: block; - position: absolute; - bottom: 3px; - width: 2px; - border-radius: 1px; - background: $cSecondaryLine; - content: ''; - } - - &::before { - right: $baseSize / 2; - height: $baseSize; - transform: rotate(45deg); - } - - &::after { - left: $baseSize / 2; - height: $baseSize - 2; - transform: rotate(-45deg); - } -} - -.CDB-Checkbox:checked + .CDB-Checkbox-face { - @include transition(background, 300ms); - border: 1px solid $cBlue; - background: $cBlue; - - &::before, - &::after { - background: $cWhite; - } -} - -.CDB-Checkbox:disabled + .CDB-Checkbox-face { - border: 1px solid $cSecondaryLine; - background: $cThirdBackground; - - &::before, - &::after { - background: $cWhite; - } -} - -.CDB-Checkbox:disabled:hover + .CDB-Checkbox-face { - border: 1px solid $cSecondaryLine; -} - -.CDB-Checkbox:checked:hover + .CDB-Checkbox-face, -.CDB-Checkbox:focus + .CDB-Checkbox-face { - border: 1px solid $cBlue; -} - -.CDB-Checkbox:hover + .CDB-Checkbox-face { - border: 1px solid $cHoverLine; -} diff --git a/src/scss/cdb-components/forms/dropdowns.scss b/src/scss/cdb-components/forms/dropdowns.scss deleted file mode 100644 index 5258392..0000000 --- a/src/scss/cdb-components/forms/dropdowns.scss +++ /dev/null @@ -1,174 +0,0 @@ -// Dropdown styles -// ---------------------------------------------- - -/* SG -# Forms/Dropdowns - -``` -
- -
-
    -
  • - - - -
  • -
  • - - - -
  • -
  • - - - -
  • -
  • - - - -
  • -
  • - - - -
  • -
- -
    -
  • selected
  • -
  • active
  • -
  • disabled
  • -
  • disabled
  • -
-
-
- - -
-
- -
- - -
-
-
-
-
-
-
- -
-
-
-
- -
-
- -
- - -
-
-
-
-
-
-
- - -``` -*/ - -@import '../../cdb-utilities/mixins'; -@import '../../cdb-variables/sizes'; -@import '../../cdb-variables/colors'; - -.CDB-DropdownContainer { - position: relative; - height: 250px; -} -.CDB-Dropdown { - @include display-flex(); - @include flex-direction(row); - position: absolute; - top: 40px; - max-height: 200px; -} -.CDB-Dropdown-calculations { - padding: $sMargin-element; - border-right: 1px solid $cMainLine; - border-radius: 4px 0 0 4px; - background-color: $cSecondaryBackground; - box-sizing: border-box; -} -.CDB-Dropdown-calculationsElement { - margin-bottom: $sLineHeight-medium; - color: $cMainBg; - font-size: $sFontSize-small; - - &:last-child { - margin-bottom: 0; - } -} -.CDB-Dropdown-options { - width: $baseSize * 20; - border-radius: 0 4px 4px 0; - background-color: $cWhite; - vertical-align: top; -} -.CDB-Dropdown-optionsElement { - @include text-overflow(); - padding: 12px 10px; - border-bottom: 1px solid $cMainLine; - color: $cBlue; - - &:last-child { - border-bottom: 0; - } - &:hover { - background-color: rgba(157, 224, 173, 0.2); - color: $cMainBg; - cursor: pointer; - } -} -.CDB-Dropdown-optionsElement.is-selected { - color: $cMainBg; -} -.CDB-Dropdown-optionsElement.is-disabled { - color: $cHintText; - - &:hover { - background-color: transparent; - cursor: default; - } -} diff --git a/src/scss/cdb-components/forms/inputs.scss b/src/scss/cdb-components/forms/inputs.scss deleted file mode 100644 index a7a8e01..0000000 --- a/src/scss/cdb-components/forms/inputs.scss +++ /dev/null @@ -1,61 +0,0 @@ -// Input styles -// ---------------------------------------------- - -/* SG -# Forms/Inputs - -``` - - - -``` -*/ - -@import '../../cdb-variables/sizes'; -@import '../../cdb-variables/colors'; -@import '../../cdb-utilities/helpers'; - -.CDB-InputText { - width: 100%; - padding: 7px 8px; - border: 1px solid $cMainLine; - border-radius: $baseSize / 2; - font-size: $sFontSize-medium; - line-height: $sLineHeight-medium; - box-sizing: border-box; - - &.is-cursor { - cursor: pointer; - } - &.is-empty { - color: $cHintText; - } - &:hover { - border: 1px solid $cHoverLine; - } - &:focus { - border: 1px solid $cBlue; - outline: none; - } - &:disabled, - &.is-disabled { - border-color: $cSecondaryLine; - background: $cThirdBackground; - cursor: default; - } - &.has-error { - @include default-form-error-style(); - } -} -.CDB-InputTextPlain { - width: 100%; - border: 0; - background: transparent; - font-size: $sFontSize-medium; - line-height: $sLineHeight-medium; - box-sizing: border-box; -} - -.CDB-FieldError .CDB-InputText { - @include default-form-error-style(); -} diff --git a/src/scss/cdb-components/forms/legends.scss b/src/scss/cdb-components/forms/legends.scss deleted file mode 100644 index 34259cb..0000000 --- a/src/scss/cdb-components/forms/legends.scss +++ /dev/null @@ -1,104 +0,0 @@ -// Legends styles -// ---------------------------------------------- - -/* SG -# Forms/Labels - -``` -
- - - -
-
- - - -
- -
-
-
- -
- - - -
- - -
-
-
- -
-

RADIO

-
    -
  • -
    - - - -
    -
  • -
  • - -
  • -
-
-
-

RADIO

- -
- -
-
-
- -
-

- - - -

- -
- -
-

- - - -

- -
-``` -*/ - -@import '../../cdb-variables/sizes'; -@import '../../cdb-utilities/mixins'; - -.CDB-Legend { - width: $baseSize * 12; -} - -.CDB-Legend--big { - width: ($baseSize * 24); -} - -.CDB-Fieldset { - @include display-flex(); - @include align-items(center); -} -.CDB-Fieldset-block { - width: 100%; -} - diff --git a/src/scss/cdb-components/forms/option-input.scss b/src/scss/cdb-components/forms/option-input.scss deleted file mode 100644 index 721032d..0000000 --- a/src/scss/cdb-components/forms/option-input.scss +++ /dev/null @@ -1,152 +0,0 @@ -// Color input styles -// ---------------------------------------------- - -/* SG -# Forms/Option input - -``` -
-
    -
  • - -
  • - -
  • - -
  • - -
  • - -
  • -
-
- -
- -
-
    -
  • - -
  • - -
  • - -
  • -
-
- -
- - - -
-
- - - -
-
- - -``` -*/ - -@import '../../cdb-variables/sizes'; -@import '../../cdb-variables/colors'; -@import '../../cdb-utilities/mixins'; - -.CDB-OptionInput { - width: 100%; - height: $baseSize * 4; - border: 1px solid $cMainLine; - border-radius: $baseSize / 2; - box-sizing: border-box; - vertical-align: middle; - - &:hover { - border: 1px solid $cHoverLine; - } - &:focus { - border: 1px solid $cBlue; - } -} -.CDB-OptionInput.is-active { - border: 1px solid $cBlue; -} -.CDB-OptionInput-container { - @include display-flex(); - @include align-content(center); - @include align-items(center); - margin: 0 $baseSize; -} -.CDB-OptionInput-container--noMargin { - margin: 0; -} -.CDB-OptionInput-item { - @include display-flex(); - @include align-items(center); - @include align-content(center); - width: auto; - height: 100%; - font-size: $sFontSize-medium; - box-sizing: content-box; - - &::after { - padding: 0 $baseSize - 2; - color: $cHintText; - content: '·'; - } - &:last-child { - width: 100%; - - &::after { - display: none; - } - } -} -.CDB-OptionInput-item--noSeparator::after { - content: ''; -} -.CDB-OptionInput-content { - @include display-flex(); - @include align-items(center); - height: 100%; - color: $cMainBg; - box-sizing: content-box; - white-space: nowrap; - - &:hover { - text-decoration: none; - } -} -.CDB-OptionInput-item.is-active > .CDB-OptionInput-content { - border-bottom: 1px solid $cMainBg; -} diff --git a/src/scss/cdb-components/forms/radio.scss b/src/scss/cdb-components/forms/radio.scss deleted file mode 100644 index badfed2..0000000 --- a/src/scss/cdb-components/forms/radio.scss +++ /dev/null @@ -1,93 +0,0 @@ - -// Radios styles -// ---------------------------------------------- - -/* SG -# Forms/Radio - -``` -
- - -
-
- - -
-
- - -
-``` -*/ - -@import '../../cdb-variables/sizes'; -@import '../../cdb-variables/colors'; -@import '../../cdb-utilities/mixins'; - - -.CDB-Radio { - position: absolute; - width: $baseSize * 2; - height: $baseSize * 2; - opacity: 0; - vertical-align: middle; - z-index: 1; -} - -.CDB-Radio-face { - position: relative; - width: $baseSize * 2; - height: $baseSize * 2; - border: 1px solid $cMainLine; - border-radius: 50%; - background: $cWhite; - text-indent: 20px; - cursor: pointer; - box-sizing: border-box; - - &::before { - position: absolute; - top: 50%; - left: 50%; - width: $baseSize - 2; - height: $baseSize - 2; - margin-top: -3px; - margin-left: -3px; - border-radius: 50%; - background: $cSecondaryLine; - content: ''; - } -} - -.CDB-Radio:checked + .CDB-Radio-face { - @include transition(background, 300ms); - border: 1px solid $cBlue; - background: $cBlue; - - &::before { - background: $cWhite; - } -} - -.CDB-Radio:disabled + .CDB-Radio-face { - border: 1px solid $cSecondaryLine; - background: $cThirdBackground; - - &::before { - background: $cWhite; - } -} - -.CDB-Radio:disabled:hover + .CDB-Radio-face { - border: 1px solid $cSecondaryLine; -} - -.CDB-Radio:hover + .CDB-Radio-face { - border: 1px solid $cHoverLine; -} - -.CDB-Radio:focus + .CDB-Radio-face, -.CDB-Radio:checked:hover + .CDB-Radio-face { - border: 1px solid $cBlue; -} diff --git a/src/scss/cdb-components/forms/selects.scss b/src/scss/cdb-components/forms/selects.scss deleted file mode 100644 index 08b1d35..0000000 --- a/src/scss/cdb-components/forms/selects.scss +++ /dev/null @@ -1,98 +0,0 @@ -// Select styles -// ---------------------------------------------- - - -/* SG -# Forms/Selects - -``` - - -
-
-
- - -
-
DejaVu Sans
- -
- -
DejaVu Sans
-
-
DejaVu Sans
-
- - - -``` -*/ - -@import '../../cdb-variables/sizes'; -@import '../../cdb-variables/colors'; -@import '../../cdb-utilities/helpers'; - -.CDB-Select { - position: relative; -} - -.CDB-SelectItem { - position: absolute; - top: 40px; -} - -.CDB-SelectFake { - -webkit-appearance: none; - appearance: none; - width: 100%; - padding: 7px 8px 6px; - border: 1px solid $cMainLine; - border-radius: $baseSize / 2; - background: $cWhite; - font-size: $sFontSize-medium; - line-height: $sLineHeight-medium; - box-sizing: border-box; - - &:hover { - border: 1px solid $cHoverLine; - } - &:focus { - border: 1px solid $cBlue; - outline: none; - } - &:disabled { - border-color: $cSecondaryLine; - background: $cThirdBackground; - } - &.has-error { - @include default-form-error-style(); - } -} - -.CDB-FieldError .CDB-Select, -.CDB-FieldError .CDB-SelectFake { - @include default-form-error-style(); -} diff --git a/src/scss/cdb-components/forms/sliders.scss b/src/scss/cdb-components/forms/sliders.scss deleted file mode 100644 index 9b76b2b..0000000 --- a/src/scss/cdb-components/forms/sliders.scss +++ /dev/null @@ -1,143 +0,0 @@ -// Sliders styles -// ---------------------------------------------- - -/* SG -# Forms/Sliders - -``` - -``` -*/ - -@import '../../cdb-variables/sizes'; -@import '../../cdb-variables/colors'; - -.CDB-Range { - -webkit-appearance: none; - -moz-appearance: none; - position: relative; - width: 100%; - margin: -4px 0 0; - padding: 0 6px; - border: 0; - background: transparent; - cursor: pointer; - overflow: hidden; - vertical-align: middle; - - &:focus { - outline: 0; - } -} - -.CDB-Range::-webkit-slider-runnable-track { - height: $baseSize / 4; - margin: $baseSize 0; - border-radius: $baseSize / 2; - background: $cMainLine; -} - -.CDB-Range::-webkit-slider-thumb { - position: relative; - width: $baseSize / 2; - height: 100%; - border-radius: $baseSize / 2; - - &::before { - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: -3000px; - height: $baseSize / 4; - border-radius: $baseSize / 2; - background: $cBlue; - content: ''; - } - - &::after { - position: absolute; - top: -6px; - right: -6px; - left: -6px; - width: $baseSize + 4; - height: $baseSize + 4; - border: 1px solid $cBlue; - border-radius: 50%; - background: $cWhite; - content: ''; - z-index: 1; - } - - &:focus, - &:hover { - &::after { - cursor: pointer; - } - } - - &:disabled { - &::before, - &::after { - opacity: 0.2; - } - } -} - -.CDB-Range::-moz-range-track { - height: $baseSize / 4; - margin: $baseSize 0; - border: 0; - border-radius: $baseSize / 2; - outline: none; - background: $cMainLine; -} - -.CDB-Range::-moz-range-thumb { - position: absolute; - top: -6px; - right: -6px; - left: -6px; - width: $baseSize + 4; - height: $baseSize + 4; - border: 1px solid $cBlue; - border-radius: 50%; - background: $cWhite; - content: ''; - z-index: 1; -} - -.CDB-Range::-moz-range-progress { - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: -3000px; - height: $baseSize / 4; - border-radius: $baseSize / 2; - background: $cBlue; - content: ''; -} - -.CDB-Range::-ms-track { - height: $baseSize / 4; - margin: $baseSize 0; - border: transparent; - border-radius: $baseSize / 2; - background: $cMainLine; - color: transparent; -} - -.CDB-Range::-ms-thumb { - position: absolute; - top: -6px; - right: -6px; - left: -6px; - width: $baseSize + 4; - height: $baseSize + 4; - border: 1px solid $cBlue; - border-radius: 50%; - background: $cWhite; - content: ''; - z-index: 1; -} diff --git a/src/scss/cdb-components/forms/tabsForms.scss b/src/scss/cdb-components/forms/tabsForms.scss deleted file mode 100644 index d0b5f34..0000000 --- a/src/scss/cdb-components/forms/tabsForms.scss +++ /dev/null @@ -1,101 +0,0 @@ -// Tabs Forms styles -// ---------------------------------------------- - -/* SG -# Forms/TabsForms - -``` -
-
    -
  • - -
  • -
  • - -
  • -
  • - -
  • -
-
-``` -*/ - -@import '../../cdb-utilities/mixins'; -@import '../../cdb-variables/sizes'; -@import '../../cdb-variables/colors'; - - -.CDB-TabsForms { - border: 1px solid $cMainLine; - border-radius: 4px; -} -.CDB-TabsForms-inner { - @include display-flex(); -} -.CDB-TabsForms-item { - border-left: 1px solid $cSecondaryLine; -} -.CDB-TabsForms-item:first-child { - border-left: 0; -} -.CDB-TabsForms-button { - padding: 7px 8px; -} - - - - - - diff --git a/src/scss/cdb-components/forms/textarea.scss b/src/scss/cdb-components/forms/textarea.scss deleted file mode 100644 index d37bb2c..0000000 --- a/src/scss/cdb-components/forms/textarea.scss +++ /dev/null @@ -1,46 +0,0 @@ -// Textarea styles -// ---------------------------------------------- - -/* SG -# Forms/Textareas - -``` - - - -``` -*/ - -@import '../../cdb-variables/sizes'; -@import '../../cdb-variables/colors'; -@import '../../cdb-utilities/helpers'; - -.CDB-Textarea { - width: 100%; - padding: 7px 8px 6px; - border: 1px solid $cMainLine; - border-radius: $baseSize / 2; - font-size: $sFontSize-medium; - line-height: $sLineHeight-medium; - box-sizing: border-box; - - &:hover { - border: 1px solid $cHoverLine; - } - &:focus { - border: 1px solid $cBlue; - outline-color: transparent; - outline-style: none; - } - &:disabled { - border-color: $cSecondaryLine; - background: $cThirdBackground; - } - &:has-error { - @include default-form-error-style(); - } -} -.CDB-FieldError .CDB-Textarea, -.CDB-Textarea.has-error { - @include default-form-error-style(); -} diff --git a/src/scss/cdb-components/forms/toggle.scss b/src/scss/cdb-components/forms/toggle.scss deleted file mode 100644 index c41ac45..0000000 --- a/src/scss/cdb-components/forms/toggle.scss +++ /dev/null @@ -1,76 +0,0 @@ -// Radio Button styles -// ---------------------------------------------- - -/* SG -# Forms/Toggle - - -``` -
-
- - - - -
-
- -
- -
-
- - - - -
-
-``` -*/ - -@import '../../cdb-variables/sizes'; -@import '../../cdb-variables/colors'; -@import '../../cdb-utilities/mixins'; - -.CDB-Toggle { - position: absolute; - width: $baseSize * 4; - height: $baseSize * 2; - opacity: 0; - z-index: 1; - - + .CDB-ToggleFace { - @include transition(background, 300ms); - position: relative; - width: $baseSize * 4; - height: $baseSize * 2; - margin: 0 2px; - border-radius: 50px; - background: $cHintText; - - &::before { - position: absolute; - top: 2px; - left: 2px; - width: $baseSize + 4; - height: $baseSize + 4; - border-radius: 50%; - background: $cWhite; - box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.48); - content: ''; - } - } - - &:checked + .CDB-ToggleFace { - background: $cHighlight; - - &::before { - right: 2px; - left: auto; - } - } -} - -.Toggle .is-disabled { - opacity: 0.24; -} diff --git a/src/scss/cdb-components/headers.scss b/src/scss/cdb-components/headers.scss deleted file mode 100644 index 497bcd7..0000000 --- a/src/scss/cdb-components/headers.scss +++ /dev/null @@ -1,226 +0,0 @@ -// Typography styles -// ---------------------------------------------- - -/* SG -# Headers - -``` -
-
-

Name Map

- -
-
    -
  • - -
  • -
  • -
      -
    • - User Name -
    • -
    • - User Name -
    • -
    • - User Name -
    • -
    • - -
    • -
    -
  • -
  • -

    Published 8 days ago

    -
  • -
-
- -
-
-
- -
- -
-
-

Stadiums Affected Stadiums Affected Stadiums AffectedStadiums Affected Stadiums Affected Stadiums Affected Stadiums Affected

- -
-
-
    -
  • -
  • -
-
-

populates_places

-
-
- -
-
-
- -
- -
-
-

Basemap

- -
-

Positron by CartoDB

-
-
- -
-
-
- -
- -
- -
-
    -
  • -
  • -
-
-

populates_places

-
-
- -
-
-
- -
-
1
- -
-
-

Type

- - -
- -

Histogram

-

Distribution of a numeric variable in a range

-
-
- -
-
-
-``` -*/ - -@import '../cdb-utilities/mixins'; -@import '../cdb-variables/sizes'; -@import '../cdb-variables/colors'; - -.CDB-HeaderInfo { - @include display-flex(); - @include align-items(flex-start); - - &.is-block { - display: block; - } -} -.CDB-HeaderInfo-listItem { - display: inline-block; - margin-right: 8px; - vertical-align: middle; - - &:last-child { - margin-right: 0; - } -} - -.CDB-HeaderInfo-inner { - @include flex(1); -} -.CDB-HeaderInfo-back { - margin-top: 7px; -} -.CDB-HeaderInfo-title { - @include display-flex(); - @include align-items(center); -} -.CDB-HeaderInfo-titleText { - @include flex(1); - width: 0; - padding-right: 16px; - text-overflow: ellipsis; - white-space: nowrap; - overflow: hidden; -} -.CDB-HeaderInfo-actionsItem { - display: inline-block; - margin-left: 4px; - vertical-align: middle; -} -.CDB-HeaderNumeration { - width: $baseSize * 3; - min-width: $baseSize * 3; - height: $baseSize * 3; - border: 1px solid $cMainLine; - border-radius: 4px; - background-color: $cWhite; - color: $cAltText; - font-size: $sFontSize-small; - line-height: 23px; - text-align: center; - box-sizing: border-box; -} diff --git a/src/scss/cdb-components/lists.scss b/src/scss/cdb-components/lists.scss deleted file mode 100644 index 57b2a9c..0000000 --- a/src/scss/cdb-components/lists.scss +++ /dev/null @@ -1,39 +0,0 @@ -// List styles -// ---------------------------------------------- - -/* SG -# Lists/Lists Decorations - - -``` -
 
-``` -*/ - -@import '../cdb-variables/sizes'; -@import '../cdb-variables/colors'; - -.CDB-ListDecoration-item { - border-bottom: 1px solid $cSecondaryLine; - - &:last-child { - border-bottom: 0; - } -} -.CDB-ListDecoration-itemPadding { - padding: 12px 16px; -} -.CDB-ListDecoration-itemPadding--horizontal { - padding: 0 16px; -} -.CDB-ListDecoration-itemPadding--vertical { - padding: 12px 0; -} - -.CDB-ListDecoration-itemLink { - display: block; - max-width: 100%; - padding: 12px 16px; - text-align: left; -} - diff --git a/src/scss/cdb-components/loader.scss b/src/scss/cdb-components/loader.scss deleted file mode 100644 index 3122409..0000000 --- a/src/scss/cdb-components/loader.scss +++ /dev/null @@ -1,154 +0,0 @@ -// Loader styles -// ---------------------------------------------- - -/* SG -# Loader/principal - -This is the generic loader for widgets, maps, components, ... - -``` -
- -``` -*/ - -@import '../cdb-utilities/mixins'; -@import '../cdb-variables/colors'; -@import '../cdb-variables/sizes'; - -.CDB-Loader { - @include css3-prefix(animation, loader-progress 1000ms linear 1); - @include opacity(0); - @include transition(opacity, 1000ms); - position: absolute; - top: 0; - left: 0; - width: 100%; - height: 2px; - background: rgba($cBlue, 1); - z-index: 2; -} -.CDB-Loader.is-visible { - @include css3-prefix(animation, loader-progress 2000ms linear infinite); - @include opacity(1); -} - -@include keyframes(loader-progress) { - 0% { - width: 0; - } - 100% { - width: 100%; - } -} - -/* SG -# Loader/circle - -``` -
-
- - - -
-
- - - -
-
- -
-
- - - -
-
- - - -
-
- -
-
- - - -
-
- - - -
-
- -
-
- - - -
-
- - - -
-
- -``` -*/ - -.CDB-LoaderIcon-spinner { - animation: rotate 2s linear infinite; - width: 16px; - height: 16px; -} - -.CDB-LoaderIcon--small .CDB-LoaderIcon-spinner { - width: 14px; - height: 14px; -} - -.CDB-LoaderIcon--big .CDB-LoaderIcon-spinner { - width: 40px; - height: 40px; -} - -.CDB-LoaderIcon-path { - stroke: rgba(255, 255, 255, 0.88); - stroke-linecap: round; - animation: dash 1.5s ease-in-out infinite; - stroke-width: 4px; -} - -.CDB-LoaderIcon--big .CDB-LoaderIcon-path { - stroke-width: 2px; -} - -.CDB-LoaderIcon.is-dark .CDB-LoaderIcon-path { - stroke: rgba(0, 0, 0, 0.24); -} - -@keyframes rotate { - 100% { - transform: rotate(360deg); - } -} - -@keyframes dash { - 0% { - stroke-dasharray: 1, 150; - stroke-dashoffset: 0; - } - 50% { - stroke-dasharray: 90, 150; - stroke-dashoffset: -35; - } - 100% { - stroke-dasharray: 90, 150; - stroke-dashoffset: -124; - } -} diff --git a/src/scss/cdb-components/menu.scss b/src/scss/cdb-components/menu.scss deleted file mode 100644 index 4e6787d..0000000 --- a/src/scss/cdb-components/menu.scss +++ /dev/null @@ -1,232 +0,0 @@ -// Menu styles -// ---------------------------------------------- - -/* SG -# Menu/Navigation - - -``` - - -

-

- -
- -
- -

-

- - - - -

-

- -
- -
- -``` -*/ - -@import '../cdb-variables/colors'; -@import '../cdb-variables/sizes'; - -.CDB-NavMenu { - position: relative; - z-index: 2; -} - -.CDB-NavMenu-inner { - position: relative; - margin-bottom: 18px; - border-bottom: 1px solid $cMainLine; -} -.CDB-NavMenu-inner--no-margin { - margin-bottom: 0; -} -.CDB-NavMenu-inner--is-dropdown { - padding: $baseSize 0 0 $baseSize * 2; -} - -.CDB-NavMenu-link { - display: block; - margin-bottom: -1px; - padding: 4px 0 11px; - border-bottom: 1px solid transparent; - color: $cBlue; -} - -.CDB-NavMenu-item, -.CDB-NavSubmenu-item { - display: inline-block; - margin-right: 12px; - vertical-align: middle; -} - -.CDB-NavMenu-item.is-selected .CDB-NavMenu-link { - border-bottom: 1px solid $cBlack; - color: $cMainText; -} - -.CDB-NavSubmenu { - border-bottom: 1px solid $cSecondaryLine; -} - -.CDB-NavSubmenu--inside { - position: absolute; - right: 0; - left: 0; - padding-top: 14px; -} - -.CDB-NavSubmenu--outside { - margin-top: -5px; - margin-bottom: 18px; -} - -.CDB-NavSubmenu-link { - display: block; - margin-bottom: -1px; - padding-bottom: 12px; - border-bottom: 1px solid transparent; - color: $cBlue; -} - -.CDB-NavSubmenu-item.is-selected .CDB-NavSubmenu-link { - border-bottom: 1px solid $cMainLine; - color: $cMainText; -} - -.CDB-NavSubmenu-status { - margin-left: 2px; -} - -.CDB-NavMenu.is-dark { - - .CDB-NavMenu-inner, - .CDB-NavSubmenu { - border-bottom: 1px solid $cSecondaryText; - } - - .CDB-NavMenu-link, - .CDB-NavSubmenu-link { - color: $cAltText; - } - - .CDB-NavMenu-item.is-selected .CDB-NavMenu-link { - border-bottom: 1px solid $cMainLine; - color: $cWhite; - } - - .CDB-NavSubmenu-item.is-selected .CDB-NavSubmenu-link { - border-bottom: 1px solid $cMainLine; - color: $cWhite; - } - - .CDB-NavSubmenu-status { - color: $cSecondaryText; - } -} - - - diff --git a/src/scss/cdb-components/shapes/add.scss b/src/scss/cdb-components/shapes/add.scss deleted file mode 100644 index 6fa4b2b..0000000 --- a/src/scss/cdb-components/shapes/add.scss +++ /dev/null @@ -1,131 +0,0 @@ -/* SG -# Shapes/Add - -Description - -``` -

16px

-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-

12px

-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-``` -*/ - -@import '../../cdb-variables/colors'; - -.CDB-Shape { - width: 16px; - height: 16px; - text-align: center; -} -.CDB-Shape--medium { - width: 24px; - height: 24px; -} -.CDB-Shape:hover { - cursor: pointer; -} - - -.CDB-Shape-add { - position: relative; - height: 100%; - - &::before { - display: block; - position: absolute; - right: 1px; - bottom: 7px; - left: 0; - height: 1px; - background: $cMainBg; - content: ''; - } - - &::after { - display: block; - position: absolute; - top: 1; - bottom: 0; - left: 7px; - width: 1px; - background: $cMainBg; - content: ''; - } -} - -.CDB-Shape-add.is-small { - - &::before { - display: block; - position: absolute; - right: 3px; - bottom: 7px; - left: 4px; - height: 1px; - background: $cMainBg; - content: ''; - } - - &::after { - display: block; - position: absolute; - top: 4px; - bottom: 3px; - left: 8px; - width: 1px; - background: $cMainBg; - content: ''; - } -} - - - -.CDB-Shape-add.is-blue { - &::before, - &::after { - background: $cBlue; - } -} - -.CDB-Shape-add.is-white { - &::before, - &::after { - background: $cWhite; - } -} - - - diff --git a/src/scss/cdb-components/shapes/arrow.scss b/src/scss/cdb-components/shapes/arrow.scss deleted file mode 100644 index 295cd40..0000000 --- a/src/scss/cdb-components/shapes/arrow.scss +++ /dev/null @@ -1,85 +0,0 @@ -/* SG -# Shapes/Arrow - -Description - -``` -
-
-
-
-
-
-
-
-
-``` -*/ - -@import '../../cdb-variables/colors'; - -.CDB-Shape-Arrow { - position: relative; - width: 1px; - height: 8px; - background: $cMainBg; - - &::before { - display: block; - position: absolute; - top: 2px; - left: 0; - width: 5px; - height: 1px; - transform: rotate(45deg); - background: $cMainBg; - content: ''; - } - - &::after { - display: block; - position: absolute; - top: 2px; - left: -4px; - width: 5px; - height: 1px; - transform: rotate(-45deg); - background: $cMainBg; - content: ''; - } - &.is-up { - top: 6px; - right: 9px; - transform: rotate(45deg); - } - - &.is-down { - top: 13px; - left: 46px; - transform: rotate(-135deg); - } -} - -.CDB-Shape-Arrow.is-blue { - background: $cBlue; - - &::before { - background: $cBlue; - } - - &::after { - background: $cBlue; - } -} - -.CDB-Shape-Arrow.is-white { - background: $cWhite; - - &::before { - background: $cWhite; - } - - &::after { - background: $cWhite; - } -} diff --git a/src/scss/cdb-components/shapes/check-circle.scss b/src/scss/cdb-components/shapes/check-circle.scss deleted file mode 100644 index cf2b1f1..0000000 --- a/src/scss/cdb-components/shapes/check-circle.scss +++ /dev/null @@ -1,156 +0,0 @@ -/* SG -# Shapes/Check circle - -Description - -``` -

16px

-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-

12px

-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-``` -*/ - -@import '../../cdb-variables/colors'; - -.CDB-Shape-CircleItem { - width: 14px; - height: 14px; - border: 1px solid $cMainBg; - border-radius: 50%; - - &.is-small { - width: 12px; - height: 12px; - transform: translateY(2px); - } - &.is-blue { - border: 1px solid $cBlue; - } - &.is-white { - border: 1px solid $cWhite; - } -} - -.CDB-Shape-tick { - display: block; - position: relative; - height: 100%; - - &::before { - display: block; - position: absolute; - width: 1px; - transform: rotate(-45deg); - background: $cMainBg; - content: ''; - } - &::after { - display: block; - position: absolute; - width: 1px; - transform: rotate(45deg); - background: $cMainBg; - content: ''; - } - - &.is-medium { - &::before { - top: 5px; - left: 4px; - height: 4px; - } - &::after { - top: 3px; - right: 5px; - height: 6px; - } - } - - &.is-small { - &::before { - top: 4px; - left: 2px; - height: 3px; - } - &::after { - top: 2px; - right: 3px; - height: 5px; - } - } -} - -.CDB-Shape-tick.is-blue { - &::before { - background: $cBlue; - } - &::after { - background: $cBlue; - } -} - -.CDB-Shape-tick.is-white { - &::before { - background: $cWhite; - } - &::after { - background: $cWhite; - } -} - -.CDB-Shape-tick.is-green { - &::before { - background: $cHighlight; - } - &::after { - background: $cHighlight; - } -} - - - diff --git a/src/scss/cdb-components/shapes/close.scss b/src/scss/cdb-components/shapes/close.scss deleted file mode 100644 index 473f7dc..0000000 --- a/src/scss/cdb-components/shapes/close.scss +++ /dev/null @@ -1,149 +0,0 @@ -/* SG -# Shapes/Close - -Description - -``` -

16px

-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-

12px

-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-``` -*/ - -@import '../../cdb-variables/colors'; - -.CDB-Shape-close { - display: block; - position: relative; - height: 100%; - - &::before { - display: block; - position: absolute; - width: 1px; - transform: rotate(-45deg); - background: $cMainBg; - content: ''; - } - &::after { - display: block; - position: absolute; - width: 1px; - transform: rotate(45deg); - background: $cMainBg; - content: ''; - } - - &.is-huge { - &::before { - top: -2px; - left: 7px; - height: 20px; - } - &::after { - top: -2px; - right: 8px; - height: 20px; - } - } - - &.is-large { - &::before { - top: 2px; - left: 7px; - height: 12px; - } - &::after { - top: 2px; - right: 8px; - height: 12px; - } - } - - &.is-medium { - &::before { - top: 3px; - left: 6px; - height: 7px; - } - &::after { - top: 3px; - right: 6px; - height: 7px; - } - } - - &.is-small { - &::before { - top: 2px; - left: 4px; - height: 5px; - } - &::after { - top: 2px; - right: 4px; - height: 5px; - } - } -} - -.CDB-Shape-close.is-blue { - &::before { - background: $cBlue; - } - &::after { - background: $cBlue; - } -} - -.CDB-Shape-close.is-white { - &::before { - background: $cWhite; - } - &::after { - background: $cWhite; - } -} - -.CDB-Shape-close.is-red { - &::before { - background: $cError; - } - &::after { - background: $cError; - } -} - diff --git a/src/scss/cdb-components/shapes/dash.scss b/src/scss/cdb-components/shapes/dash.scss deleted file mode 100644 index 8c3bdeb..0000000 --- a/src/scss/cdb-components/shapes/dash.scss +++ /dev/null @@ -1,85 +0,0 @@ -/* SG -# Shapes/Dash - -Description - -``` -

16px

-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-

12px

-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-``` -*/ - -@import '../../cdb-variables/colors'; - -.CDB-Shape-dash { - position: relative; - height: 100%; - - &::before { - display: block; - position: absolute; - right: 2px; - bottom: 7px; - left: 2px; - height: 1px; - background: $cMainBg; - content: ''; - } -} - -.CDB-Shape-dash.is-small { - - &::before { - right: 3px; - left: 3px; - } -} - -.CDB-Shape-dash.is-blue { - &::before { - background: $cBlue; - } -} - -.CDB-Shape-dash.is-white { - &::before { - background: $cWhite; - } -} - - - diff --git a/src/scss/cdb-components/shapes/dataset.scss b/src/scss/cdb-components/shapes/dataset.scss deleted file mode 100644 index 71930a1..0000000 --- a/src/scss/cdb-components/shapes/dataset.scss +++ /dev/null @@ -1,146 +0,0 @@ -/* SG -# Shapes/Dataset - -Description - -``` -

16px

-
-
-
    -
  • -
  • -
-
-
-
-
-
    -
  • -
  • -
-
-
-
-
-
    -
  • -
  • -
-
-
-
-
-
    -
  • -
  • -
-
-
-
-
-
-
- -

12px

-
-
-
    -
  • -
  • -
-
-
-
-
-
    -
  • -
  • -
-
-
-
-
-
    -
  • -
  • -
-
-
-
-
-
    -
  • -
  • -
-
-
-``` -*/ - -@import '../../cdb-variables/colors'; -@import '../../cdb-variables/sizes'; - -.CDB-Shape-Dataset { - padding-top: 1px; - &.is-small { - padding-top: 0; - } -} - -.CDB-Shape-DatasetItem { - display: inline-block; - width: 9px; - height: 9px; - margin-left: -10px; - border: 1px solid $cMainBg; - border-radius: 50%; - background: $cWhite; - - &:first-child { - position: relative; - margin-left: 0; - box-shadow: 3px 0 0 $cWhite; - z-index: 1; - } -} - -.CDB-Shape-Dataset.is-small { - .CDB-Shape-DatasetItem { - width: 6px; - height: 6px; - margin-left: -7px; - &:first-child { - margin-left: 0; - box-shadow: 2px 0 0 $cWhite; - } - } -} - -.CDB-Shape-Dataset.is-blue { - .CDB-Shape-DatasetItem { - border: 1px solid $cBlue; - } -} - -.CDB-Shape-Dataset.is-grey { - .CDB-Shape-DatasetItem { - border: 1px solid $cHoverLine; - } -} - -.CDB-Shape-Dataset.is-white { - .CDB-Shape-DatasetItem { - border: 1px solid $cHoverLine; - background: $cMainBg; - &:first-child { - box-shadow: 3px 0 $cMainBg; - } - } -} - -.CDB-Shape-Dataset.is-white.is-small { - .CDB-Shape-DatasetItem:first-child { - box-shadow: 2px 0 $cMainBg; - } -} diff --git a/src/scss/cdb-components/shapes/dots.scss b/src/scss/cdb-components/shapes/dots.scss deleted file mode 100644 index 54e61b7..0000000 --- a/src/scss/cdb-components/shapes/dots.scss +++ /dev/null @@ -1,28 +0,0 @@ -// Shape styles -// ---------------------------------------------- - -/* SG -# Shapes/Dots - -You may resize and change the colors of the icons with the `glyph-`-classes. Available sizes and colors listed: - -``` - - -``` -*/ - -@import '../../cdb-variables/colors'; -@import '../../cdb-variables/sizes'; - -.CDB-Shape-dot { - display: inline-block; - width: $baseSize; - height: $baseSize; - border-radius: 50%; - background: $cSecondaryLine; - - &.is-selected { - background: $cSecondaryText; - } -} diff --git a/src/scss/cdb-components/shapes/error-circle.scss b/src/scss/cdb-components/shapes/error-circle.scss deleted file mode 100644 index 010a296..0000000 --- a/src/scss/cdb-components/shapes/error-circle.scss +++ /dev/null @@ -1,103 +0,0 @@ -/* SG -# Shapes/Error circle - -Description - -``` -

16px

-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-

12px

-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-``` -*/ - -@import '../../cdb-variables/colors'; - -.CDB-Shape-CircleItem { - width: 13px; - height: 13px; - border: 1px solid $cMainBg; - border-radius: 50%; - - &.is-small { - width: 9px; - height: 9px; - margin: 0 auto; - } - &.is-blue { - border: 1px solid $cBlue; - } - &.is-white { - border: 1px solid $cWhite; - } - &.is-green { - border: 1px solid $cHighlight; - } - &.is-red { - border: 1px solid $cError; - } -} - - -.CDB-Shape-CircleItem--fill { - &.is-blue { - border: 1px solid $cBlue; - background: $cBlue; - } - &.is-white { - border: 1px solid $cWhite; - background: $cWhite; - } - &.is-green { - border: 1px solid $cHighlight; - background: $cHighlight; - } - &.is-red { - border: 1px solid $cError; - background: $cError; - } -} diff --git a/src/scss/cdb-components/shapes/hamburguer.scss b/src/scss/cdb-components/shapes/hamburguer.scss deleted file mode 100644 index d5d2bc4..0000000 --- a/src/scss/cdb-components/shapes/hamburguer.scss +++ /dev/null @@ -1,63 +0,0 @@ -/* SG -# Shapes/Hamburguer - -Description - -``` -
-
-
-
-
-
-
- -
-
-
-
-
-
-
- -
-
-
-
-
-
-
-``` -*/ - -@import '../../cdb-variables/colors'; -@import '../../cdb-variables/sizes'; - -.CDB-Shape-hamburguer { - width: $baseSize * 2; - &:hover { - cursor: pointer; - } -} - -.CDB-Shape-hamburguerItem { - height: $baseSize / 4; - margin-bottom: $baseSize / 4; - background: $cMainBg; - - &:last-child { - margin-bottom: 0; - } -} - -.CDB-Shape-hamburguer.is-blue { - .CDB-Shape-hamburguerItem { - background: $cBlue; - } -} - -.CDB-Shape-hamburguer.is-white { - .CDB-Shape-hamburguerItem { - background: $cWhite; - } -} diff --git a/src/scss/cdb-components/shapes/magnify.scss b/src/scss/cdb-components/shapes/magnify.scss deleted file mode 100644 index bec21d4..0000000 --- a/src/scss/cdb-components/shapes/magnify.scss +++ /dev/null @@ -1,115 +0,0 @@ -/* SG -# Shapes/Magnify - -Description - -``` -

16px

-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-

12px

-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-``` -*/ - -@import '../../cdb-variables/colors'; - -.CDB-Shape-magnify { - display: block; - position: relative; - height: 100%; - - &::before { - display: block; - position: absolute; - top: 0; - left: 0; - width: 11px; - height: 11px; - border: 1px solid $cMainBg; - border-radius: 50%; - content: ''; - } - - &::after { - display: block; - position: absolute; - right: 2px; - bottom: -1px; - width: 1px; - height: 7px; - transform: rotate(314deg); - background: $cMainBg; - content: ''; - } -} - -.CDB-Shape-magnify.is-blue { - &::before { - border: 1px solid $cBlue; - } - &::after { - background: $cBlue; - } -} - -.CDB-Shape-magnify.is-white { - &::before { - border: 1px solid $cWhite; - } - &::after { - background: $cWhite; - } -} - -.CDB-Shape-magnify.is-small { - &::before { - top: 3px; - left: 3px; - width: 6px; - height: 6px; - } - - &::after { - display: block; - position: absolute; - right: 4px; - bottom: 2px; - width: 1px; - height: 5px; - transform: rotate(314deg); - content: ''; - } -} diff --git a/src/scss/cdb-components/shapes/move.scss b/src/scss/cdb-components/shapes/move.scss deleted file mode 100644 index 622ad77..0000000 --- a/src/scss/cdb-components/shapes/move.scss +++ /dev/null @@ -1,161 +0,0 @@ -/* SG -# Shapes/Move - -Description - -``` -

16px

-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-

12px

-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-``` -*/ - -@import '../../cdb-variables/colors'; - -.CDB-Shape-rectsHandle { - position: relative; - padding: 1px 0 0; -} - -.CDB-Shape-rectsHandle.is-small { - padding: 3px 0 0 1px; - - .CDB-Shape-rectsHandleItem { - height: 2px; - margin-bottom: 2px; - - &::before { - left: 5px; - width: 2px; - height: 2px; - } - &::after { - width: 2px; - height: 2px; - } - } -} - -.CDB-Shape-rectsHandleItem { - height: 3px; - margin-bottom: 3px; - - &:last-child { - margin-bottom: 0; - } - &::before { - display: block; - position: absolute; - left: 4px; - width: 3px; - height: 3px; - background: $cMainBg; - content: ''; - } - - &::after { - display: block; - position: absolute; - left: 9px; - width: 3px; - height: 3px; - background: $cMainBg; - content: ''; - } -} - -.CDB-Shape-rectsHandleItem--blue { - &::before, - &::after { - background: $cBlue; - } -} - -.CDB-Shape-rectsHandleItem--white { - &::before, - &::after { - background: $cWhite; - } -} - -.CDB-Shape-rectsHandleItem--grey { - &::before, - &::after { - background: $cHoverLine; - } -} diff --git a/src/scss/cdb-components/shapes/paragraph.scss b/src/scss/cdb-components/shapes/paragraph.scss deleted file mode 100644 index 9c9517b..0000000 --- a/src/scss/cdb-components/shapes/paragraph.scss +++ /dev/null @@ -1,112 +0,0 @@ -/* SG -# Shapes/Paragrapgh - -Description - -``` -

16px

-
-
-
-
    -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
-
-
-
-
-
-
-
    -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
-
-
-
-
-
-
-
    -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
-
-``` -*/ - -@import '../../cdb-variables/colors'; - -.CDB-Shape-paragraph { - padding-top: 3px; - text-align: left; -} -.CDB-Shape-paragraph.is-center { - text-align: center; -} -.CDB-Shape-paragraph.is-right { - text-align: right; -} -.CDB-Shape-paragraphItem { - height: 1px; - margin-bottom: 2px; -} -.CDB-Shape-paragraphItem:last-child { - margin-bottom: 0; -} - -.CDB-Shape-paragraphBar { - display: inline-block; - height: 1px; - margin-bottom: 2px; - background: $cSecondaryLine; - vertical-align: top; -} - -.CDB-Shape-paragraph.is-active .CDB-Shape-paragraphBar { - background: $cBlue; -} - -.CDB-Shape-paragraphBar--01 { - width: 12px; -} -.CDB-Shape-paragraphBar--02 { - width: 6px; -} -.CDB-Shape-paragraphBar--03 { - width: 8px; -} -.CDB-Shape-paragraphBar--04 { - width: 4px; -} diff --git a/src/scss/cdb-components/shapes/threePoints.scss b/src/scss/cdb-components/shapes/threePoints.scss deleted file mode 100644 index effdd59..0000000 --- a/src/scss/cdb-components/shapes/threePoints.scss +++ /dev/null @@ -1,153 +0,0 @@ -/* SG -# Shapes/Three Points - -Description - -``` -

24px

-
- -
-
- -
-
- -
-
-
-
-
-
-
-
-

16px

-
- -
-
- -
-
- -
-
-
-
-
-

12px

-
- -
-
- -
-
- -
-``` -*/ - -@import '../../cdb-variables/colors'; - -.CDB-Shape-threePoints { - display: inline-block; - padding: 0 4px; -} -.CDB-Shape-threePoints.is-horizontal { - transform: rotate(90deg); - padding: 4px 0; -} - -.CDB-Shape-threePointsItem { - width: 2px; - height: 2px; - margin-bottom: 5px; - background: $cMainBg; -} -.CDB-Shape-threePointsItem.is-round { - border-radius: 50%; -} -.CDB-Shape-threePointsItem:last-child { - margin-bottom: 0; -} - -.CDB-Shape-threePoints.is-small { - padding-top: 2px; -} -.CDB-Shape-threePoints.is-small .CDB-Shape-threePointsItem { - width: 2px; - height: 2px; - margin-bottom: 3px; -} - -.CDB-Shape-threePoints.is-medium { - padding-top: 2px; -} -.CDB-Shape-threePoints.is-medium .CDB-Shape-threePointsItem { - width: 4px; - height: 4px; - margin-bottom: 3px; -} - -.CDB-Shape-threePoints.is-blue .CDB-Shape-threePointsItem { - background: $cBlue; -} - -.CDB-Shape-threePoints.is-white .CDB-Shape-threePointsItem { - background: $cWhite; -} diff --git a/src/scss/cdb-components/shapes/toogle-arrow.scss b/src/scss/cdb-components/shapes/toogle-arrow.scss deleted file mode 100644 index 90381da..0000000 --- a/src/scss/cdb-components/shapes/toogle-arrow.scss +++ /dev/null @@ -1,147 +0,0 @@ -/* SG -# Shapes/Toogle Arrows - -Description - -``` -

16px

-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-

12px

-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-

16px

-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-

12px

-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-``` -*/ - -@import '../../cdb-variables/colors'; - -.CDB-ArrowToogle { - position: relative; - height: 100%; - - &::before { - display: block; - position: absolute; - top: 8px; - left: 0; - width: 10px; - height: 1px; - transform: rotate(-45deg); - background: $cMainBg; - content: ''; - } - &::after { - display: block; - position: absolute; - top: 8px; - right: -1px; - width: 10px; - height: 1px; - transform: rotate(45deg); - background: $cMainBg; - content: ''; - } -} - -.CDB-ArrowToogle.is-down { - transform: rotate(180deg); -} - -.CDB-ArrowToogle.is-small { - &::before { - left: 2px; - width: 8px; - } - &::after { - right: 1px; - width: 8px; - } -} - -.CDB-ArrowToogle.is-blue { - &::before { - background: $cBlue; - } - &::after { - background: $cBlue; - } -} - -.CDB-ArrowToogle.is-white { - &::before { - background: $cWhite; - } - &::after { - background: $cWhite; - } -} diff --git a/src/scss/cdb-components/shapes/type.scss b/src/scss/cdb-components/shapes/type.scss deleted file mode 100644 index 1a6decc..0000000 --- a/src/scss/cdb-components/shapes/type.scss +++ /dev/null @@ -1,111 +0,0 @@ -/* SG -# Shapes/Type - -Description - -``` -

8px

-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-``` -*/ - -@import '../../cdb-variables/colors'; - -.CDB-Shape { - width: 16px; - height: 16px; - text-align: center; -} -.CDB-Shape--small { - width: 8px; - height: 8px; -} -.CDB-Shape--medium { - width: 24px; - height: 24px; -} -.CDB-Shape:hover { - cursor: pointer; -} - -.CDB-Type { - position: relative; - width: 100%; - height: 100%; -} - -.CDB-Type-circle { - position: absolute; - width: 3px; - height: 3px; - border-radius: 50%; - background: $cHoverLine; -} -.CDB-Type-circle--01 { - top: 0; - left: 0; -} -.CDB-Type-circle--02 { - top: 0; - right: 0; -} -.CDB-Type-circle--03 { - bottom: 0; - left: 0; -} -.CDB-Type-circle--04 { - right: 0; - bottom: 0; -} - -.CDB-Type--polygon::before { - display: block; - position: absolute; - top: 1px; - right: 1px; - bottom: 1px; - left: 1px; - border: 1px solid $cHoverLine; - content: ''; -} - -.CDB-Type--line::before { - display: block; - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 3px; - width: 1px; - transform: rotate(45deg); - background: $cHoverLine; - content: ''; -} diff --git a/src/scss/cdb-components/tags.scss b/src/scss/cdb-components/tags.scss deleted file mode 100644 index c8a74ee..0000000 --- a/src/scss/cdb-components/tags.scss +++ /dev/null @@ -1,136 +0,0 @@ -// Typography styles -// ---------------------------------------------- - -/* SG -# Tags / Privacy - -``` - - - - - -``` -*/ - -@import '../cdb-utilities/mixins'; -@import '../cdb-variables/sizes'; -@import '../cdb-variables/colors'; - - -.CDB-Tag { - padding: 0 3px; - border: 1px solid $cBlue; - border-radius: 2px; - color: $cBlue; - - &.is-public { - border: 1px solid $cPublic; - color: $cPublic; - } - &.is-link { - border: 1px solid $cLink; - color: $cLink; - } - &.is-password { - border: 1px solid $cPassword; - color: $cPassword; - } - &.is-private { - border: 1px solid $cError; - color: $cError; - } -} - -/* SG -# Tags / Metadata - -``` -
    -
  • - -
  • -
  • - -
  • -
  • - -
  • -
- -``` -*/ - -.CDB-ListTag { - @include display-flex(); -} - -.CDB-ListTag-item { - margin-right: $baseSize; -} - -.CDB-Tag.CDB-Tag--withLink { - @include display-flex(); - padding: $halfBaseSize $halfBaseSize $halfBaseSize $baseSize; - border-radius: $halfBaseSize; - background: rgba($cBlue, 0.16); -} - -/* SG -# Tags / Data Type - -``` -
    -
  • - -
  • -
  • - -
  • -
  • - -
  • -
- -``` -*/ - -.CDB-Tag.CDB-Tag--opaque { - padding: $baseSize / 4 $halfBaseSize; - border: 0; - border-radius: $baseSize / 4; - background: rgba(0, 0, 0, 0.04); - text-transform: uppercase; -} - diff --git a/src/scss/cdb-components/tooltips.scss b/src/scss/cdb-components/tooltips.scss deleted file mode 100644 index 49cd210..0000000 --- a/src/scss/cdb-components/tooltips.scss +++ /dev/null @@ -1,148 +0,0 @@ -// Info Tooltip -// ---------------------------------------------- - -/* SG -# Info Tooltip - - -``` -
-
-

627K Transactions

-
-
- -
-
-

627K Transactions

-
-
- -
-
-

627K Transactions

-
-
- -
-
-

627K Transactions

-
-
- -
-
-

627K Transactions

-
-
- -
-
-

627K Transactions

-
-
- - -
-
-

627K Transactions

-
-
- -
-
-

627K Transactions

-
-
- - - -``` -*/ - -@import '../cdb-utilities/mixins'; -@import '../cdb-variables/colors'; -@import '../cdb-variables/sizes'; - - -.CDB-InfoTooltip { - display: inline-block; - position: absolute; - padding: $baseSize; - border-radius: $halfBaseSize; - background: rgba($cMainBg, 0.8); -} -.CDB-InfoTooltip::after { - display: block; - position: absolute; - width: 0; - height: 0; - border: 4px solid transparent; - content: ''; -} - -.is-black { - &.CDB-InfoTooltip.CDB-InfoTooltip--up::after { - border-bottom-color: rgba($cMainBg, 0.8); - } - &.CDB-InfoTooltip.CDB-InfoTooltip--down::after { - border-top-color: rgba($cMainBg, 0.8); - } - &.CDB-InfoTooltip.CDB-InfoTooltip--left::after { - border-right-color: rgba($cMainBg, 0.8); - } - &.CDB-InfoTooltip.CDB-InfoTooltip--right::after { - border-left-color: rgba($cMainBg, 0.8); - } -} - -.is-error { - &.CDB-InfoTooltip.CDB-InfoTooltip--up::after { - border-bottom-color: $cError; - } - &.CDB-InfoTooltip.CDB-InfoTooltip--down::after { - border-top-color: $cError; - } - &.CDB-InfoTooltip.CDB-InfoTooltip--left::after { - border-right-color: $cError; - } - &.CDB-InfoTooltip.CDB-InfoTooltip--right::after { - border-left-color: $cError; - } -} - -.CDB-InfoTooltip.CDB-InfoTooltip--up::after { - top: -$baseSize; - left: calc(50% - #{$halfBaseSize}); - border-top-width: $halfBaseSize; - border-top-style: solid; -} - -.CDB-InfoTooltip.CDB-InfoTooltip--down::after { - bottom: -$baseSize; - left: calc(50% - #{$halfBaseSize}); - border-top-width: $halfBaseSize; - border-top-style: solid; -} - -.CDB-InfoTooltip.CDB-InfoTooltip--left::after { - top: calc(50% - #{$halfBaseSize}); - left: -$baseSize; - border-right-width: $halfBaseSize; - border-right-style: solid; -} - -.CDB-InfoTooltip.CDB-InfoTooltip--right::after { - top: calc(50% - #{$halfBaseSize}); - right: -$baseSize; - border-right-width: $halfBaseSize; - border-right-style: solid; -} - -.CDB-InfoTooltip.is-error { - background: $cError; -} - -.CDB-InfoTooltip-text { - color: $cWhite; -} diff --git a/src/scss/cdb-components/typography.scss b/src/scss/cdb-components/typography.scss deleted file mode 100644 index 1487433..0000000 --- a/src/scss/cdb-components/typography.scss +++ /dev/null @@ -1,77 +0,0 @@ -// Typography styles -// ---------------------------------------------- - -/* SG -# Typography - -``` -

Open Sans 26/34 Regular

-

Open Sans 26/34 Light

-

Open Sans 16/22 Regular

-

Open Sans 12/16 Semibold

-

Open Sans 12/16 Semibold Uppercase

-

Open Sans 12/16 Regular

-

Open Sans 12/16 Regular

-

Open Sans 12/16 Regular

-

Open Sans 10/14 Semibold

-

Open Sans 10/14 Regular

-? -``` -*/ - -@import '../cdb-variables/sizes'; -@import '../cdb-variables/colors'; - -.CDB-Text { - font-family: 'Open Sans'; - $sFontWeight-normal: 400; - - &.is-semibold { - font-weight: $sFontWeight-semibold; - } - &.is-light { - font-weight: $sFontWeight-lighter; - } -} - -.is-underlined { - border-bottom: 1px dotted $cMainLine; -} - -.CDB-Size-huge { - font-size: $sFontSize-huge; - line-height: $sLineHeight-huge; -} - -.CDB-Size-large { - font-size: $sFontSize-large; - line-height: $sLineHeight-large; -} - -.CDB-Size-medium { - font-size: $sFontSize-medium; - line-height: $sLineHeight-medium; -} - -.CDB-Size-small { - font-size: $sFontSize-small; - line-height: $sLineHeight-small; - -} - -.CDB-Size-small.u-whiteTextColor { - -webkit-font-smoothing: initial; -} - -.CDB-FontSize-small { - font-size: $sFontSize-small; -} - -.CDB-FontSize-medium { - font-size: $sFontSize-medium; -} - -.CDB-IconFont.is-disabled { - opacity: 0.24; -} - diff --git a/src/scss/cdb-icon-font.scss b/src/scss/cdb-icon-font.scss deleted file mode 100644 index f417fee..0000000 --- a/src/scss/cdb-icon-font.scss +++ /dev/null @@ -1,1277 +0,0 @@ -// Icon font elements -// ---------------------------------------------- - -// Do not import any file (variables, mixins,...) in this stylesheet. - -@font-face { - font-family: 'CartoIcon'; - src: url('../fonts/cartoIcon.eot'); - src: url('../fonts/cartoIcon.eot?#iefix') format('embedded-opentype'), - url('../fonts/cartoIcon.woff') format('woff'), - url('../fonts/cartoIcon.ttf') format('truetype'), - url('../fonts/cartoIcon.svg?ey3vsq#cartoIcon') format('svg'); - font-weight: normal; - font-style: normal; -} - -.CDB-IconFont { - display: inline-block; - font-family: 'CartoIcon'; - font-style: normal; - font-weight: normal; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; - line-height: 1; -} - -.CDB-IconFont--center { - vertical-align: middle; -} -.CDB-IconFont--top { - vertical-align: top; -} -.CDB-IconFont--small { - font-size: 11px; -} - -/* SG -# Typography/Icon font -All available icons in CartoDB. - -``` - - -
- -

clock

-
- - -
- -

stats

-
- - -
- -

heartEmpty

-
- - -
- -

heartFill

-
- - -
- -

alert

-
- - -
- -

rows

-
- - -
- -

check

-
- - -
- -

dribbble

-
- - -
- -

twitter

-
- - -
- -

caretDown

-
- - -
- -

lightbulb

-
- - -
- -

explore

-
- - -
- -

drop

-
- - -
- -

edition

-
- - -
- -

view

-
- - -
- -

odyssey

-
- - -
- -

settings

-
- - -
- -

downloadCircle

-
- - -
- -

pencilMenu

-
- - -
- -

mobile

-
- - -
- -

wizard

-
- - -
- -

undo

-
- - -
- -

redo

-
- - -
- -

lArrowLight

-
- - -
- -

hide

-
- - -
- -

info

-
- - -
- -

fork

-
- - -
- -

facebook

-
- - -
- -

folder

-
- - -
- -

dropbox

-
- - -
- -

cloud

-
- - -
- -

step

-
- - -
- -

addDocument

-
- - -
- -

arrowNext

-
- - -
- -

arrowPrev

-
- - -
- -

close

-
- - -
- -

cartoFante

-
- - -
- -

lock

-
- - -
- -

cartoDB

-
- - -
- -

lens

-
- - -
- -

closeLimits

-
- - -
- -

defaultUser

-
- - -
- -

cockroach

-
- - -
- -

floppy

-
- - -
- -

trash

-
- - -
- -

wifi

-
- - -
- -

unlock

-
- - -
- -

unlockWithEllipsis

-
- - -
- -

gift

-
- - -
- -

people

-
- - -
- -

play

-
- - -
- -

add

-
- - -
- -

map

-
- - -
- -

anchor

-
- - -
- -

key

-
- - -
- -

calendar

-
- - -
- -

document

-
- - -
- -

eye

-
- - -
- -

marker

-
- - -
- -

progressBar

-
- - -
- -

book

-
- - -
- -

notes

-
- - -
- -

rectangles

-
- - -
- -

mountain

-
- - -
- -

points

-
- - -
- -

snake

-
- - -
- -

boss

-
- - -
- -

rocket

-
- - -
- -

barometer

-
- - -
- -

dollar

-
- - -
- -

email

-
- - -
- -

label

-
- - -
- -

outside

-
- - -
- -

jigsaw

-
- - -
- -

tools

-
- - -
- -

question

-
- - -
- -

layerStack

-
- - -
- -

alarm

-
- - -
- -

cloudDownArrow

-
- - -
- -

pencil

-
- - -
- -

fountainPen

-
- - -
- -

emptyDoc

-
- - -
- -

mergeArrow

-
- - -
- -

mergeColumns

-
- - -
- -

mergeSpatial

-
- - -
- -

globe

-
- - -
- -

chevronDown

-
- - -
- -

streets

-
- - -
- -

keys

-
- - -
- -

facebookSquare

-
- - -
- -

fullscreen

-
- - -
- -

rArrowLight

-
- - -
- -

share

-
- - -
- -

linkedin

-
- - -
- -

calendarBlank

-
- - -
- -

creativeCommons

-
- - -
- -

bubble

-
- - -
- -

bars

-
- - -
- -

arrowMenuLight

-
- - -
- -

tieFighter

-
- - -
- -

ray

-
- - -
- -

markup

-
- - -
- -

table

-
- - -
- -

airlock

-
- - -
- -

pin

-
- - -
- -

attache

-
- - -
- -

download

-
- - -
- -

group

-
- - -
- -

dashboard

-
- - -
- -

spinner

-
- - -
- -

mapsearch

-
- - -
- -

rArrow

-
- -``` -*/ - - - -.CDB-IconFont-clock::before { - content: '\E001'; -} - - -.CDB-IconFont-stats::before { - content: '\E002'; -} - - -.CDB-IconFont-heartEmpty::before { - content: '\E003'; -} - - -.CDB-IconFont-heartFill::before { - content: '\E004'; -} - - -.CDB-IconFont-alert::before { - content: '\E005'; -} - - -.CDB-IconFont-rows::before { - content: '\E006'; -} - - -.CDB-IconFont-check::before { - content: '\E007'; -} - - -.CDB-IconFont-dribbble::before { - content: '\E008'; -} - - -.CDB-IconFont-twitter::before { - content: '\E009'; -} - - -.CDB-IconFont-caretDown::before { - content: '\E00A'; -} - - -.CDB-IconFont-lightbulb::before { - content: '\E00B'; -} - - -.CDB-IconFont-explore::before { - content: '\E00C'; -} - - -.CDB-IconFont-drop::before { - content: '\E00D'; -} - - -.CDB-IconFont-edition::before { - content: '\E00E'; -} - - -.CDB-IconFont-view::before { - content: '\E00F'; -} - - -.CDB-IconFont-odyssey::before { - content: '\E010'; -} - - -.CDB-IconFont-settings::before { - content: '\E011'; -} - - -.CDB-IconFont-downloadCircle::before { - content: '\E012'; -} - - -.CDB-IconFont-pencilMenu::before { - content: '\E013'; -} - - -.CDB-IconFont-mobile::before { - content: '\E014'; -} - - -.CDB-IconFont-wizard::before { - content: '\E015'; -} - - -.CDB-IconFont-undo::before { - content: '\E016'; -} - - -.CDB-IconFont-redo::before { - content: '\E017'; -} - - -.CDB-IconFont-lArrowLight::before { - content: '\E018'; -} - - -.CDB-IconFont-hide::before { - content: '\E019'; -} - - -.CDB-IconFont-info::before { - content: '\E01A'; -} - - -.CDB-IconFont-fork::before { - content: '\E01B'; -} - - -.CDB-IconFont-facebook::before { - content: '\E01C'; -} - - -.CDB-IconFont-folder::before { - content: '\E01D'; -} - - -.CDB-IconFont-dropbox::before { - content: '\E01E'; -} - - -.CDB-IconFont-cloud::before { - content: '\E01F'; -} - - -.CDB-IconFont-step::before { - content: '\E020'; -} - - -.CDB-IconFont-addDocument::before { - content: '\E021'; -} - - -.CDB-IconFont-arrowNext::before { - content: '\E022'; -} - - -.CDB-IconFont-arrowPrev::before { - content: '\E023'; -} - - -.CDB-IconFont-close::before { - content: '\E024'; -} - - -.CDB-IconFont-cartoFante::before { - content: '\E025'; -} - - -.CDB-IconFont-lock::before { - content: '\E026'; -} - - -.CDB-IconFont-cartoDB::before { - content: '\E027'; -} - - -.CDB-IconFont-lens::before { - content: '\E028'; -} - - -.CDB-IconFont-closeLimits::before { - content: '\E029'; -} - - -.CDB-IconFont-defaultUser::before { - content: '\E02A'; -} - - -.CDB-IconFont-cockroach::before { - content: '\E02B'; -} - - -.CDB-IconFont-floppy::before { - content: '\E02C'; -} - - -.CDB-IconFont-trash::before { - content: '\E02D'; -} - - -.CDB-IconFont-wifi::before { - content: '\E02E'; -} - - -.CDB-IconFont-unlock::before { - content: '\E02F'; -} - - -.CDB-IconFont-unlockWithEllipsis::before { - content: '\E030'; -} - - -.CDB-IconFont-gift::before { - content: '\E031'; -} - - -.CDB-IconFont-people::before { - content: '\E032'; -} - - -.CDB-IconFont-play::before { - content: '\E033'; -} - - -.CDB-IconFont-add::before { - content: '\E034'; -} - - -.CDB-IconFont-map::before { - content: '\E035'; -} - - -.CDB-IconFont-anchor::before { - content: '\E036'; -} - - -.CDB-IconFont-key::before { - content: '\E037'; -} - - -.CDB-IconFont-calendar::before { - content: '\E038'; -} - - -.CDB-IconFont-document::before { - content: '\E039'; -} - - -.CDB-IconFont-eye::before { - content: '\E03A'; -} - - -.CDB-IconFont-marker::before { - content: '\E03B'; -} - - -.CDB-IconFont-progressBar::before { - content: '\E03C'; -} - - -.CDB-IconFont-book::before { - content: '\E03D'; -} - - -.CDB-IconFont-notes::before { - content: '\E03E'; -} - - -.CDB-IconFont-rectangles::before { - content: '\E03F'; -} - - -.CDB-IconFont-mountain::before { - content: '\E040'; -} - - -.CDB-IconFont-points::before { - content: '\E041'; -} - - -.CDB-IconFont-snake::before { - content: '\E042'; -} - - -.CDB-IconFont-boss::before { - content: '\E043'; -} - - -.CDB-IconFont-rocket::before { - content: '\E044'; -} - - -.CDB-IconFont-barometer::before { - content: '\E045'; -} - - -.CDB-IconFont-dollar::before { - content: '\E046'; -} - - -.CDB-IconFont-email::before { - content: '\E047'; -} - - -.CDB-IconFont-label::before { - content: '\E048'; -} - - -.CDB-IconFont-outside::before { - content: '\E049'; -} - - -.CDB-IconFont-jigsaw::before { - content: '\E04A'; -} - - -.CDB-IconFont-tools::before { - content: '\E04B'; -} - - -.CDB-IconFont-question::before { - content: '\E04C'; -} - - -.CDB-IconFont-layerStack::before { - content: '\E04D'; -} - - -.CDB-IconFont-alarm::before { - content: '\E04E'; -} - - -.CDB-IconFont-cloudDownArrow::before { - content: '\E04F'; -} - - -.CDB-IconFont-pencil::before { - content: '\E050'; -} - - -.CDB-IconFont-fountainPen::before { - content: '\E051'; -} - - -.CDB-IconFont-emptyDoc::before { - content: '\E052'; -} - - -.CDB-IconFont-mergeArrow::before { - content: '\E053'; -} - - -.CDB-IconFont-mergeColumns::before { - content: '\E054'; -} - - -.CDB-IconFont-mergeSpatial::before { - content: '\E055'; -} - - -.CDB-IconFont-globe::before { - content: '\E056'; -} - - -.CDB-IconFont-chevronDown::before { - content: '\E057'; -} - - -.CDB-IconFont-streets::before { - content: '\E058'; -} - - -.CDB-IconFont-keys::before { - content: '\E059'; -} - - -.CDB-IconFont-facebookSquare::before { - content: '\E05A'; -} - - -.CDB-IconFont-fullscreen::before { - content: '\E05B'; -} - - -.CDB-IconFont-rArrowLight::before { - content: '\E05C'; -} - - -.CDB-IconFont-share::before { - content: '\E05D'; -} - - -.CDB-IconFont-linkedin::before { - content: '\E05E'; -} - - -.CDB-IconFont-calendarBlank::before { - content: '\E05F'; -} - - -.CDB-IconFont-creativeCommons::before { - content: '\E060'; -} - - -.CDB-IconFont-bubble::before { - content: '\E061'; -} - - -.CDB-IconFont-bars::before { - content: '\E062'; -} - - -.CDB-IconFont-arrowMenuLight::before { - content: '\E063'; -} - - -.CDB-IconFont-tieFighter::before { - content: '\E064'; -} - - -.CDB-IconFont-ray::before { - content: '\E065'; -} - - -.CDB-IconFont-markup::before { - content: '\E066'; -} - - -.CDB-IconFont-table::before { - content: '\E067'; -} - - -.CDB-IconFont-airlock::before { - content: '\E068'; -} - - -.CDB-IconFont-pin::before { - content: '\E069'; -} - - -.CDB-IconFont-attache::before { - content: '\E06A'; -} - - -.CDB-IconFont-download::before { - content: '\E06B'; -} - - -.CDB-IconFont-group::before { - content: '\E06C'; -} - - -.CDB-IconFont-dashboard::before { - content: '\E06D'; -} - - -.CDB-IconFont-spinner::before { - content: '\E06E'; -} - - -.CDB-IconFont-mapsearch::before { - content: '\E06F'; -} - - -.CDB-IconFont-rArrow::before { - content: '\E070'; -} diff --git a/src/scss/cdb-utilities/_mixins.scss b/src/scss/cdb-utilities/_mixins.scss deleted file mode 100644 index d393024..0000000 --- a/src/scss/cdb-utilities/_mixins.scss +++ /dev/null @@ -1,236 +0,0 @@ -// Mixins -// - Necessary SCSS functions -// - Browser support: -// · IE => 10 -// · Chrome => 21 -// · Sarafi => 6 -// · Firefox => 24 -// · Opera => 12 -// -------------------------------------------------- - -/* ADDS A BROWSER PREFIX TO THE PROPERTY */ -@mixin css3-prefix($property, $value) { - -webkit-#{$property}: #{$value}; - -khtml-#{$property}: #{$value}; - -moz-#{$property}: #{$value}; - -ms-#{$property}: #{$value}; - -o-#{$property}: #{$value}; - #{$property}: #{$value}; -} - -// Display inline -@mixin inline-block() { - display: inline-block; - vertical-align: middle; -} - -// Display flex functions -@mixin display-flex() { - display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */ - display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */ - display: -ms-flexbox; /* TWEENER - IE 10 */ - display: -webkit-flex; /* NEW - Chrome */ - display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */ -} -@mixin flex($v) { - -webkit-box-flex: $v; - -moz-box-flex: $v; - -webkit-flex: $v; - -ms-flex: $v; - flex: $v; -} -@mixin flex-direction($v) { - -webkit-flex-direction: $v; - -moz-flex-direction: $v; - -ms-flex-direction: $v; - flex-direction: $v; - // IE10 doesn't support this property -} -@mixin flex-grow($v) { - -webkit-flex-grow: $v; - -moz-flex-grow: $v; - -ms-flex-grow: $v; - flex-grow: $v; - // IE10 fallback - -ms-flex: $v 0 auto; -} -@mixin flex-wrap($v) { - -webkit-flex-wrap: $v; - -moz-flex-wrap: $v; - -ms-flex-wrap: $v; - flex-wrap: $v; - // IE10 doesn't support this property -} -@mixin flex-order($v) { - -webkit-flex-order: $v; - -webkit-box-ordinal-group: $v; - -moz-box-ordinal-group: $v; - -moz-flex-order: $v; - -ms-flex-order: $v; - -ms-order: $v; - box-ordinal-group: $v; - flex-order: $v; - order: $v; -} -@mixin justify-content($v, $ie-v: "") { - -webkit-justify-content: $v; - -moz-justify-content: $v; - -ms-justify-content: $v; - justify-content: $v; - // Hello IE10 - -ms-flex-pack: if($ie-v != "", $ie-v, $v); -} -@mixin align-items($v, $ie-v: "") { - -webkit-align-items: $v; - -moz-align-items: $v; - -ms-align-items: $v; - align-items: $v; - // Hello IE10 - -ms-flex-align: if($ie-v != "", $ie-v, $v); -} -@mixin align-content($v, $ie-v: "") { - -webkit-align-content: $v; - -moz-align-content: $v; - -ms-align-content: $v; - align-content: $v; - // Hello IE10 - -ms-flex-align: if($ie-v != "", $ie-v, $v); -} - -// CSS3 typical functions -@mixin opacity($v) { - opacity:$v; - filter:alpha(opacity=($v*100)); // IE10 -} - -@mixin grayscale() { - -webkit-filter: grayscale(100%); - -moz-filter: grayscale(100%); - -ms-filter: grayscale(100%); - -o-filter: grayscale(100%); - filter: url("data:image/svg+xml;utf8,#grayscale"); /* Firefox 10+, Firefox on Android */ -} - - -@mixin background-gradient($startColor: #3C3C3C, $endColor: #999999) { - background-image: -webkit-gradient(linear, left top, left bottom, from($startColor), to($endColor)); - background-image: -webkit-linear-gradient(top, $startColor, $endColor); - background-image: -moz-linear-gradient(top, $startColor, $endColor); - background-image: -ms-linear-gradient(top, $startColor, $endColor); - background-image: -o-linear-gradient(top, $startColor, $endColor); - background-image: linear-gradient(top, $startColor, $endColor); - filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#{$startColor}', endColorStr='#{$endColor}'); -} - -@mixin background-horizontal($startColor: #3C3C3C, $endColor: #999999) { - background-color: $startColor; - background-image: -webkit-gradient(linear, left top, right top, from($startColor), to($endColor)); - background-image: -webkit-linear-gradient(left, $startColor, $endColor); - background-image: -moz-linear-gradient(left, $startColor, $endColor); - background-image: -ms-linear-gradient(left, $startColor, $endColor); - background-image: -o-linear-gradient(left, $startColor, $endColor); - background-image: linear-gradient(left, $startColor, $endColor); - filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#{$startColor}', endColorStr='#{$endColor}', gradientType='1'); -} - -@mixin image-2x($image, $width, $height, $x: 0, $y: 0) { - @media (min--moz-device-pixel-ratio: 1.3), - (-o-min-device-pixel-ratio: 2.6/2), - (-webkit-min-device-pixel-ratio: 1.3), - (min-device-pixel-ratio: 1.3), - (min-resolution: 1.3dppx) { - /* on retina, use image that's scaled by 2 */ - background: url($image); - background-size: $width $height; - background-position: $x $y; - } -} - -@mixin transform($params) { - @include css3-prefix('transform', $params); -} - -@mixin transform-style($style: preserve-3d) { - @include css3-prefix('transform-style', $style); -} - -@mixin transition($properties...) { - - @if length($properties) >= 1 { - @include css3-prefix('transition', $properties); - } - - @else { - @include css3-prefix('transition', $what: all, $length: 1s, $easing: ease-in-out); - } -} - - -/* FONT FACE */ -@mixin font-face($fontFamily: myFont, $eotFileSrc: 'myFont.eot', $woffFileSrc: 'myFont.woff', $ttfFileSrc: 'myFont.ttf', $svgFileSrc: 'myFont.svg', $svgFontID: '#myFont') { - @font-face { - font-family: $fontFamily; - src: url($eotFileSrc) format('eot'), - url($woffFileSrc) format('woff'), - url($ttfFileSrc) format('truetype'), - url($svgFileSrc + $svgFontID) format('svg'); - } -} - -@mixin keyframes($animation-name) { - @-webkit-keyframes #{$animation-name} { - @content; - } - @-moz-keyframes #{$animation-name} { - @content; - } - @-ms-keyframes #{$animation-name} { - @content; - } - @-o-keyframes #{$animation-name} { - @content; - } - @keyframes #{$animation-name} { - @content; - } -} - -@mixin text-overflow() { - white-space: nowrap; - overflow: hidden; - text-overflow: ellipsis; -} - -@mixin animation($str) { - @include css3-prefix('animation', $str); -} - -@mixin line-clamp($lines) { - height: $lines * $sLineHeight-normal; - display: -webkit-box; - -webkit-box-orient: vertical; - -webkit-line-clamp: $lines; - overflow: hidden; - text-overflow: ellipsis; - &:after { - content: ' '; - display: block; - position: absolute; - bottom: 0; - right: 0; - height: $sLineHeight-normal; - width: 2 * $sLineHeight-normal; - @include background-horizontal(rgba(255,255,255,0), rgba(255,255,255,1)); - } -} - -@mixin media-query() { - @media only screen and (min-width: 320px) and (max-width: 960px) { - @content; - } -} -@mixin media-query-mobile() { - @media only screen and (max-width: 600px) { - @content; - } -} diff --git a/src/scss/cdb-utilities/defaults.css.scss b/src/scss/cdb-utilities/defaults.css.scss deleted file mode 100644 index aaabb14..0000000 --- a/src/scss/cdb-utilities/defaults.css.scss +++ /dev/null @@ -1,18 +0,0 @@ -// Default classes -// ---------------------------------------------- - -@import '../cdb-variables/colors'; - -body { - color: $cMainText; -} - -a { - color: $cBlue; - text-decoration: none; -} - -a:hover { - text-decoration: underline; -} - diff --git a/src/scss/cdb-utilities/fonts.scss b/src/scss/cdb-utilities/fonts.scss deleted file mode 100644 index 8c8bf83..0000000 --- a/src/scss/cdb-utilities/fonts.scss +++ /dev/null @@ -1,30 +0,0 @@ -// Fonts -// -------------------------------------------------- - -@font-face { - font-family: 'Open Sans'; - font-style: normal; - font-weight: 300; - src: url('../fonts/OpenSans-Light.eot'); - src: url('../fonts/OpenSans-Light.eot?#iefix') format('embedded-opentype'), - url('../fonts/OpenSans-Light.woff') format('woff'), - url('../fonts/OpenSans-Light.ttf') format('truetype'); -} -@font-face { - font-family: 'Open Sans'; - font-style: normal; - font-weight: 400; - src: url('../fonts/OpenSans-Regular.eot'); - src: url('../fonts/OpenSans-Regular.eot?#iefix') format('embedded-opentype'), - url('../fonts/OpenSans-Regular.woff') format('woff'), - url('../fonts/OpenSans-Regular.ttf') format('truetype'); -} -@font-face { - font-family: 'Open Sans'; - font-style: normal; - font-weight: 600; - src: url('../fonts/OpenSans-Semibold.eot'); - src: url('../fonts/OpenSans-Semibold.eot?#iefix') format('embedded-opentype'), - url('../fonts/OpenSans-Semibold.woff') format('woff'), - url('../fonts/OpenSans-Semibold.ttf') format('truetype'); -} diff --git a/src/scss/cdb-utilities/helpers.scss b/src/scss/cdb-utilities/helpers.scss deleted file mode 100644 index c8d83d6..0000000 --- a/src/scss/cdb-utilities/helpers.scss +++ /dev/null @@ -1,138 +0,0 @@ -// Helper classes -// ---------------------------------------------- - -@import './mixins'; -@import '../cdb-variables/colors'; - -/* Margins */ -.u-tSpace { - margin-top: 4px; -} -.u-tSpace--m { - margin-top: 8px; -} -.u-tSpace-xl { - margin-top: 12px; -} -.u-rSpace--s { - margin-right: 2px; -} -.u-rSpace { - margin-right: 4px; -} -.u-rSpace--m { - margin-right: 8px; -} -.u-rSpace--xl { - margin-right: 12px; -} -.u-bSpace { - margin-bottom: 4px; -} -.u-bSpace--m { - margin-bottom: 8px; -} -.u-bSpace--xl { - margin-bottom: 12px; -} -.u-lSpace { - margin-left: 4px; -} -.u-lSpace--xl { - margin-left: 12px; -} - -.u-ellipsis { - text-overflow: ellipsis; - white-space: nowrap; - overflow: hidden; -} - -// Colors -// Main Text Color is default color -// ---------------------------------------------- - -.u-actionTextColor { - color: $cBlue; -} -.u-mainTextColor { - color: $cMainText; -} -.u-secondaryTextColor { - color: $cSecondaryText; -} -.u-altTextColor { - color: $cAltText; -} -.u-hintTextColor { - color: $cHintText; -} -.u-alertTextColor { - color: $cAlert; -} -.u-whiteTextColor { - color: $cWhite; -} -.u-errorTextColor { - color: $cError; -} - -/* Displays */ -.u-iBlock { - @include inline-block(); -} -.u-showDesktop { - display: block !important; -} -.u-showMobile { - display: none !important; -} - -/* Decoration */ -.u-upperCase { - text-transform: uppercase; -} - -/* Flex */ -.u-flex { - @include display-flex(); -} -.u-justifySpace { - @include justify-content(space-between); -} -.u-justifyCenter { - @include justify-content(center); -} -.u-justifyStart { - @include justify-content(flex-start); -} -.u-justifyEnd { - @include justify-content(flex-end); -} -.u-alignStart { - @include align-items(flex-start); -} -.u-alignCenter { - @include align-items(center); -} -.u-alignEnd { - @include align-items(flex-end); -} - - -/* Media queries*/ -@include media-query-mobile() { - .u-showDesktop { - display: none !important; - } - .u-showMobile { - display: block !important; - } -} - -/* helper mixins */ -@mixin default-form-error-style() { - border: 1px solid rgba($cError, 0.48); - background: rgba($cError, 0.04); - color: $cError; -} diff --git a/src/scss/cdb-utilities/vendor/normalize.scss b/src/scss/cdb-utilities/vendor/normalize.scss deleted file mode 100644 index 7bd6216..0000000 --- a/src/scss/cdb-utilities/vendor/normalize.scss +++ /dev/null @@ -1,608 +0,0 @@ -/* ========================================================================== - Normalize.scss settings - ========================================================================== */ -/** - * Includes legacy browser support IE6/7 - * - * Set to false if you want to drop support for IE6 and IE7 - */ - -$legacy_browser_support: false !default; - -/* Base - ========================================================================== */ - -/** - * 1. Set default font family to sans-serif. - * 2. Prevent iOS and IE text size adjust after device orientation change, - * without disabling user zoom. - * 3. Corrects text resizing oddly in IE 6/7 when body `font-size` is set using - * `em` units. - */ - -html { - font-family: sans-serif; /* 1 */ - -ms-text-size-adjust: 100%; /* 2 */ - -webkit-text-size-adjust: 100%; /* 2 */ - @if $legacy_browser_support { - *font-size: 100%; /* 3 */ - } -} - -/** - * Remove default margin. - */ - -body { - margin: 0; -} - -/* HTML5 display definitions - ========================================================================== */ - -/** - * Correct `block` display not defined for any HTML5 element in IE 8/9. - * Correct `block` display not defined for `details` or `summary` in IE 10/11 - * and Firefox. - * Correct `block` display not defined for `main` in IE 11. - */ - -article, -aside, -details, -figcaption, -figure, -footer, -header, -hgroup, -main, -menu, -nav, -section, -summary { - display: block; -} - -/** - * 1. Correct `inline-block` display not defined in IE 6/7/8/9 and Firefox 3. - * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera. - */ - -audio, -canvas, -progress, -video { - display: inline-block; /* 1 */ - vertical-align: baseline; /* 2 */ - @if $legacy_browser_support { - *display: inline; - *zoom: 1; - } -} - -/** - * Prevents modern browsers from displaying `audio` without controls. - * Remove excess height in iOS 5 devices. - */ - -audio:not([controls]) { - display: none; - height: 0; -} - -/** - * Address `[hidden]` styling not present in IE 8/9/10. - * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22. - */ - -[hidden], -template { - display: none; -} - -/* Links - ========================================================================== */ - -/** - * Remove the gray background color from active links in IE 10. - */ - -a { - background-color: transparent; -} - -/** - * Improve readability of focused elements when they are also in an - * active/hover state. - */ - -a { - &:active, &:hover { - outline: 0; - }; -} - -/* Text-level semantics - ========================================================================== */ - -/** - * Address styling not present in IE 8/9/10/11, Safari, and Chrome. - */ - -abbr[title] { - border-bottom: 1px dotted; -} - -/** - * Address style set to `bolder` in Firefox 4+, Safari, and Chrome. - */ - -b, -strong { - font-weight: bold; -} - -@if $legacy_browser_support { - blockquote { - margin: 1em 40px; - } -} - -/** - * Address styling not present in Safari and Chrome. - */ - -dfn { - font-style: italic; -} - -/** - * Address variable `h1` font-size and margin within `section` and `article` - * contexts in Firefox 4+, Safari, and Chrome. - */ - -h1 { - font-size: 2em; - margin: 0.67em 0; -} - -@if $legacy_browser_support { - h2 { - font-size: 1.5em; - margin: 0.83em 0; - } - - h3 { - font-size: 1.17em; - margin: 1em 0; - } - - h4 { - font-size: 1em; - margin: 1.33em 0; - } - - h5 { - font-size: 0.83em; - margin: 1.67em 0; - } - - h6 { - font-size: 0.67em; - margin: 2.33em 0; - } -} - -/** - * Addresses styling not present in IE 8/9. - */ - -mark { - background: #ff0; - color: #000; -} - -@if $legacy_browser_support { - - /** - * Addresses margins set differently in IE 6/7. - */ - - p, - pre { - *margin: 1em 0; - } - - /* - * Addresses CSS quotes not supported in IE 6/7. - */ - - q { - *quotes: none; - } - - /* - * Addresses `quotes` property not supported in Safari 4. - */ - - q:before, - q:after { - content: ''; - content: none; - } -} - -/** - * Address inconsistent and variable font size in all browsers. - */ - -small { - font-size: 80%; -} - -/** - * Prevent `sub` and `sup` affecting `line-height` in all browsers. - */ - -sub, -sup { - font-size: 75%; - line-height: 0; - position: relative; - vertical-align: baseline; -} - -sup { - top: -0.5em; -} - -sub { - bottom: -0.25em; -} - -@if $legacy_browser_support { - - /* ========================================================================== - Lists - ========================================================================== */ - - /* - * Addresses margins set differently in IE 6/7. - */ - - dl, - menu, - ol, - ul { - *margin: 1em 0; - } - - dd { - *margin: 0 0 0 40px; - } - - /* - * Addresses paddings set differently in IE 6/7. - */ - - menu, - ol, - ul { - *padding: 0 0 0 40px; - } - - /* - * Corrects list images handled incorrectly in IE 7. - */ - - nav ul, - nav ol { - *list-style: none; - *list-style-image: none; - } - -} - -/* Embedded content - ========================================================================== */ - -/** - * 1. Remove border when inside `a` element in IE 8/9/10. - * 2. Improves image quality when scaled in IE 7. - */ - -img { - border: 0; - @if $legacy_browser_support { - *-ms-interpolation-mode: bicubic; /* 2 */ - } -} - -/** - * Correct overflow not hidden in IE 9/10/11. - */ - -svg:not(:root) { - overflow: hidden; -} - -/* Grouping content - ========================================================================== */ - -/** - * Address margin not present in IE 8/9 and Safari. - */ - -figure { - margin: 1em 40px; -} - -/** - * Address differences between Firefox and other browsers. - */ - -hr { - box-sizing: content-box; - height: 0; -} - -/** - * Contain overflow in all browsers. - */ - -pre { - overflow: auto; -} - -/** - * Address odd `em`-unit font size rendering in all browsers. - * Correct font family set oddly in IE 6, Safari 4/5, and Chrome. - */ - -code, -kbd, -pre, -samp { - font-family: monospace, monospace; - @if $legacy_browser_support { - _font-family: 'courier new', monospace; - } - font-size: 1em; -} - -/* Forms - ========================================================================== */ - -/** - * Known limitation: by default, Chrome and Safari on OS X allow very limited - * styling of `select`, unless a `border` property is set. - */ - -/** - * 1. Correct color not being inherited. - * Known issue: affects color of disabled elements. - * 2. Correct font properties not being inherited. - * 3. Address margins set differently in Firefox 4+, Safari, and Chrome. - * 4. Improves appearance and consistency in all browsers. - */ - -button, -input, -optgroup, -select, -textarea { - color: inherit; /* 1 */ - font: inherit; /* 2 */ - margin: 0; /* 3 */ - @if $legacy_browser_support { - vertical-align: baseline; /* 3 */ - *vertical-align: middle; /* 3 */ - } -} - -/** - * Address `overflow` set to `hidden` in IE 8/9/10/11. - */ - -button { - overflow: visible; -} - -/** - * Address inconsistent `text-transform` inheritance for `button` and `select`. - * All other form control elements do not inherit `text-transform` values. - * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera. - * Correct `select` style inheritance in Firefox. - */ - -button, -select { - text-transform: none; -} - -/** - * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio` - * and `video` controls. - * 2. Correct inability to style clickable `input` types in iOS. - * 3. Improve usability and consistency of cursor style between image-type - * `input` and others. - * 4. Removes inner spacing in IE 7 without affecting normal text inputs. - * Known issue: inner spacing remains in IE 6. - */ - -button, -html input[type="button"], /* 1 */ -input[type="reset"], -input[type="submit"] { - -webkit-appearance: button; /* 2 */ - cursor: pointer; /* 3 */ - @if $legacy_browser_support { - *overflow: visible; /* 4 */ - } -} - -/** - * Re-set default cursor for disabled elements. - */ - -button[disabled], -html input[disabled] { - cursor: default; -} - -/** - * Remove inner padding and border in Firefox 4+. - */ - -button::-moz-focus-inner, -input::-moz-focus-inner { - border: 0; - padding: 0; -} - -/** - * Address Firefox 4+ setting `line-height` on `input` using `!important` in - * the UA stylesheet. - */ - -input { - line-height: normal; -} - -/** - * 1. Address box sizing set to `content-box` in IE 8/9/10. - * 2. Remove excess padding in IE 8/9/10. - * Known issue: excess padding remains in IE 6. - */ - -input[type="checkbox"], -input[type="radio"] { - -moz-appearance: none; - -webkit-appearance: none; - appearance: none; - box-sizing: border-box; /* 1 */ - padding: 0; /* 2 */ - outline: none; - cursor: pointer; - @if $legacy_browser_support { - *height: 13px; /* 3 */ - *width: 13px; /* 3 */ - } -} -input[type=range]::-webkit-slider-thumb { - -moz-appearance: none; - -webkit-appearance: none; - appearance: none; -} - - -/** - * Fix the cursor style for Chrome's increment/decrement buttons. For certain - * `font-size` values of the `input`, it causes the cursor style of the - * decrement button to change from `default` to `text`. - */ - -input[type="number"]::-webkit-inner-spin-button, -input[type="number"]::-webkit-outer-spin-button { - height: auto; -} - -/** - * 1. Address `appearance` set to `searchfield` in Safari and Chrome. - * 2. Address `box-sizing` set to `border-box` in Safari and Chrome. - */ - -input[type="search"] { - -webkit-appearance: textfield; /* 1 */ - box-sizing: content-box; /* 2 */ -} - -/** - * Remove inner padding and search cancel button in Safari and Chrome on OS X. - * Safari (but not Chrome) clips the cancel button when the search input has - * padding (and `textfield` appearance). - */ - -input[type="search"]::-webkit-search-cancel-button, -input[type="search"]::-webkit-search-decoration { - -webkit-appearance: none; -} - -/** - * Define consistent border, margin, and padding. - */ - -fieldset { - border: 1px solid #c0c0c0; - margin: 0 2px; - padding: 0.35em 0.625em 0.75em; -} - -/** - * 1. Correct `color` not being inherited in IE 8/9/10/11. - * 2. Remove padding so people aren't caught out if they zero out fieldsets. - * 3. Corrects text not wrapping in Firefox 3. - * 4. Corrects alignment displayed oddly in IE 6/7. - */ - -legend { - border: 0; /* 1 */ - padding: 0; /* 2 */ - @if $legacy_browser_support { - white-space: normal; /* 3 */ - *margin-left: -7px; /* 4 */ - } -} - -/** - * Remove default vertical scrollbar in IE 8/9/10/11. - */ - -textarea { - overflow: auto; -} - -/** - * Don't inherit the `font-weight` (applied by a rule above). - * NOTE: the default cannot safely be changed in Chrome and Safari on OS X. - */ - -optgroup { - font-weight: bold; -} - -/* Tables - ========================================================================== */ - -/** - * Remove most spacing between table cells. - */ - -table { - border-collapse: collapse; - border-spacing: 0; -} - -td, -th { - padding: 0; -} - -/* Forms - ========================================================================== */ - -/** - * Remove default styles for forms - */ - -input { - -moz-appearance: none; - -webkit-appearance: none; - appearance: none; - outline: none; - - &[type="checkbox"], - &[type="radio"] { - cursor: pointer; - } -} diff --git a/src/scss/cdb-utilities/vendor/reset.scss b/src/scss/cdb-utilities/vendor/reset.scss deleted file mode 100644 index 06fe9d1..0000000 --- a/src/scss/cdb-utilities/vendor/reset.scss +++ /dev/null @@ -1,59 +0,0 @@ -/* http://meyerweb.com/eric/tools/css/reset/ - v2.0 | 20110126 - License: none (public domain) -*/ - -html, body, div, span, applet, object, iframe, -h1, h2, h3, h4, h5, h6, p, blockquote, pre, -a, abbr, acronym, address, big, cite, code, -del, dfn, em, img, ins, kbd, q, s, samp, -small, strike, strong, sub, sup, tt, var, -b, u, i, center, -dl, dt, dd, ol, ul, li, -fieldset, form, label, legend, -table, caption, tbody, tfoot, thead, tr, th, td, -article, aside, canvas, details, embed, -figure, figcaption, footer, header, hgroup, -menu, nav, output, ruby, section, summary, -time, mark, audio, video { - margin: 0; - padding: 0; - border: 0; - font: inherit; - font-size: 100%; - vertical-align: baseline; -} -/* HTML5 display-role reset for older browsers */ -article, aside, details, figcaption, figure, -footer, header, hgroup, menu, nav, section { - display: block; -} -body { - line-height: 1; -} -ol, ul { - list-style: none; -} -blockquote, q { - quotes: none; -} -blockquote:before, blockquote:after, -q:before, q:after { - content: ''; -} -table { - border-collapse: collapse; - border-spacing: 0; -} -// Resetting buttons too -button { - margin: 0; - padding: 0; - border: none; - background: transparent; - box-sizing: border-box; - outline: none; -} -dd, dt { - display: inline-block; -} diff --git a/src/scss/cdb-variables/_colors.scss b/src/scss/cdb-variables/_colors.scss deleted file mode 100644 index 394a701..0000000 --- a/src/scss/cdb-variables/_colors.scss +++ /dev/null @@ -1,33 +0,0 @@ -// Colors variables -// ---------------------------------------------- - -// General -$cBlue: #1181FB; -$cBlack: #000; -$cWhite: #FFF; -$cMainBg: #2E3C43; - -//Structure -$cSecondaryDark: #282C2F; -$cSecondaryBackground: #F2F6F9; -$cThirdBackground: #F9F9F9; - -//Lines -$cHoverLine: #AAA; -$cMainLine: #DDD; -$cSecondaryLine: #EEE; - -//Typography -$cMainText: #2E3C43; -$cSecondaryText: #636D72; -$cAltText: #979EA1; -$cHintText: #CBCED0; - -//Others -$cHighlight: #9DE0AD; -$cAlert: #F19243; -$cPublic: #9BC63B; -$cLink: #FEB100; -$cPassword: #FB7B23; -$cError: #F15743; -$cHighlightYellow: #FFFFC0; diff --git a/src/scss/cdb-variables/_sizes.scss b/src/scss/cdb-variables/_sizes.scss deleted file mode 100644 index ebb911a..0000000 --- a/src/scss/cdb-variables/_sizes.scss +++ /dev/null @@ -1,31 +0,0 @@ -// Sizes variables -// ---------------------------------------------- - -// Widths -$desktopLayout: 352px; -$mobileLayout: 280px; - -//Base -$baseSize: 8px; -$halfBaseSize: $baseSize / 2; - -// Margins -$sMargin-section: 24px; // To separate main section -$sMargin-element: 14px; // To separate elements inside a group - -// Font sizes -$sFontSize-small: 10px; -$sFontSize-medium: 12px; -$sFontSize-large: 16px; -$sFontSize-huge: 26px; - -// Font weights -$sFontWeight-lighter: 300; -$sFontWeight-normal: 400; -$sFontWeight-semibold: 600; - -// Line heights -$sLineHeight-small: 14px; -$sLineHeight-medium: 16px; -$sLineHeight-large: 22px; -$sLineHeight-huge: 34px; diff --git a/styleguide/_template.html b/styleguide/_template.html deleted file mode 100644 index f892cf2..0000000 --- a/styleguide/_template.html +++ /dev/null @@ -1,978 +0,0 @@ - - - - -{{> theme}} -{{> highlight}} -{{> jquery}} - - - -
-
    -
  • - Basics -
  • - {{#each menu}} -
  • - {{#if headings.0.name}} - {{name}} - - {{/if}} - {{#unless headings.0.name}} - {{name}} - {{/unless}} -
  • - {{/each}} -
-
- -
-
-
-

Basics

-

Important notes about this styleguide

-
-
-

This is a preliminar WIP of the new dashboard stylesheet, based on the naming conventions of suitcss and Medium’s CSS is actually pretty good.

- -

General rules

- -
    -
  • All new elements added in this repository should have included a 'CDB-' namespace.
  • -
  • - Don't create default styles for common elements (e.g. input { padding: 10px 0 }). It will make more difficult edit styles for the future custom elements and the !important use will grow.
  • -
  • - Avoid creating new classes with only one attribute (e.g. .marginRight { margin-right: 10px } ). It is impossible to manage the amount of cases we would like to cover.
  • -
- -
- -

Table of contents

- - - -
- -

- Components

- -

Syntax: <ComponentName>[--modifierName|-descendentName]

- -

- ComponentName

- -

The component's name must be written in camel case.

- -
.MyComponent { /* … */ }
- -
<article class="MyComponent">
-  …
-</article>
- -

- ComponentName--modifierName

- -

A component modifier is a class that modifies the presentation of the base component in some form.

- -
    -
  1. Modifier names must be written in camel case and be separated from the component name by two hyphens.
  2. -
  3. - The class should be included in the HTML in addition to the base component class.
  4. -
- -
/* Core button */
-.Btn { /* … */ }
-
-/* Default button style */
-.Btn--default { /* … */ }
- -
<article class="Btn Btn--default">
-  …
-</article>
- -

- ComponentName-descendentName

- -
    -
  1. A component descendent is a class that is attached to a descendent node of a component.
  2. -
  3. It's responsible for applying presentation directly to the descendent on behalf of a particular component.
  4. -
  5. - Descendent names must be written in camel case.
  6. -
- -
<article class="Tweet">
-  <header class="Tweet-header">
-    <img class="Tweet-avatar" src="{{src}}" alt="{{alt}}">
-    …
-  </header>
-  <div class="Tweet-bodyText">
-    …
-  </div>
-</article>
- -

- ComponentName.is-stateOfComponent

- -

Use is-stateName to reflect changes to a component's state.

- -
    -
  1. The state name must be camel case.
  2. -
  3. - Never style these classes directly: they should always be used as an adjoining class.
  4. -
- -

This means that the same state names can be used in multiple contexts, but every component must define its own styles for the state (as they are scoped to the component).

- -

Right:

- -
.Tweet { /* … */ }
-.Tweet.is-expanded { /* … */ }
-
-<article class="Tweet is-expanded">
-  …
-</article>
- -

Wrong:

- -
.Tweet { /* … */ }
-.Tweet.expanded { /* … */ }
- -
<article class="Tweet expanded">
-  …
-</article>
- -

We should always rely on the same terminology to express state of a component: i.e.: a common term for is-active, is-expanded, is-selected, is-highlighted, ...

- -

- JavaScript

- -

Syntax: js-<targetName>

- -

JavaScript-specific classes reduce the risk that changing the structure or theme of components will inadvertently affect any required JavaScript behaviour and complex functionality. It is not neccesarry to use them in every case, just think of them as a tool in your utility belt. If you are creating a class, which you dont intend to use for styling, but instead only as a selector in JavaScript, you should probably be adding the js- prefix. In practice this looks like this:

- -
<a href="/login" class="Btn Btn-primary js-login"></a>
- -

JavaScript-specific classes should not, under any circumstances, be styled.

- -
- -

- A word on (Pre)compilers

- -

Since we use Rails as a backend, we make use of Sprockets to make all the dirty work with stylesheets (and javascripts). Many of the stylesheets are constructed by simply writing require_directorythis is awesome, but it also kind of sucks.

- -

Preferably we should use @import instead of require when possible. - http://pivotallabs.com/structure-your-sass-files-with-import/

- -

When using require we should list the required files in the order they must be applied, as an added control to avoid undesired behaviours.

- -

Bad:

- -
/*
-*= require dashboard/header
-*= require dashboard/table
-*/
-
- -

Worse:

- -
/*
-*= require_tree dashboard
-*/
-
- -

Good:

- -
@import "dashboard/header";
-@import "dashboard/tables";
-
- -

Better:

- -
@import
-"dashboard/header",
-"dashboard/tables";
-
- -
- -

- Structure sample

- -

-.Btn {}
-
-  .Btn--m {}
-
-  .Btn--highlight {}
-
-  .Btn--green {}
-
-  .Btn.is-active {}
-
-.Menu {}
-
-  .Menu-item {}
-
-  .Menu-link {}
-
-.Header {}
-
-  .Navbar {}
-
-    .Navbar-header {}
-
-      .Navbar-brand {}
-
-      .Navbar-searchField {}
-
-      .Navbar-searchButton {}
-
-    .Navbar-menu {}
-
-      .Navbar-menuItem {}
-
-      .Navbar-menuLink {}
-
-.Dashboard {}
-
-  .Dashboard-header {}
-
-    .Dashboard-avatar {}
-
-    .Dashboard-title {}
-
-    .Dashboard-menu {}
-
-  .Dashboard-subHeader {}
-
-    .Dashboard-subMenu {}
-
-      .Dashboard-subMenuItem {}
-
-      .Dashboard-subMenuLink {}
-
-
-.Block {}
-
-  .Block-thumbnail {}
-
-  .Block-title {}
-
-  .Block-description {}
-
-  .Block-tags {}
-
-  .Block-status {}
-
-  .Block-footer {}
-
- -
- -

- Colors

- -

- colors.scss

- -

Syntax: $c<colorName>

- -

- Sample

- -
// Colors
-// --------------------------------------------------
-// Paragraphs
-$cTypography-headers:           rgba(#333, 1);
-$cTypography-paragraphs:        rgba(#666, 1);
-$cTypography-secondary:         rgba(#999, 1);
-$cTypography-help:              rgba(#CCC, 1);
-$cTypography-headersOverBlack:  rgba(#FFF, 1);
-$cTypography-link:              rgba(#0090D7, 1);
-$cTypography-linkHover:         rgba(#62B4E3, 1);
-$cTypography-linkSelected:      rgba(#333, 1);
-
-// Structure
-$cStructure-mainBkg:  rgba(#FFF, 1);
-$cStructure-mainLine: rgba(#DDD, 1);
-$cStructure-grayBkg:  rgba(#F9F9F9, 1);
-$cStructure-softLine: rgba(#EEE, 1);
-
-// Highlight
-$cHighlight-main:     rgba(#0090D7, 1);
-$cHighlight-positive: rgba(#8FB83F, 1);
-$cHighlight-negative: rgba(#C74B43, 1);
-$cHighlight-alert:    rgba(#C67B44, 1);
- -

Don't use named colors, try to use meaningful names.

- -
- -

- Z-Index

- -

- z-index.scss

- -
// Z-Index Scale (private vars)
-// --------------------------------------------------
-@zIndex-1:   100;
-@zIndex-2:   200;
-@zIndex-3:   300;
-@zIndex-4:   400;
-@zIndex-5:   500;
-@zIndex-6:   600;
-@zIndex-7:   700;
-@zIndex-8:   800;
-@zIndex-9:   900;
-@zIndex-10: 1000;
- -

- z-index file use

- -
// Z-Index Applications
-// --------------------------------------------------
-@zIndex-1--screenForeground:        @zIndex-1;
-@zIndex-1--followUpVisibility:      @zIndex-1;
-@zIndex-1--prlWelcome:              @zIndex-1;
-@zIndex-1--appImageDropdown:        @zIndex-1;
-@zIndex-1--surfaceUnder:            @zIndex-1;
-@zIndex-1--blockGroup:              @zIndex-1;
-
-(…)
-
-@zIndex-9--zoomOverlayTarget:       @zIndex-9;
-@zIndex-9--navOverlayTouch:         @zIndex-9;
-@zIndex-9--overlay:                 @zIndex-9;
-@zIndex-9--dialog:                  @zIndex-9;
-@zIndex-9--tooltip:                 @zIndex-9;
-
- -
- -

- Formatting

- -

From: https://gist.github.com/fat/a47b882eb5f84293c4ed

- -

The following are some high level page formatting style rules.

- -

- -

- Property: value

- -

There should be a blank space between a property and a value:

- -

Right:

- -
.content-edit { background: red }
- -

Wrong:

- -
.content-edit {background:red}
- -

If you have to define an only one property, leave blank spaces between brackets.

- -

- -

- Spacing

- -

CSS rules should be comma seperated but live on new lines:

- -

Right:

- -
.content,
-.content-edit {
-  …
-}
- -

Wrong:

- -
.content, .content-edit {
-  …
-}
- -

CSS blocks should be seperated by a single new line. not two. not 0.

- -

Right:

- -
.content {
-  …
-}
-.content-edit {
-  …
-}
- -

Wrong:

- -
.content {
-  …
-}
-
-.content-edit {
-  …
-}
- -
- -

- Quotes

- -

Quotes are optional in CSS and LESS. We use double quotes as it is visually clearer that the string is not a selector or a style property.

- -

Right:

- -
background-image: url("/img/you.jpg");
-font-family: "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial;
- -

Wrong:

- -
background-image: url(/img/you.jpg);
-font-family: Helvetica Neue Light, Helvetica Neue, Helvetica, Arial;
- -
- -

- Colors

- -

When implementing feature styles, you should only be using color variables provided by colors.css.scss.

- -

When adding a color variable to colors.css.scss, using RGB and RGBA color units are preferred over hex, named, HSL, or HSLA values.

- -

Right:

- -
rgb(50, 50, 50);
-rgba(50, 50, 50, 0.2);
- -

Wrong:

- -
#FFF;
-#FFFFFF;
-white;
-hsl(120, 100%, 50%);
-hsla(120, 100%, 50%, 1);
- -
- -

- Things to add to the guide

- -
    -
  1. Define a type scale (variables for font-sizes, weights, letter-spacing, line-heights, etc.).
  2. -
  3. - .u- prefixed class name for single purpose utility classes like .u-underline, .u-capitalize, etc. (not sure about this one)
  4. -
  5. Don't use compass predefined functions, create a mixin in new mixins.css.scssfile.
  6. -
  7. No more clearfix or layout hacks, use flexbox: - - -
  8. -
- -
- -

- CSSComb config

- -
   "config": {
-
-        // Whether to add a semicolon after the last value/mixin.
-        "always-semicolon": true,
-
-        // Set indent for code inside blocks, including media queries and nested rules.
-        "block-indent": "  ",
-
-        // Unify case of hexadecimal colors.
-        "color-case": "lower",
-
-        // Whether to expand hexadecimal colors or use shorthands.
-        "color-shorthand": true,
-
-        // Unify case of element selectors.
-        "element-case": "lower",
-
-        // Add/remove line break at EOF.
-        "eof-newline": true,
-
-        // Add/remove leading zero in dimensions.
-        "leading-zero": false,
-
-        // Unify quotes style.
-        "quotes": "single",
-
-        // Remove all rulesets that contain nothing but spaces.
-        "remove-empty-rulesets": true,
-
-        // Set space after `:` in declarations.
-        "space-after-colon": " ",
-
-        // Set space after combinator (for example, in selectors like `p > a`).
-        "space-after-combinator": " ",
-
-        // Set space after `{`.
-        "space-after-opening-brace": "\n",
-
-        // Set space after selector delimiter.
-        "space-after-selector-delimiter": "\n",
-
-        // Set space before `}`.
-        "space-before-closing-brace": "\n",
-
-        // Set space before `:` in declarations.
-        "space-before-colon": "",
-
-        // Set space before combinator (for example, in selectors like `p > a`).
-        "space-before-combinator": " ",
-
-        // Set space before `{`.
-        "space-before-opening-brace": " ",
-
-        // Set space before selector delimiter.
-        "space-before-selector-delimiter": "",
-
-        // Set space between declarations (i.e. `color: tomato`).
-        "space-between-declarations": "\n",
-
-        // Whether to trim trailing spaces.
-        "strip-spaces": true,
-
-        // Whether to remove units in zero-valued dimensions.
-        "unitless-zero": true,
-
-        // Whether to align prefixes in properties and values.
-        "vendor-prefix-align": true,
-
-        // Sort properties in particular order.
-        "sort-order": [
-            "position",
-            "top",
-            "right",
-            "bottom",
-            "left",
-            "z-index",
-            "display",
-            "float",
-            "width",
-            "min-width",
-            "max-width",
-            "height",
-            "min-height",
-            "max-height",
-            "-webkit-box-sizing",
-            "-moz-box-sizing",
-            "box-sizing",
-            "-webkit-appearance",
-            "-moz-appearance",
-            "appearance",
-            "padding",
-            "padding-top",
-            "padding-right",
-            "padding-bottom",
-            "padding-left",
-            "margin",
-            "margin-top",
-            "margin-right",
-            "margin-bottom",
-            "margin-left",
-            "overflow",
-            "overflow-x",
-            "overflow-y",
-            "-webkit-overflow-scrolling",
-            "-ms-overflow-x",
-            "-ms-overflow-y",
-            "-ms-overflow-style",
-            "clip",
-            "clear",
-            "src",
-            "font",
-            "font-family",
-            "font-size",
-            "font-weight",
-            "font-style",
-            "font-variant",
-            "font-size-adjust",
-            "font-stretch",
-            "font-effect",
-            "font-emphasize",
-            "font-emphasize-position",
-            "font-emphasize-style",
-            "font-smooth",
-            "-webkit-hyphens",
-            "-moz-hyphens",
-            "hyphens",
-            "line-height",
-            "color",
-            "text-align",
-            "-webkit-text-align-last",
-            "-moz-text-align-last",
-            "-ms-text-align-last",
-            "text-align-last",
-            "text-emphasis",
-            "text-emphasis-color",
-            "text-emphasis-style",
-            "text-emphasis-position",
-            "text-decoration",
-            "text-underline-position",
-            "-webkit-text-decoration-style",
-            "-moz-text-decoration-style",
-            "text-decoration-style",
-            "-moz-text-decoration-color",
-            "text-decoration-color",
-            "-moz-text-decoration-line",
-            "text-decoration-line",
-            "text-indent",
-            "-ms-text-justify",
-            "text-justify",
-            "text-outline",
-            "-ms-text-overflow",
-            "text-overflow",
-            "text-overflow-ellipsis",
-            "text-overflow-mode",
-            "text-shadow",
-            "text-transform",
-            "text-wrap",
-            "-webkit-text-size-adjust",
-            "-moz-text-size-adjust",
-            "-ms-text-size-adjust",
-            "text-size-adjust",
-            "letter-spacing",
-            "-ms-word-break",
-            "word-break",
-            "word-spacing",
-            "-ms-word-wrap",
-            "word-wrap",
-            "-moz-tab-size",
-            "-o-tab-size",
-            "tab-size",
-            "white-space",
-            "vertical-align",
-            "list-style",
-            "list-style-position",
-            "list-style-type",
-            "list-style-image",
-            "pointer-events",
-            "-webkit-touch-action",
-            "-ms-touch-action",
-            "touch-action",
-            "cursor",
-            "visibility",
-            "zoom",
-            "flex-direction",
-            "flex-order",
-            "flex-pack",
-            "flex-align",
-            "table-layout",
-            "empty-cells",
-            "caption-side",
-            "border-spacing",
-            "border-collapse",
-            "content",
-            "quotes",
-            "counter-reset",
-            "counter-increment",
-            "resize",
-            "-webkit-user-select",
-            "-moz-user-select",
-            "-ms-user-select",
-            "user-select",
-            "nav-index",
-            "nav-up",
-            "nav-right",
-            "nav-down",
-            "nav-left",
-            "background",
-            "background-color",
-            "background-image",
-            "-ms-filter:\\'progid:DXImageTransform.Microsoft.gradient",
-            "filter:progid:DXImageTransform.Microsoft.gradient",
-            "filter:progid:DXImageTransform.Microsoft.AlphaImageLoader",
-            "filter",
-            "background-repeat",
-            "background-attachment",
-            "background-position",
-            "background-position-x",
-            "-ms-background-position-x",
-            "background-position-y",
-            "-ms-background-position-y",
-            "-webkit-background-clip",
-            "-moz-background-clip",
-            "background-clip",
-            "background-origin",
-            "-webkit-background-size",
-            "-moz-background-size",
-            "-o-background-size",
-            "background-size",
-            "border",
-            "border-width",
-            "border-style",
-            "border-color",
-            "border-top",
-            "border-top-width",
-            "border-top-style",
-            "border-top-color",
-            "border-right",
-            "border-right-width",
-            "border-right-style",
-            "border-right-color",
-            "border-bottom",
-            "border-bottom-width",
-            "border-bottom-style",
-            "border-bottom-color",
-            "border-left",
-            "border-left-width",
-            "border-left-style",
-            "border-left-color",
-            "-webkit-box-decoration-break",
-            "box-decoration-break",
-            "-webkit-border-radius",
-            "-moz-border-radius",
-            "border-radius",
-            "-webkit-border-top-left-radius",
-            "-moz-border-radius-topleft",
-            "border-top-left-radius",
-            "-webkit-border-top-right-radius",
-            "-moz-border-radius-topright",
-            "border-top-right-radius",
-            "-webkit-border-bottom-right-radius",
-            "-moz-border-radius-bottomright",
-            "border-bottom-right-radius",
-            "-webkit-border-bottom-left-radius",
-            "-moz-border-radius-bottomleft",
-            "border-bottom-left-radius",
-            "-webkit-border-image",
-            "-moz-border-image",
-            "-o-border-image",
-            "border-image",
-            "-webkit-border-image-source",
-            "-moz-border-image-source",
-            "-o-border-image-source",
-            "border-image-source",
-            "-webkit-border-image-slice",
-            "-moz-border-image-slice",
-            "-o-border-image-slice",
-            "border-image-slice",
-            "-webkit-border-image-width",
-            "-moz-border-image-width",
-            "-o-border-image-width",
-            "border-image-width",
-            "-webkit-border-image-outset",
-            "-moz-border-image-outset",
-            "-o-border-image-outset",
-            "border-image-outset",
-            "-webkit-border-image-repeat",
-            "-moz-border-image-repeat",
-            "-o-border-image-repeat",
-            "border-image-repeat",
-            "outline",
-            "outline-width",
-            "outline-style",
-            "outline-color",
-            "outline-offset",
-            "-webkit-box-shadow",
-            "-moz-box-shadow",
-            "box-shadow",
-            "filter:progid:DXImageTransform.Microsoft.Alpha(Opacity",
-            "-ms-filter:\\'progid:DXImageTransform.Microsoft.Alpha",
-            "opacity",
-            "-ms-interpolation-mode",
-            "-webkit-transition",
-            "-moz-transition",
-            "-ms-transition",
-            "-o-transition",
-            "transition",
-            "-webkit-transition-delay",
-            "-moz-transition-delay",
-            "-ms-transition-delay",
-            "-o-transition-delay",
-            "transition-delay",
-            "-webkit-transition-timing-function",
-            "-moz-transition-timing-function",
-            "-ms-transition-timing-function",
-            "-o-transition-timing-function",
-            "transition-timing-function",
-            "-webkit-transition-duration",
-            "-moz-transition-duration",
-            "-ms-transition-duration",
-            "-o-transition-duration",
-            "transition-duration",
-            "-webkit-transition-property",
-            "-moz-transition-property",
-            "-ms-transition-property",
-            "-o-transition-property",
-            "transition-property",
-            "-webkit-transform",
-            "-moz-transform",
-            "-ms-transform",
-            "-o-transform",
-            "transform",
-            "-webkit-transform-origin",
-            "-moz-transform-origin",
-            "-ms-transform-origin",
-            "-o-transform-origin",
-            "transform-origin",
-            "-webkit-animation",
-            "-moz-animation",
-            "-ms-animation",
-            "-o-animation",
-            "animation",
-            "-webkit-animation-name",
-            "-moz-animation-name",
-            "-ms-animation-name",
-            "-o-animation-name",
-            "animation-name",
-            "-webkit-animation-duration",
-            "-moz-animation-duration",
-            "-ms-animation-duration",
-            "-o-animation-duration",
-            "animation-duration",
-            "-webkit-animation-play-state",
-            "-moz-animation-play-state",
-            "-ms-animation-play-state",
-            "-o-animation-play-state",
-            "animation-play-state",
-            "-webkit-animation-timing-function",
-            "-moz-animation-timing-function",
-            "-ms-animation-timing-function",
-            "-o-animation-timing-function",
-            "animation-timing-function",
-            "-webkit-animation-delay",
-            "-moz-animation-delay",
-            "-ms-animation-delay",
-            "-o-animation-delay",
-            "animation-delay",
-            "-webkit-animation-iteration-count",
-            "-moz-animation-iteration-count",
-            "-ms-animation-iteration-count",
-            "-o-animation-iteration-count",
-            "animation-iteration-count",
-            "-webkit-animation-direction",
-            "-moz-animation-direction",
-            "-ms-animation-direction",
-            "-o-animation-direction",
-            "animation-direction",
-            "-webkit-text-orientation",
-            "-moz-text-orientation",
-            "-o-text-orientation",
-            "text-orientation",
-            "-ms-writing-mode",
-            "text-rendering",
-            "-webkit-font-smoothing",
-            "-moz-osx-font-smoothing",
-            "font-smoothing",
-            "direction",
-            "unicode-bidi"
-        ]
-    }
-
- - - - - - - - - -
-
- - {{#each sections}} -
- -
-

{{section}}{{#if heading}}/{{heading}}{{/if}}

- {{{comment}}} -
- - {{#if code}} -
- {{{code}}} -
- {{/if}} - - {{#if markup}} -
-
-{{{markup}}}
-
-
- {{/if}} - -
- {{/each}} -
diff --git a/styleguide/index.html b/styleguide/index.html index 60bd84c..42ffa64 100644 --- a/styleguide/index.html +++ b/styleguide/index.html @@ -76,6 +76,11 @@ box-shadow: 2px 2px 5px 0px rgba(50, 50, 50, 0.43); } +.styleguide-list { + list-style: disc; + list-style-position: inside; +} + #styleguide-menu .submenu { display: none; background: rgba(0, 0, 0, 0.05); @@ -230,7 +235,7 @@ github.com style (c) Vasily Polovnyov -
+
  • Basics @@ -10118,8 +10106,6 @@ return jQuery; Boxes
  • @@ -10142,14 +10128,12 @@ return jQuery; Forms
-

Colors/line

- +

Colors/line

+
@@ -11717,8 +10725,8 @@ hsla(120, 100%, 50%, 1);
-

Colors/other

- +

Colors/other

+
@@ -11745,27 +10753,27 @@ hsla(120, 100%, 50%, 1);
-

Colors/structure

- +

Colors/structure

+
-
-
-
-
-
-
+
+
+
+
+
+
-<div class="box Color-MainDark"></div>
-<div class="box Color-SecondaryDark"></div>
-<div class="box Color-Blue"></div>
-<div class="box Color-White"></div>
-<div class="box Color-SecondaryBackground"></div>
-<div class="box Color-ThirdBackground"></div>
+<div style="display: inline-block; width: 120px; height: 64px; margin: 0 24px 24px 0;" class="box Color-MainDark"></div>
+<div style="display: inline-block; width: 120px; height: 64px; margin: 0 24px 24px 0;" class="box Color-SecondaryDark"></div>
+<div style="display: inline-block; width: 120px; height: 64px; margin: 0 24px 24px 0;" class="box Color-Blue"></div>
+<div style="display: inline-block; width: 120px; height: 64px; margin: 0 24px 24px 0;" class="box Color-White"></div>
+<div style="display: inline-block; width: 120px; height: 64px; margin: 0 24px 24px 0;" class="box Color-SecondaryBackground"></div>
+<div style="display: inline-block; width: 120px; height: 64px; margin: 0 24px 24px 0;" class="box Color-ThirdBackground"></div>
 
@@ -11773,8 +10781,8 @@ hsla(120, 100%, 50%, 1);
-

Colors/typography

- +

Colors/typography

+
@@ -11801,8 +10809,8 @@ hsla(120, 100%, 50%, 1);
-

Forms/Checkbox

- +

Forms/Checkbox

+
@@ -11815,7 +10823,7 @@ hsla(120, 100%, 50%, 1);
- +
@@ -11831,118 +10839,18 @@ hsla(120, 100%, 50%, 1);
<span class="u-iBlock CDB-Checkbox-face"></span> </div> <div class="u-iBlock"> - <input class="CDB-Checkbox" type="checkbox" name="vehicle" value="Car" disabled> + <input class="CDB-Checkbox" type="checkbox" name="vehicle2" value="Car" disabled> <span class="u-iBlock CDB-Checkbox-face"></span> </div>
-
-
- -
-

Forms/Color bar

- -
- -
-
    -
  • -
  • -
  • -
  • -
  • -
  • -
- -
- -
    -
  • -
  • -
  • -
  • -
  • -
  • -
- -
- -
    -
  • -
  • -
  • -
  • -
  • -
  • -
- -
- -
    -
  • -
- -
- -
    -
  • -
-
- -
-
-<ul class="CDB-ColorBarContainer">
-  <li class="CDB-ColorBar CDB-ColorBar--spaceMedium" style="background-color: #9DE0AD;"></li>
-  <li class="CDB-ColorBar CDB-ColorBar--spaceMedium" style="background-color: #50E3C2;"></li>
-  <li class="CDB-ColorBar CDB-ColorBar--spaceMedium" style="background-color: #FFFFC0;"></li>
-  <li class="CDB-ColorBar CDB-ColorBar--spaceMedium" style="background-color: #7ED321;"></li>
-  <li class="CDB-ColorBar CDB-ColorBar--spaceMedium" style="background-color: #BD10E0;"></li>
-  <li class="CDB-ColorBar CDB-ColorBar--spaceMedium" style="background-color: #F15743;"></li>
-</ul>
-
-<br>
-
-<ul class="CDB-ColorBarContainer">
-  <li class="CDB-ColorBar CDB-ColorBar--spaceSmall" style="background-color: #9DE0AD;"></li>
-  <li class="CDB-ColorBar CDB-ColorBar--spaceSmall" style="background-color: #50E3C2;"></li>
-  <li class="CDB-ColorBar CDB-ColorBar--spaceSmall" style="background-color: #FFFFC0;"></li>
-  <li class="CDB-ColorBar CDB-ColorBar--spaceSmall" style="background-color: #7ED321;"></li>
-  <li class="CDB-ColorBar CDB-ColorBar--spaceSmall" style="background-color: #BD10E0;"></li>
-  <li class="CDB-ColorBar CDB-ColorBar--spaceSmall" style="background-color: #F15743;"></li>
-</ul>
-
-<br>
-
-<ul class="CDB-ColorBarContainer">
-  <li class="CDB-ColorBar CDB-ColorBar--spaceless" style="background-color: #9DE0AD;"></li>
-  <li class="CDB-ColorBar CDB-ColorBar--spaceless" style="background-color: #50E3C2;"></li>
-  <li class="CDB-ColorBar CDB-ColorBar--spaceless" style="background-color: #FFFFC0;"></li>
-  <li class="CDB-ColorBar CDB-ColorBar--spaceless" style="background-color: #7ED321;"></li>
-  <li class="CDB-ColorBar CDB-ColorBar--spaceless" style="background-color: #BD10E0;"></li>
-  <li class="CDB-ColorBar CDB-ColorBar--spaceless" style="background-color: #F15743;"></li>
-</ul>
-
-<br>
-
-<ul class="CDB-ColorBarContainer">
-  <li class="CDB-ColorBar" style="background-color: #9DE0AD;"></li>
-</ul>
-
-<br>
-
-<ul class="CDB-ColorBarContainer">
-  <li class="CDB-ColorBar CDB-ColorBar-gradient" style="background: linear-gradient(90deg, #FFFECA, #9FDAB3, #36B6C5, #207EBA, #203196);"></li>
-</ul>
-
-
-
-

Forms/Dropdowns

- +

Forms/Dropdowns

+
@@ -12155,8 +11063,8 @@ hsla(120, 100%, 50%, 1);
-

Forms/Inputs

- +

Forms/Inputs

+
@@ -12177,8 +11085,8 @@ hsla(120, 100%, 50%, 1);
-

Forms/Labels

- +

Forms/Labels

+
@@ -12343,8 +11251,8 @@ hsla(120, 100%, 50%, 1);
-

Forms/Option input

- +

Forms/Option input

+
@@ -12384,6 +11292,25 @@ hsla(120, 100%, 50%, 1);

+
+
    +
  • + +
  • +
  • + +
  • + +
  • + +
  • +
+
+ +
+
-

Forms/Radio

- +

Forms/Radio

+
@@ -12541,8 +11487,8 @@ hsla(120, 100%, 50%, 1);
-

Forms/Selects

- +

Forms/Selects

+
@@ -12579,6 +11525,10 @@ hsla(120, 100%, 50%, 1);

DejaVu Sans

+
null
+
+
46,594
+
-
- -
-
-<input type="range" min="100" max="500" step="50" value="300" class="CDB-Range">
-
-
-
-

Forms/TabsForms

- +

Forms/TabsForms

+
@@ -12799,8 +11735,8 @@ hsla(120, 100%, 50%, 1);
-

Forms/Textareas

- +

Forms/Textareas

+
@@ -12821,26 +11757,52 @@ hsla(120, 100%, 50%, 1);
-

Forms/Toggle

- +

Forms/Toggle

+
-
- - - - +
+
+ + + + +
+
+ +
+ +
+
+ + + + +
-<div class="CDB-Text CDB-Size-small is-semibold u-rSpace--xl">
-  <label class="u-iBlock">TOOLS</label>
-  <input class="CDB-Toggle u-iBlock" type="checkbox" name="analysis">
-  <span class="u-iBlock CDB-ToggleFace"></span>
-  <label class="u-iBlock">SQL</label>
+<div class="Toggle">
+  <div class="CDB-Text CDB-Size-small is-semibold u-rSpace--xl">
+    <label class="u-iBlock">TOOLS</label>
+    <input class="CDB-Toggle u-iBlock" type="checkbox" name="analysis">
+    <span class="u-iBlock CDB-ToggleFace"></span>
+    <label class="u-iBlock">SQL</label>
+  </div>
+</div>
+
+<br>
+
+<div class="Toggle">
+  <div class="CDB-Text CDB-Size-small is-semibold is-disabled u-rSpace--xl">
+    <label class="u-iBlock">TOOLS</label>
+    <input class="CDB-Toggle u-iBlock" type="checkbox" name="analysis" disabled>
+    <span class="u-iBlock CDB-ToggleFace"></span>
+    <label class="u-iBlock">SQL</label>
+  </div>
 </div>
 
@@ -12849,8 +11811,8 @@ hsla(120, 100%, 50%, 1);
-

Headers

- +

Headers

+
@@ -13181,8 +12143,8 @@ hsla(120, 100%, 50%, 1);
-

Info Tooltip

- +

Info Tooltip

+
@@ -13293,8 +12255,8 @@ hsla(120, 100%, 50%, 1);
-

Lists/Lists Decorations

- +

Lists/Lists Decorations

+
@@ -13311,85 +12273,129 @@ hsla(120, 100%, 50%, 1);
-

Loader/circle

- +

Loader/circle

+
-
-
- - -
+
+ + + +
+ +
+ + + +
+
+ + +
-
-
- - -
+
+ + + +
+
+ + +
-
-
- - -
+
+ + + +
+
+ + +
-
-
- - -
+
+ + + +
+
+ + +
-<div style="padding: 20px;">
-  <div class="CDB-LoaderIcon">
-    <div class="CDB-LoaderIcon-item">
-      <span class="CDB-LoaderIcon-itemClose"></span>
-      <span class="CDB-LoaderIcon-itemCircle"></span>
-    </div>
-  </div>
-</div>
+<div style="padding: 20px;">
+  <div class="CDB-LoaderIcon is-blue">
+    <svg class="CDB-LoaderIcon-spinner" viewbox="0 0 50 50">
+      <circle class="CDB-LoaderIcon-path" cx="25" cy="25" r="20" fill="none"/>
+    </svg>
+  </div>
 
-<div style="padding: 20px; background: #F9F9F9;">
-  <div class="CDB-LoaderIcon is-grey">
-    <div class="CDB-LoaderIcon-item">
-      <span class="CDB-LoaderIcon-itemClose"></span>
-      <span class="CDB-LoaderIcon-itemCircle"></span>
-    </div>
-  </div>
-</div>
+  <div class="CDB-LoaderIcon is-dark">
+    <svg class="CDB-LoaderIcon-spinner" viewbox="0 0 50 50">
+      <circle class="CDB-LoaderIcon-path" cx="25" cy="25" r="20" fill="none"/>
+    </svg>
+  </div>
+  <div class="CDB-LoaderIcon CDB-LoaderIcon--big is-dark">
+    <svg class="CDB-LoaderIcon-spinner" viewbox="0 0 50 50">
+      <circle class="CDB-LoaderIcon-path" cx="25" cy="25" r="20" fill="none"/>
+    </svg>
+  </div>
+</div>
 
-<div style="padding: 20px; background: #2E3C43;">
-  <div class="CDB-LoaderIcon is-dark">
-    <div class="CDB-LoaderIcon-item">
-      <span class="CDB-LoaderIcon-itemClose"></span>
-      <span class="CDB-LoaderIcon-itemCircle"></span>
-    </div>
-  </div>
-</div>
+<div style="padding: 20px; background: #F9F9F9;">
+  <div class="CDB-LoaderIcon is-dark">
+    <svg class="CDB-LoaderIcon-spinner" viewbox="0 0 50 50">
+      <circle class="CDB-LoaderIcon-path" cx="25" cy="25" r="20" fill="none"/>
+    </svg>
+  </div>
+  <div class="CDB-LoaderIcon CDB-LoaderIcon--big is-dark">
+    <svg class="CDB-LoaderIcon-spinner" viewbox="0 0 50 50">
+      <circle class="CDB-LoaderIcon-path" cx="25" cy="25" r="20" fill="none"/>
+    </svg>
+  </div>
+</div>
 
-<div style="padding: 20px; background: #E27D61;">
-  <div class="CDB-LoaderIcon is-bg">
-    <div class="CDB-LoaderIcon-item">
-      <span class="CDB-LoaderIcon-itemClose" style="background: #E27D61"></span>
-      <span class="CDB-LoaderIcon-itemCircle" style="background: #E27D61"></span>
-    </div>
-  </div>
-</div>
+<div style="padding: 20px; background: #2E3C43;">
+  <div class="CDB-LoaderIcon">
+    <svg class="CDB-LoaderIcon-spinner" viewbox="0 0 50 50">
+      <circle class="CDB-LoaderIcon-path" cx="25" cy="25" r="20" fill="none"/>
+    </svg>
+  </div>
+  <div class="CDB-LoaderIcon CDB-LoaderIcon--big">
+    <svg class="CDB-LoaderIcon-spinner" viewbox="0 0 50 50">
+      <circle class="CDB-LoaderIcon-path" cx="25" cy="25" r="20" fill="none"/>
+    </svg>
+  </div>
+</div>
+
+<div style="padding: 20px; background: #E27D61;">
+  <div class="CDB-LoaderIcon">
+    <svg class="CDB-LoaderIcon-spinner" viewbox="0 0 50 50">
+      <circle class="CDB-LoaderIcon-path" cx="25" cy="25" r="20" fill="none"/>
+    </svg>
+  </div>
+  <div class="CDB-LoaderIcon CDB-LoaderIcon--big">
+    <svg class="CDB-LoaderIcon-spinner" viewbox="0 0 50 50">
+      <circle class="CDB-LoaderIcon-path" cx="25" cy="25" r="20" fill="none"/>
+    </svg>
+  </div>
+</div>
 
@@ -13397,8 +12403,8 @@ hsla(120, 100%, 50%, 1);
-

Loader/principal

-

This is the generic loader for widgets, maps, components, ...

+

Loader/principal

+

This is the generic loader for widgets, maps, components, ...

@@ -13415,8 +12421,8 @@ hsla(120, 100%, 50%, 1);
@@ -13596,6 +12634,38 @@ hsla(120, 100%, 50%, 1);
</li> </ul> </nav> + + +<br><br> +<br><br> + +<div style="background: #2E3C43; height: 100px; padding: 20px;"> + <nav class="CDB-NavMenu is-dark"> + <ul class="CDB-NavMenu-inner CDB-Text is-semibold CDB-Size-medium"> + <li class="CDB-NavMenu-item"> + <button class="CDB-NavMenu-link">DATA</button> + </li> + <li class="CDB-NavMenu-item"> + <button class="CDB-NavMenu-link">STYLE</button> + </li> + <li class="CDB-NavMenu-item is-selected"> + <button class="CDB-NavMenu-link">POP-UP</button> + </li> + <li class="CDB-NavMenu-item"> + <button class="CDB-NavMenu-link">LEGEND</button> + </li> + </ul> + + <ul class="CDB-NavSubmenu CDB-NavSubmenu--outside CDB-Text CDB-Size-small is-semibold js-menu"> + <li class="CDB-NavSubmenu-item is-selected"> + <button class="CDB-NavSubmenu-link u-upperCase">Click</button> + </li> + <li class="CDB-NavSubmenu-item"> + <button class="CDB-NavSubmenu-link u-upperCase">Hover</button> + </li> + </ul> + </nav> +</div>
@@ -13603,8 +12673,8 @@ hsla(120, 100%, 50%, 1);
-

Shapes/Add

-

Description

+

Shapes/Add

+

Description

@@ -13691,8 +12761,8 @@ hsla(120, 100%, 50%, 1);
-

Shapes/Arrow

-

Description

+

Shapes/Arrow

+

Description

@@ -13725,8 +12795,8 @@ hsla(120, 100%, 50%, 1);
-

Shapes/Check circle

-

Description

+

Shapes/Check circle

+

Description

@@ -13837,8 +12907,8 @@ hsla(120, 100%, 50%, 1);
-

Shapes/Close

-

Description

+

Shapes/Close

+

Description

@@ -13925,8 +12995,8 @@ hsla(120, 100%, 50%, 1);
-

Shapes/Dash

-

Description

+

Shapes/Dash

+

Description

@@ -14013,8 +13083,8 @@ hsla(120, 100%, 50%, 1);
-

Shapes/Dataset

-

Description

+

Shapes/Dataset

+

Description

@@ -14171,8 +13241,8 @@ hsla(120, 100%, 50%, 1);
-

Shapes/Dots

-

You may resize and change the colors of the icons with the glyph--classes. Available sizes and colors listed:

+

Shapes/Dots

+

You may resize and change the colors of the icons with the glyph--classes. Available sizes and colors listed:

@@ -14191,8 +13261,8 @@ hsla(120, 100%, 50%, 1);
-

Shapes/Error circle

-

Description

+

Shapes/Error circle

+

Description

@@ -14303,8 +13373,8 @@ hsla(120, 100%, 50%, 1);
-

Shapes/Hamburguer

-

Description

+

Shapes/Hamburguer

+

Description

@@ -14365,8 +13435,8 @@ hsla(120, 100%, 50%, 1);
-

Shapes/Magnify

-

Description

+

Shapes/Magnify

+

Description

@@ -14455,8 +13525,8 @@ hsla(120, 100%, 50%, 1);
-

Shapes/Move

-

Description

+

Shapes/Move

+

Description

@@ -14627,8 +13697,8 @@ hsla(120, 100%, 50%, 1);
-

Shapes/Paragrapgh

-

Description

+

Shapes/Paragrapgh

+

Description

@@ -14761,8 +13831,8 @@ hsla(120, 100%, 50%, 1);
-

Shapes/Three Points

-

Description

+

Shapes/Three Points

+

Description

@@ -14967,8 +14037,8 @@ hsla(120, 100%, 50%, 1);
-

Shapes/Toogle Arrows

-

Description

+

Shapes/Toogle Arrows

+

Description

@@ -15135,8 +14205,8 @@ hsla(120, 100%, 50%, 1);
-

Shapes/Type

-

Description

+

Shapes/Type

+

Description

@@ -15211,8 +14281,8 @@ hsla(120, 100%, 50%, 1);
-

Tags/Data Type

- +

Tags/Data Type

+
@@ -15261,8 +14331,8 @@ hsla(120, 100%, 50%, 1);
-

Tags/Metadata

- +

Tags/Metadata

+
@@ -15329,8 +14399,8 @@ hsla(120, 100%, 50%, 1);
-

Tags/Privacy

- +

Tags/Privacy

+
@@ -15375,8 +14445,8 @@ hsla(120, 100%, 50%, 1);
-

Typography

- +

Typography

+
@@ -15390,6 +14460,7 @@ hsla(120, 100%, 50%, 1);

Open Sans 12/16 Regular

Open Sans 10/14 Semibold

Open Sans 10/14 Regular

+?
@@ -15404,6 +14475,7 @@ hsla(120, 100%, 50%, 1);
<p class="CDB-Text CDB-Size-medium u-hintTextColor">Open Sans 12/16 Regular</p> <p class="CDB-Text is-semibold CDB-Size-small">Open Sans 10/14 Semibold</p> <p class="CDB-Text CDB-Size-small">Open Sans 10/14 Regular</p> +<span class="CDB-Text CDB-Size-small is-underlined">?</span>
@@ -15411,8 +14483,8 @@ hsla(120, 100%, 50%, 1);
-

Typography/Icon font

-

All available icons in CartoDB.

+

Typography/Icon font

+

All available icons in CartoDB.

@@ -15518,12 +14590,54 @@ hsla(120, 100%, 50%, 1);
+
+ +

downloadCircle

+
+ + +
+ +

pencilMenu

+
+ + +
+ +

mobile

+
+ +

wizard

+
+ +

undo

+
+ + +
+ +

redo

+
+ + +
+ +

lArrowLight

+
+ + +
+ +

hide

+
+ +

info

@@ -16150,12 +15264,54 @@ hsla(120, 100%, 50%, 1);
</div> + <div class="box"> + <i class="CDB-IconFont CDB-IconFont-downloadCircle Size-large"></i> + <h4 class="Text Size-small">downloadCircle</h4> + </div> + + + <div class="box"> + <i class="CDB-IconFont CDB-IconFont-pencilMenu Size-large"></i> + <h4 class="Text Size-small">pencilMenu</h4> + </div> + + + <div class="box"> + <i class="CDB-IconFont CDB-IconFont-mobile Size-large"></i> + <h4 class="Text Size-small">mobile</h4> + </div> + + <div class="box"> <i class="CDB-IconFont CDB-IconFont-wizard Size-large"></i> <h4 class="Text Size-small">wizard</h4> </div> + <div class="box"> + <i class="CDB-IconFont CDB-IconFont-undo Size-large"></i> + <h4 class="Text Size-small">undo</h4> + </div> + + + <div class="box"> + <i class="CDB-IconFont CDB-IconFont-redo Size-large"></i> + <h4 class="Text Size-small">redo</h4> + </div> + + + <div class="box"> + <i class="CDB-IconFont CDB-IconFont-lArrowLight Size-large"></i> + <h4 class="Text Size-small">lArrowLight</h4> + </div> + + + <div class="box"> + <i class="CDB-IconFont CDB-IconFont-hide Size-large"></i> + <h4 class="Text Size-small">hide</h4> + </div> + + <div class="box"> <i class="CDB-IconFont CDB-IconFont-info Size-large"></i> <h4 class="Text Size-small">info</h4> diff --git a/styleguide/theme.css b/styleguide/theme.css deleted file mode 100644 index c84c1f2..0000000 --- a/styleguide/theme.css +++ /dev/null @@ -1,123 +0,0 @@ -#styleguide { - float: left; - width: 80%; -} - -#styleguide .section { - display: none; - margin-bottom: 2em; - -webkit-box-shadow: 2px 2px 5px 0px rgba(50, 50, 50, 0.43); - -moz-box-shadow: 2px 2px 5px 0px rgba(50, 50, 50, 0.43); - box-shadow: 2px 2px 5px 0px rgba(50, 50, 50, 0.43); -} - -#styleguide .result, -#styleguide .comment { - padding: 1em; - border: 1px solid #ddd; -} - -#styleguide .result { - position: relative; - border-top: none; -} - -#styleguide .comment { - background-color: rgb(245, 245, 245); -} - -#styleguide .section .comment code { - color: #3fbead; - font-family: Consolas, Monaco, 'Andale Mono', monospace; - font-size: 13px; -} - -#styleguide .markup { - border: 1px solid #ddd; - border-top: none; -} - -#styleguide code, -#styleguide pre { - border: none; - font-family: Consolas, Monaco, 'Andale Mono', monospace; - font-size: 13px; - line-height: 20px; - direction: ltr; - text-align: left; - white-space: pre-wrap; - word-spacing: normal; - margin: 0; - -moz-tab-size: 4; - -o-tab-size: 4; - tab-size: 4; - -webkit-hyphens: none; - -moz-hyphens: none; - -ms-hyphens: none; - hyphens: none; -} - - -/* menu */ -#styleguide-menu { - width: calc(20% - 1em - 2px); - float: left; - margin-right: 1em; - padding: 1em 0; - - border: 1px solid #ddd; - -webkit-box-shadow: 2px 2px 5px 0px rgba(50, 50, 50, 0.43); - -moz-box-shadow: 2px 2px 5px 0px rgba(50, 50, 50, 0.43); - box-shadow: 2px 2px 5px 0px rgba(50, 50, 50, 0.43); -} - -#styleguide-menu .submenu { - display: none; - background: rgba(0, 0, 0, 0.05); -} - -#styleguide-menu .submenu.on{ - display: block; -} - -#styleguide-menu ul { - list-style-type: none; - padding: 0; - margin: 0; -} - -#styleguide-menu li { - padding: 0; - margin: 0; -} - - - -#styleguide-menu a { - display: block; - width: calc(100% - 2em + 2px); - padding: 0.3em 1em; - text-decoration: none; - color: rgba(0, 0, 0, 0.87); - -} - -#styleguide-menu ul ul a { - padding: 0.3em 1em 0.3em 2em; - width: calc(100% - 3em + 2px); -} - -#styleguide-menu a:visited, -#styleguide-menu a:hover, -#styleguide-menu a:active { - display: block; - color: rgba(0, 0, 0, 0.87); -} - -#styleguide-menu a:hover { - background-color: rgba(250, 255, 70, 0.3); -} - -#styleguide-menu a.on { - background-color: rgba(0, 0, 0, 0.1); -} diff --git a/tasks/clean.js b/tasks/clean.js deleted file mode 100644 index 5f08315..0000000 --- a/tasks/clean.js +++ /dev/null @@ -1,13 +0,0 @@ -module.exports = { - dist: { - files: [{ - dot: true, - src: [ - '.sass-cache', - '.tmp', - 'dist', - '!dist/.git*' - ] - }] - } -}; diff --git a/tasks/concat.js b/tasks/concat.js deleted file mode 100644 index f97acac..0000000 --- a/tasks/concat.js +++ /dev/null @@ -1,10 +0,0 @@ -module.exports = { - dist: { - options: {}, - files: { - 'dist/css/cartostyles.css': [ - '.tmp/src/scss/**/*.css' - ] - } - } -}; diff --git a/tasks/connect.js b/tasks/connect.js deleted file mode 100644 index 1f986f1..0000000 --- a/tasks/connect.js +++ /dev/null @@ -1,13 +0,0 @@ -module.exports = { - server: { - options: { - port: 9003, - livereload: 35732, - open: true, - hostname: '0.0.0.0', // to be able to access the server not only from localhost - base: { - path: '.' - } - } - } -}; diff --git a/tasks/copy.js b/tasks/copy.js deleted file mode 100644 index fd09f93..0000000 --- a/tasks/copy.js +++ /dev/null @@ -1,7 +0,0 @@ -module.exports = { - main: { - files: [ - { expand: true, cwd: 'src/', src: 'fonts/**', dest: 'dist/' }, - ] - } -}; diff --git a/tasks/cssmin.js b/tasks/cssmin.js deleted file mode 100644 index d960ae6..0000000 --- a/tasks/cssmin.js +++ /dev/null @@ -1,12 +0,0 @@ -module.exports = { - dist: { - options: { - check: 'gzip' - }, - files: { - 'dist/css/cartostyles.css': [ - 'dist/css/cartostyles.css' - ] - } - } -}; diff --git a/tasks/gh-pages.js b/tasks/gh-pages.js deleted file mode 100644 index f3a9470..0000000 --- a/tasks/gh-pages.js +++ /dev/null @@ -1,6 +0,0 @@ -module.exports = { - options: { - base: 'dist' - }, - src: '**/*' -}; diff --git a/tasks/sass.js b/tasks/sass.js deleted file mode 100644 index a6c6152..0000000 --- a/tasks/sass.js +++ /dev/null @@ -1,16 +0,0 @@ -module.exports = { - dist: { - options: { - sourceMap: false, - outputStyle: 'compressed' - }, - files: [{ - expand: true, - src: [ - 'src/scss/**/*.scss' - ], - dest: '.tmp', - ext: '.css' - }] - } -}; diff --git a/tasks/shell.js b/tasks/shell.js deleted file mode 100644 index 299a370..0000000 --- a/tasks/shell.js +++ /dev/null @@ -1,8 +0,0 @@ -module.exports = { - style: { - command: 'styleguide' - }, - generateFont: { - command: 'gulp' - } -}; diff --git a/tasks/watch.js b/tasks/watch.js deleted file mode 100644 index d8ff37e..0000000 --- a/tasks/watch.js +++ /dev/null @@ -1,16 +0,0 @@ -module.exports = { - scss: { - files: [ - 'src/scss/**/*.scss' - ], - tasks: [ - 'sass', - 'concat', - 'cssmin' - ], - options: { - spawn: false, - livereload: 35732 - } - } -};