mirror of
https://github.com/kidoman/embd
synced 2025-07-04 20:37:46 +02:00
initial commit
This commit is contained in:
commit
b3bad4e383
114 changed files with 14939 additions and 0 deletions
20
bower_components/gumby/sass/var/_lists.scss
vendored
Normal file
20
bower_components/gumby/sass/var/_lists.scss
vendored
Normal file
|
@ -0,0 +1,20 @@
|
|||
// Lists
|
||||
|
||||
// UI Coloring List
|
||||
$ui-coloring:
|
||||
primary $primary-color $primary-hover-color,
|
||||
secondary $secondary-color $secondary-hover-color,
|
||||
default $default-color $default-hover-color,
|
||||
info $info-color $info-hover-color,
|
||||
danger $danger-color $danger-hover-color,
|
||||
warning $warning-color $warning-hover-color,
|
||||
success $success-color $success-hover-color;
|
||||
|
||||
// UI Styling List
|
||||
$styling: metro $metro-radius, pretty $button-radius;
|
||||
|
||||
|
||||
// Form field types
|
||||
$field-types: text, email, password, numeric, search, combined, prepend, append, double;
|
||||
|
||||
$field-sizes: xnarrow, narrow, normal, wide, xwide, xxwide;
|
169
bower_components/gumby/sass/var/_settings.scss
vendored
Executable file
169
bower_components/gumby/sass/var/_settings.scss
vendored
Executable file
|
@ -0,0 +1,169 @@
|
|||
// Welcome to Gumby 2.0 Settings.
|
||||
// Happy Tinkering!
|
||||
|
||||
|
||||
// Grid Settings
|
||||
$row-max-width: 940px !default; // 940px
|
||||
$gutter-in-px: 20px !default; // 20px
|
||||
$cols: 12 !default; // 12 Column Default Grid
|
||||
$hybrid: 16 !default; // 16 Column Default Hybrid Grid
|
||||
|
||||
// Responsiveness Settings
|
||||
$min-device-width: 320px; // iPhone Portrait
|
||||
$tablet-device-width: 768px; // iPad Portrait
|
||||
$document-width: $row-max-width; // Default Document
|
||||
$max-device-width: 2880px; // Max Document Size
|
||||
|
||||
// Spacing
|
||||
$nav-distance: 0; // Navigation distance from the top of the viewport
|
||||
|
||||
// Typography
|
||||
$font-family: "Open Sans";
|
||||
$font-style-italic: italic;
|
||||
$icons: entypo;
|
||||
$font-smoothing: antialiased;
|
||||
|
||||
// Font Weights
|
||||
$font-weight-bold: 700;
|
||||
$font-weight-semibold: 600;
|
||||
$font-weight-medium: 400;
|
||||
$font-weight-regular: 400;
|
||||
$font-weight-light: 300;
|
||||
$font-weight-thin: 300;
|
||||
|
||||
$header-font-weight: $font-weight-thin;
|
||||
$body-font-weight: $font-weight-regular;
|
||||
$type-font-weight: $font-weight-regular;
|
||||
$link-font-weight: $font-weight-regular;
|
||||
$button-font-weight: $font-weight-semibold;
|
||||
$tabs-font-weight: $font-weight-semibold;
|
||||
|
||||
// Vertical Rhythm Spacing
|
||||
$base-line-height: ms(1) !default;
|
||||
$rhythm-spacing: .168;
|
||||
$rhythm-height: .711;
|
||||
|
||||
// Modular Scale Settings
|
||||
// http://www.modularscale.com by Tim Brown
|
||||
// https://github.com/scottkellum/modular-scale
|
||||
$ratio: golden(); // Ratio for Modular Scale
|
||||
$base-font-size: 16px !default;
|
||||
$importantNum: 78px !default;
|
||||
$base-size: $base-font-size $importantNum;
|
||||
// Gumby Default Scale Values: 16, 18, 26, 30, 42, 48, 68, 78, 110, 126;
|
||||
|
||||
// Sizing
|
||||
$xsmall: ms(-2);
|
||||
$small: ms(-1);
|
||||
$norm: ms(0); // $base-font-size (16px == default)
|
||||
$med: ms(1);
|
||||
$large: ms(2);
|
||||
$larger: ms(3);
|
||||
$xlarge: ms(4);
|
||||
$xxlarge: ms(5);
|
||||
$xxxlarge: ms(6);
|
||||
$reallybig: ms(8);
|
||||
$tremendous: ms(9);
|
||||
$absurd: ms(10);
|
||||
|
||||
// Typography Colors
|
||||
$header-font-color: #444444 !default;
|
||||
$header-link-color: #d04526 !default;
|
||||
$header-link-hover-color: #c03d20 !default;
|
||||
$body-font-color: #555555 !default;
|
||||
$body-link-color: #d04526 !default;
|
||||
$body-link-hover-color: #c03d20 !default;
|
||||
|
||||
// User Interface Colors
|
||||
$global-bg-color: #fff;
|
||||
$navbar-color: #4a4d50;
|
||||
$navbar-link-color: #fff;
|
||||
|
||||
$primary-color: #3085d6;
|
||||
$secondary-color: #42a35a;
|
||||
$default-color: #f2f2f2;
|
||||
$info-color: #4a4d50;
|
||||
$danger-color: #ca3838;
|
||||
$warning-color: #f6b83f;
|
||||
$success-color: #58c026;
|
||||
|
||||
$primary-hover-color: #58b2fa;
|
||||
$secondary-hover-color: #6dbb80;
|
||||
$default-hover-color: #ffffff;
|
||||
$info-hover-color: #868d92;
|
||||
$danger-hover-color: #f14f4f;
|
||||
$warning-hover-color: #fdd27f;
|
||||
$success-hover-color: #66d92f;
|
||||
|
||||
$horizontal-rule-color: #ccc !default;
|
||||
|
||||
$black: #000;
|
||||
$white: #fff;
|
||||
|
||||
// Borders
|
||||
$button-radius: 4px !default;
|
||||
$metro-radius: 0 !default;
|
||||
$bigger-radius: 8px;
|
||||
|
||||
// Buttons
|
||||
// Font Sizing
|
||||
$xlarge-button-font-size: $larger;
|
||||
$large-button-font-size: $large;
|
||||
$medium-button-font-size: $norm;
|
||||
$small-button-font-size: $small;
|
||||
// Padding
|
||||
$default-button-padding: $med;
|
||||
// Height
|
||||
$default-button-height: 36px;
|
||||
|
||||
// Form Elements
|
||||
$form-text-input-stroke: #ccc;
|
||||
$form-text-input-background: $white;
|
||||
$form-text-input-placeholder-color: $default-color;
|
||||
$form-text-input-color: #555;
|
||||
|
||||
$form-select-stroke: #ccc;
|
||||
$form-select-background: $white;
|
||||
$form-select-color: #555;
|
||||
|
||||
// Tabs
|
||||
$tab-height: 42px;
|
||||
|
||||
// Navigation
|
||||
$navcontain-height: 80px; // makes space at the top of a document for when using a fixed nav
|
||||
|
||||
// Drawers & Modals
|
||||
$modal-overlay-color: rgba(0, 0, 0, 0.8);
|
||||
$modal-window-color: $white;
|
||||
$drawer-background-color: #3e4144;
|
||||
$drawer-inner-shadow-x-offset: 0;
|
||||
$drawer-inner-shadow-y-offset: 2px;
|
||||
$drawer-inner-shadow-blur: 5px;
|
||||
$drawer-inner-shadow-color: #313436;
|
||||
|
||||
// Tables
|
||||
$table-bgcolor: #fff;
|
||||
$table-thead-bgcolor: $primary-color;
|
||||
$table-row-first-cell-font-weight: bold;
|
||||
$table-border-size: 1px;
|
||||
$table-border-style: solid;
|
||||
$table-border-color: #e5e5e5;
|
||||
$table-cell-border-size: 1px;
|
||||
$table-cell-border-color: #e5e5e5;
|
||||
$table-cell-border-style: solid;
|
||||
// .rounded
|
||||
$table-border-radius: 4px;
|
||||
// .striped
|
||||
$table-stripe-bgcolor: #e5e5e5;
|
||||
|
||||
// Tooltips
|
||||
$tt-min-width: 130px;
|
||||
$tt-bgcolor: $primary-color;
|
||||
$tt-position: top; // position: top / bottom / left / right
|
||||
$tt-align: left; // text and caret alignment: left / right
|
||||
$tt-pretty: yes; // yes = pretty / no = flat
|
||||
|
||||
// Floats
|
||||
$default-float: left;
|
||||
$switch-float: right;
|
||||
|
286
bower_components/gumby/sass/var/icons/_entypo-icon-list.scss
vendored
Normal file
286
bower_components/gumby/sass/var/icons/_entypo-icon-list.scss
vendored
Normal file
|
@ -0,0 +1,286 @@
|
|||
$entypo-icons:
|
||||
icon-note $entypo-icon-note,
|
||||
icon-note-beamed $entypo-icon-note-beamed,
|
||||
icon-music $entypo-icon-music,
|
||||
icon-search $entypo-icon-search,
|
||||
icon-flashlight $entypo-icon-flashlight,
|
||||
icon-mail $entypo-icon-mail,
|
||||
icon-heart $entypo-icon-heart,
|
||||
icon-heart-empty $entypo-icon-heart-empty,
|
||||
icon-star $entypo-icon-star,
|
||||
icon-star-empty $entypo-icon-star-empty,
|
||||
icon-user $entypo-icon-user,
|
||||
icon-users $entypo-icon-users,
|
||||
icon-user-add $entypo-icon-user-add,
|
||||
icon-video $entypo-icon-video,
|
||||
icon-picture $entypo-icon-picture,
|
||||
icon-camera $entypo-icon-camera,
|
||||
icon-layout $entypo-icon-layout,
|
||||
icon-menu $entypo-icon-menu,
|
||||
icon-check $entypo-icon-check,
|
||||
icon-cancel $entypo-icon-cancel,
|
||||
icon-cancel-circled $entypo-icon-cancel-circled,
|
||||
icon-cancel-squared $entypo-icon-cancel-squared,
|
||||
icon-plus $entypo-icon-plus,
|
||||
icon-plus-circled $entypo-icon-plus-circled,
|
||||
icon-plus-squared $entypo-icon-plus-squared,
|
||||
icon-minus $entypo-icon-minus,
|
||||
icon-minus-circled $entypo-icon-minus-circled,
|
||||
icon-minus-squared $entypo-icon-minus-squared,
|
||||
icon-help $entypo-icon-help,
|
||||
icon-help-circled $entypo-icon-help-circled,
|
||||
icon-info $entypo-icon-info,
|
||||
icon-info-circled $entypo-icon-info-circled,
|
||||
icon-back $entypo-icon-back,
|
||||
icon-home $entypo-icon-home,
|
||||
icon-link $entypo-icon-link,
|
||||
icon-attach $entypo-icon-attach,
|
||||
icon-lock $entypo-icon-lock,
|
||||
icon-lock-open $entypo-icon-lock-open,
|
||||
icon-eye $entypo-icon-eye,
|
||||
icon-tag $entypo-icon-tag,
|
||||
icon-bookmark $entypo-icon-bookmark,
|
||||
icon-bookmarks $entypo-icon-bookmarks,
|
||||
icon-flag $entypo-icon-flag,
|
||||
icon-thumbs-up $entypo-icon-thumbs-up,
|
||||
icon-thumbs-down $entypo-icon-thumbs-down,
|
||||
icon-download $entypo-icon-download,
|
||||
icon-upload $entypo-icon-upload,
|
||||
icon-upload-cloud $entypo-icon-upload-cloud,
|
||||
icon-reply $entypo-icon-reply,
|
||||
icon-reply-all $entypo-icon-reply-all,
|
||||
icon-forward $entypo-icon-forward,
|
||||
icon-quote $entypo-icon-quote,
|
||||
icon-code $entypo-icon-code,
|
||||
icon-export $entypo-icon-export,
|
||||
icon-pencil $entypo-icon-pencil,
|
||||
icon-feather $entypo-icon-feather,
|
||||
icon-print $entypo-icon-print,
|
||||
icon-retweet $entypo-icon-retweet,
|
||||
icon-keyboard $entypo-icon-keyboard,
|
||||
icon-comment $entypo-icon-comment,
|
||||
icon-chat $entypo-icon-chat,
|
||||
icon-bell $entypo-icon-bell,
|
||||
icon-attention $entypo-icon-attention,
|
||||
icon-alert $entypo-icon-alert,
|
||||
icon-vcard $entypo-icon-vcard,
|
||||
icon-address $entypo-icon-address,
|
||||
icon-location $entypo-icon-location,
|
||||
icon-map $entypo-icon-map,
|
||||
icon-direction $entypo-icon-direction,
|
||||
icon-compass $entypo-icon-compass,
|
||||
icon-cup $entypo-icon-cup,
|
||||
icon-trash $entypo-icon-trash,
|
||||
icon-doc $entypo-icon-doc,
|
||||
icon-docs $entypo-icon-docs,
|
||||
icon-doc-landscape $entypo-icon-doc-landscape,
|
||||
icon-doc-text $entypo-icon-doc-text,
|
||||
icon-doc-text-inv $entypo-icon-doc-text-inv,
|
||||
icon-newspaper $entypo-icon-newspaper,
|
||||
icon-book-open $entypo-icon-book-open,
|
||||
icon-book $entypo-icon-book,
|
||||
icon-folder $entypo-icon-folder,
|
||||
icon-archive $entypo-icon-archive,
|
||||
icon-box $entypo-icon-box,
|
||||
icon-rss $entypo-icon-rss,
|
||||
icon-phone $entypo-icon-phone,
|
||||
icon-cog $entypo-icon-cog,
|
||||
icon-tools $entypo-icon-tools,
|
||||
icon-share $entypo-icon-share,
|
||||
icon-shareable $entypo-icon-shareable,
|
||||
icon-basket $entypo-icon-basket,
|
||||
icon-bag $entypo-icon-bag,
|
||||
icon-calendar $entypo-icon-calendar,
|
||||
icon-login $entypo-icon-login,
|
||||
icon-logout $entypo-icon-logout,
|
||||
icon-mic $entypo-icon-mic,
|
||||
icon-mute $entypo-icon-mute,
|
||||
icon-sound $entypo-icon-sound,
|
||||
icon-volume $entypo-icon-volume,
|
||||
icon-clock $entypo-icon-clock,
|
||||
icon-hourglass $entypo-icon-hourglass,
|
||||
icon-lamp $entypo-icon-lamp,
|
||||
icon-light-down $entypo-icon-light-down,
|
||||
icon-light-up $entypo-icon-light-up,
|
||||
icon-adjust $entypo-icon-adjust,
|
||||
icon-block $entypo-icon-block,
|
||||
icon-resize-full $entypo-icon-resize-full,
|
||||
icon-resize-small $entypo-icon-resize-small,
|
||||
icon-popup $entypo-icon-popup,
|
||||
icon-publish $entypo-icon-publish,
|
||||
icon-window $entypo-icon-window,
|
||||
icon-arrow-combo $entypo-icon-arrow-combo,
|
||||
icon-down-circled $entypo-icon-down-circled,
|
||||
icon-left-circled $entypo-icon-left-circled,
|
||||
icon-right-circled $entypo-icon-right-circled,
|
||||
icon-up-circled $entypo-icon-up-circled,
|
||||
icon-down-open $entypo-icon-down-open,
|
||||
icon-left-open $entypo-icon-left-open,
|
||||
icon-right-open $entypo-icon-right-open,
|
||||
icon-up-open $entypo-icon-up-open,
|
||||
icon-down-open-mini $entypo-icon-down-open-mini,
|
||||
icon-left-open-mini $entypo-icon-left-open-mini,
|
||||
icon-right-open-mini $entypo-icon-right-open-mini,
|
||||
icon-up-open-mini $entypo-icon-up-open-mini,
|
||||
icon-down-open-big $entypo-icon-down-open-big,
|
||||
icon-left-open-big $entypo-icon-left-open-big,
|
||||
icon-right-open-big $entypo-icon-right-open-big,
|
||||
icon-up-open-big $entypo-icon-up-open-big,
|
||||
icon-down $entypo-icon-down,
|
||||
icon-arrow-left $entypo-icon-left,
|
||||
icon-arrow-right $entypo-icon-right,
|
||||
icon-up $entypo-icon-up,
|
||||
icon-down-dir $entypo-icon-down-dir,
|
||||
icon-left-dir $entypo-icon-left-dir,
|
||||
icon-right-dir $entypo-icon-right-dir,
|
||||
icon-up-dir $entypo-icon-up-dir,
|
||||
icon-down-bold $entypo-icon-down-bold,
|
||||
icon-left-bold $entypo-icon-left-bold,
|
||||
icon-right-bold $entypo-icon-right-bold,
|
||||
icon-up-bold $entypo-icon-up-bold,
|
||||
icon-down-thin $entypo-icon-down-thin,
|
||||
icon-left-thin $entypo-icon-left-thin,
|
||||
icon-right-thin $entypo-icon-right-thin,
|
||||
icon-up-thin $entypo-icon-up-thin,
|
||||
icon-ccw $entypo-icon-ccw,
|
||||
icon-cw $entypo-icon-cw,
|
||||
icon-arrows-ccw $entypo-icon-arrows-ccw,
|
||||
icon-level-down $entypo-icon-level-down,
|
||||
icon-level-up $entypo-icon-level-up,
|
||||
icon-shuffle $entypo-icon-shuffle,
|
||||
icon-loop $entypo-icon-loop,
|
||||
icon-switch $entypo-icon-switch,
|
||||
icon-play $entypo-icon-play,
|
||||
icon-stop $entypo-icon-stop,
|
||||
icon-pause $entypo-icon-pause,
|
||||
icon-record $entypo-icon-record,
|
||||
icon-to-end $entypo-icon-to-end,
|
||||
icon-to-start $entypo-icon-to-start,
|
||||
icon-fast-forward $entypo-icon-fast-forward,
|
||||
icon-fast-backward $entypo-icon-fast-backward,
|
||||
icon-progress-0 $entypo-icon-progress-0,
|
||||
icon-progress-1 $entypo-icon-progress-1,
|
||||
icon-progress-2 $entypo-icon-progress-2,
|
||||
icon-progress-3 $entypo-icon-progress-3,
|
||||
icon-target $entypo-icon-target,
|
||||
icon-palette $entypo-icon-palette,
|
||||
icon-list $entypo-icon-list,
|
||||
icon-list-add $entypo-icon-list-add,
|
||||
icon-signal $entypo-icon-signal,
|
||||
icon-trophy $entypo-icon-trophy,
|
||||
icon-battery $entypo-icon-battery,
|
||||
icon-back-in-time $entypo-icon-back-in-time,
|
||||
icon-monitor $entypo-icon-monitor,
|
||||
icon-mobile $entypo-icon-mobile,
|
||||
icon-network $entypo-icon-network,
|
||||
icon-cd $entypo-icon-cd,
|
||||
icon-inbox $entypo-icon-inbox,
|
||||
icon-install $entypo-icon-install,
|
||||
icon-globe $entypo-icon-globe,
|
||||
icon-cloud $entypo-icon-cloud,
|
||||
icon-cloud-thunder $entypo-icon-cloud-thunder,
|
||||
icon-flash $entypo-icon-flash,
|
||||
icon-moon $entypo-icon-moon,
|
||||
icon-flight $entypo-icon-flight,
|
||||
icon-paper-plane $entypo-icon-paper-plane,
|
||||
icon-leaf $entypo-icon-leaf,
|
||||
icon-lifebuoy $entypo-icon-lifebuoy,
|
||||
icon-mouse $entypo-icon-mouse,
|
||||
icon-briefcase $entypo-icon-briefcase,
|
||||
icon-suitcase $entypo-icon-suitcase,
|
||||
icon-dot $entypo-icon-dot,
|
||||
icon-dot-2 $entypo-icon-dot-2,
|
||||
icon-dot-3 $entypo-icon-dot-3,
|
||||
icon-brush $entypo-icon-brush,
|
||||
icon-magnet $entypo-icon-magnet,
|
||||
icon-infinity $entypo-icon-infinity,
|
||||
icon-erase $entypo-icon-erase,
|
||||
icon-chart-pie $entypo-icon-chart-pie,
|
||||
icon-chart-line $entypo-icon-chart-line,
|
||||
icon-chart-bar $entypo-icon-chart-bar,
|
||||
icon-chart-area $entypo-icon-chart-area,
|
||||
icon-tape $entypo-icon-tape,
|
||||
icon-graduation-cap $entypo-icon-graduation-cap,
|
||||
icon-language $entypo-icon-language,
|
||||
icon-ticket $entypo-icon-ticket,
|
||||
icon-water $entypo-icon-water,
|
||||
icon-droplet $entypo-icon-droplet,
|
||||
icon-air $entypo-icon-air,
|
||||
icon-credit-card $entypo-icon-credit-card,
|
||||
icon-floppy $entypo-icon-floppy,
|
||||
icon-clipboard $entypo-icon-clipboard,
|
||||
icon-megaphone $entypo-icon-megaphone,
|
||||
icon-database $entypo-icon-database,
|
||||
icon-drive $entypo-icon-drive,
|
||||
icon-bucket $entypo-icon-bucket,
|
||||
icon-thermometer $entypo-icon-thermometer,
|
||||
icon-key $entypo-icon-key,
|
||||
icon-flow-cascade $entypo-icon-flow-cascade,
|
||||
icon-flow-branch $entypo-icon-flow-branch,
|
||||
icon-flow-tree $entypo-icon-flow-tree,
|
||||
icon-flow-line $entypo-icon-flow-line,
|
||||
icon-flow-parallel $entypo-icon-flow-parallel,
|
||||
icon-rocket $entypo-icon-rocket,
|
||||
icon-gauge $entypo-icon-gauge,
|
||||
icon-traffic-cone $entypo-icon-traffic-cone,
|
||||
icon-cc $entypo-icon-cc,
|
||||
icon-cc-by $entypo-icon-cc-by,
|
||||
icon-cc-nc $entypo-icon-cc-nc,
|
||||
icon-cc-nc-eu $entypo-icon-cc-nc-eu,
|
||||
icon-cc-nc-jp $entypo-icon-cc-nc-jp,
|
||||
icon-cc-sa $entypo-icon-cc-sa,
|
||||
icon-cc-nd $entypo-icon-cc-nd,
|
||||
icon-cc-pd $entypo-icon-cc-pd,
|
||||
icon-cc-zero $entypo-icon-cc-zero,
|
||||
icon-cc-share $entypo-icon-cc-share,
|
||||
icon-cc-remix $entypo-icon-cc-remix,
|
||||
icon-github $entypo-icon-github,
|
||||
icon-github-circled $entypo-icon-github-circled,
|
||||
icon-flickr $entypo-icon-flickr,
|
||||
icon-flickr-circled $entypo-icon-flickr-circled,
|
||||
icon-vimeo $entypo-icon-vimeo,
|
||||
icon-vimeo-circled $entypo-icon-vimeo-circled,
|
||||
icon-twitter $entypo-icon-twitter,
|
||||
icon-twitter-circled $entypo-icon-twitter-circled,
|
||||
icon-facebook $entypo-icon-facebook,
|
||||
icon-facebook-circled $entypo-icon-facebook-circled,
|
||||
icon-facebook-squared $entypo-icon-facebook-squared,
|
||||
icon-gplus $entypo-icon-gplus,
|
||||
icon-gplus-circled $entypo-icon-gplus-circled,
|
||||
icon-pinterest $entypo-icon-pinterest,
|
||||
icon-pinterest-circled $entypo-icon-pinterest-circled,
|
||||
icon-tumblr $entypo-icon-tumblr,
|
||||
icon-tumblr-circled $entypo-icon-tumblr-circled,
|
||||
icon-linkedin $entypo-icon-linkedin,
|
||||
icon-linkedin-circled $entypo-icon-linkedin-circled,
|
||||
icon-dribbble $entypo-icon-dribbble,
|
||||
icon-dribbble-circled $entypo-icon-dribbble-circled,
|
||||
icon-stumbleupon $entypo-icon-stumbleupon,
|
||||
icon-stumbleupon-circled $entypo-icon-stumbleupon-circled,
|
||||
icon-lastfm $entypo-icon-lastfm,
|
||||
icon-lastfm-circled $entypo-icon-lastfm-circled,
|
||||
icon-rdio $entypo-icon-rdio,
|
||||
icon-rdio-circled $entypo-icon-rdio-circled,
|
||||
icon-spotify $entypo-icon-spotify,
|
||||
icon-spotify-circled $entypo-icon-spotify-circled,
|
||||
icon-qq $entypo-icon-qq,
|
||||
icon-instagram $entypo-icon-instagram,
|
||||
icon-dropbox $entypo-icon-dropbox,
|
||||
icon-evernote $entypo-icon-evernote,
|
||||
icon-flattr $entypo-icon-flattr,
|
||||
icon-skype $entypo-icon-skype,
|
||||
icon-skype-circled $entypo-icon-skype-circled,
|
||||
icon-renren $entypo-icon-renren,
|
||||
icon-sina-weibo $entypo-icon-sina-weibo,
|
||||
icon-paypal $entypo-icon-paypal,
|
||||
icon-picasa $entypo-icon-picasa,
|
||||
icon-soundcloud $entypo-icon-soundcloud,
|
||||
icon-mixi $entypo-icon-mixi,
|
||||
icon-behance $entypo-icon-behance,
|
||||
icon-google-circles $entypo-icon-google-circles,
|
||||
icon-vkontakte $entypo-icon-vkontakte,
|
||||
icon-smashing $entypo-icon-smashing,
|
||||
icon-sweden $entypo-icon-sweden,
|
||||
icon-db-shape $entypo-icon-db-shape,
|
||||
icon-logo-db $entypo-icon-logo-db
|
||||
;
|
294
bower_components/gumby/sass/var/icons/_entypo.scss
vendored
Executable file
294
bower_components/gumby/sass/var/icons/_entypo.scss
vendored
Executable file
|
@ -0,0 +1,294 @@
|
|||
// Entypo Icon Charset
|
||||
|
||||
$entypo-icon-note: \266a; // \266a
|
||||
$entypo-icon-note-beamed: \266b; // \266b
|
||||
$entypo-icon-music: \1f3b5; // \1f3b5
|
||||
$entypo-icon-search: \1f50d; // \1f50d
|
||||
$entypo-icon-flashlight: \1f526; // \1f526
|
||||
$entypo-icon-mail: \2709; // \2709
|
||||
$entypo-icon-heart: \2665; // \2665
|
||||
$entypo-icon-heart-empty: \2661; // \2661
|
||||
$entypo-icon-star: \2605; // \2605
|
||||
$entypo-icon-star-empty: \2606; // \2606
|
||||
$entypo-icon-user: \1f464; // \1f464
|
||||
$entypo-icon-users: \1f465; // \1f465
|
||||
$entypo-icon-user-add: \e700; // \e700
|
||||
$entypo-icon-video: \1f3ac; // \1f3ac
|
||||
$entypo-icon-picture: \1f304; // \1f304
|
||||
$entypo-icon-camera: \1f4f7; // \1f4f7
|
||||
$entypo-icon-layout: \268f; // \268f
|
||||
$entypo-icon-menu: \2630; // \2630
|
||||
$entypo-icon-check: \2713; // \2713
|
||||
$entypo-icon-cancel: \2715; // \2715
|
||||
$entypo-icon-cancel-circled: \2716; // \2716
|
||||
$entypo-icon-cancel-squared: \274e; // \274e
|
||||
$entypo-icon-plus: \2b; // \2b
|
||||
$entypo-icon-plus-circled: \2795; // \2795
|
||||
$entypo-icon-plus-squared: \229e; // \229e
|
||||
$entypo-icon-minus: \2d; // \2d
|
||||
$entypo-icon-minus-circled: \2796; // \2796
|
||||
$entypo-icon-minus-squared: \229f; // \229f
|
||||
$entypo-icon-help: \2753; // \2753
|
||||
$entypo-icon-help-circled: \e704; // \e704
|
||||
$entypo-icon-info: \2139; // \2139
|
||||
$entypo-icon-info-circled: \e705; // \e705
|
||||
$entypo-icon-back: \1f519; // \1f519
|
||||
$entypo-icon-home: \2302; // \2302
|
||||
$entypo-icon-link: \1f517; // \1f517
|
||||
$entypo-icon-attach: \1f4ce; // \1f4ce
|
||||
$entypo-icon-lock: \1f512; // \1f512
|
||||
$entypo-icon-lock-open: \1f513; // \1f513
|
||||
$entypo-icon-eye: \e70a; // \e70a
|
||||
$entypo-icon-tag: \e70c; // \e70c
|
||||
$entypo-icon-bookmark: \1f516; // \1f516
|
||||
$entypo-icon-bookmarks: \1f4d1; // \1f4d1
|
||||
$entypo-icon-flag: \2691; // \2691
|
||||
$entypo-icon-thumbs-up: \1f44d; // \1f44d
|
||||
$entypo-icon-thumbs-down: \1f44e; // \1f44e
|
||||
$entypo-icon-download: \1f4e5; // \1f4e5
|
||||
$entypo-icon-upload: \1f4e4; // \1f4e4
|
||||
$entypo-icon-upload-cloud: \e711; // \e711
|
||||
$entypo-icon-reply: \e712; // \e712
|
||||
$entypo-icon-reply-all: \e713; // \e713
|
||||
$entypo-icon-forward: \27a6; // \27a6
|
||||
$entypo-icon-quote: \275e; // \275e
|
||||
$entypo-icon-code: \e714; // \e714
|
||||
$entypo-icon-export: \e715; // \e715
|
||||
$entypo-icon-pencil: \270e; // \270e
|
||||
$entypo-icon-feather: \2712; // \2712
|
||||
$entypo-icon-print: \e716; // \e716
|
||||
$entypo-icon-retweet: \e717; // \e717
|
||||
$entypo-icon-keyboard: \2328; // \2328
|
||||
$entypo-icon-comment: \e718; // \e718
|
||||
$entypo-icon-chat: \e720; // \e720
|
||||
$entypo-icon-bell: \1f514; // \1f514
|
||||
$entypo-icon-attention: \26a0; // \26a0
|
||||
$entypo-icon-alert: \1f4a5; // \1f4a5
|
||||
$entypo-icon-vcard: \e722; // \e722
|
||||
$entypo-icon-address: \e723; // \e723
|
||||
$entypo-icon-location: \e724; // \e724
|
||||
$entypo-icon-map: \e727; // \e727
|
||||
$entypo-icon-direction: \27a2; // \27a2
|
||||
$entypo-icon-compass: \e728; // \e728
|
||||
$entypo-icon-cup: \2615; // \2615
|
||||
$entypo-icon-trash: \e729; // \e729
|
||||
$entypo-icon-doc: \e730; // \e730
|
||||
$entypo-icon-docs: \e736; // \e736
|
||||
$entypo-icon-doc-landscape: \e737; // \e737
|
||||
$entypo-icon-doc-text: \1f4c4; // \1f4c4
|
||||
$entypo-icon-doc-text-inv: \e731; // \e731
|
||||
$entypo-icon-newspaper: \1f4f0; // \1f4f0
|
||||
$entypo-icon-book-open: \1f4d6; // \1f4d6
|
||||
$entypo-icon-book: \1f4d5; // \1f4d5
|
||||
$entypo-icon-folder: \1f4c1; // \1f4c1
|
||||
$entypo-icon-archive: \e738; // \e738
|
||||
$entypo-icon-box: \1f4e6; // \1f4e6
|
||||
$entypo-icon-rss: \e73a; // \e73a
|
||||
$entypo-icon-phone: \1f4de; // \1f4de
|
||||
$entypo-icon-cog: \2699; // \2699
|
||||
$entypo-icon-tools: \2692; // \2692
|
||||
$entypo-icon-share: \e73c; // \e73c
|
||||
$entypo-icon-shareable: \e73e; // \e73e
|
||||
$entypo-icon-basket: \e73d; // \e73d
|
||||
$entypo-icon-bag: \1f45c; // \1f45c
|
||||
$entypo-icon-calendar: \1f4c5; // \1f4c5
|
||||
$entypo-icon-login: \e740; // \e740
|
||||
$entypo-icon-logout: \e741; // \e741
|
||||
$entypo-icon-mic: \1f3a4; // \1f3a4
|
||||
$entypo-icon-mute: \1f507; // \1f507
|
||||
$entypo-icon-sound: \1f50a; // \1f50a
|
||||
$entypo-icon-volume: \e742; // \e742
|
||||
$entypo-icon-clock: \1f554; // \1f554
|
||||
$entypo-icon-hourglass: \23f3; // \23f3
|
||||
$entypo-icon-lamp: \1f4a1; // \1f4a1
|
||||
$entypo-icon-light-down: \1f505; // \1f505
|
||||
$entypo-icon-light-up: \1f506; // \1f506
|
||||
$entypo-icon-adjust: \25d1; // \25d1
|
||||
$entypo-icon-block: \1f6ab; // \1f6ab
|
||||
$entypo-icon-resize-full: \e744; // \e744
|
||||
$entypo-icon-resize-small: \e746; // \e746
|
||||
$entypo-icon-popup: \e74c; // \e74c
|
||||
$entypo-icon-publish: \e74d; // \e74d
|
||||
$entypo-icon-window: \e74e; // \e74e
|
||||
$entypo-icon-arrow-combo: \e74f; // \e74f
|
||||
$entypo-icon-down-circled: \e758; // \e758
|
||||
$entypo-icon-left-circled: \e759; // \e759
|
||||
$entypo-icon-right-circled: \e75a; // \e75a
|
||||
$entypo-icon-up-circled: \e75b; // \e75b
|
||||
$entypo-icon-down-open: \e75c; // \e75c
|
||||
$entypo-icon-left-open: \e75d; // \e75d
|
||||
$entypo-icon-right-open: \e75e; // \e75e
|
||||
$entypo-icon-up-open: \e75f; // \e75f
|
||||
$entypo-icon-down-open-mini: \e760; // \e760
|
||||
$entypo-icon-left-open-mini: \e761; // \e761
|
||||
$entypo-icon-right-open-mini: \e762; // \e762
|
||||
$entypo-icon-up-open-mini: \e763; // \e763
|
||||
$entypo-icon-down-open-big: \e764; // \e764
|
||||
$entypo-icon-left-open-big: \e765; // \e765
|
||||
$entypo-icon-right-open-big: \e766; // \e766
|
||||
$entypo-icon-up-open-big: \e767; // \e767
|
||||
$entypo-icon-down: \2b07; // \2b07
|
||||
$entypo-icon-left: \2b05; // \2b05
|
||||
$entypo-icon-right: \27a1; // \27a1
|
||||
$entypo-icon-up: \2b06; // \2b06
|
||||
$entypo-icon-down-dir: \25be; // \25be
|
||||
$entypo-icon-left-dir: \25c2; // \25c2
|
||||
$entypo-icon-right-dir: \25b8; // \25b8
|
||||
$entypo-icon-up-dir: \25b4; // \25b4
|
||||
$entypo-icon-down-bold: \e4b0; // \e4b0
|
||||
$entypo-icon-left-bold: \e4ad; // \e4ad
|
||||
$entypo-icon-right-bold: \e4ae; // \e4ae
|
||||
$entypo-icon-up-bold: \e4af; // \e4af
|
||||
$entypo-icon-down-thin: \2193; // \2193
|
||||
$entypo-icon-left-thin: \2190; // \2190
|
||||
$entypo-icon-right-thin: \2192; // \2192
|
||||
$entypo-icon-up-thin: \2191; // \2191
|
||||
$entypo-icon-ccw: \27f2; // \27f2
|
||||
$entypo-icon-cw: \27f3; // \27f3
|
||||
$entypo-icon-arrows-ccw: \1f504; // \1f504
|
||||
$entypo-icon-level-down: \21b3; // \21b3
|
||||
$entypo-icon-level-up: \21b0; // \21b0
|
||||
$entypo-icon-shuffle: \1f500; // \1f500
|
||||
$entypo-icon-loop: \1f501; // \1f501
|
||||
$entypo-icon-switch: \21c6; // \21c6
|
||||
$entypo-icon-play: \25b6; // \25b6
|
||||
$entypo-icon-stop: \25a0; // \25a0
|
||||
$entypo-icon-pause: \2389; // \2389
|
||||
$entypo-icon-record: \26ab; // \26ab
|
||||
$entypo-icon-to-end: \23ed; // \23ed
|
||||
$entypo-icon-to-start: \23ee; // \23ee
|
||||
$entypo-icon-fast-forward: \23e9; // \23e9
|
||||
$entypo-icon-fast-backward: \23ea; // \23ea
|
||||
$entypo-icon-progress-0: \e768; // \e768
|
||||
$entypo-icon-progress-1: \e769; // \e769
|
||||
$entypo-icon-progress-2: \e76a; // \e76a
|
||||
$entypo-icon-progress-3: \e76b; // \e76b
|
||||
$entypo-icon-target: \1f3af; // \1f3af
|
||||
$entypo-icon-palette: \1f3a8; // \1f3a8
|
||||
$entypo-icon-list: \e005; // \e005
|
||||
$entypo-icon-list-add: \e003; // \e003
|
||||
$entypo-icon-signal: \1f4f6; // \1f4f6
|
||||
$entypo-icon-trophy: \1f3c6; // \1f3c6
|
||||
$entypo-icon-battery: \1f50b; // \1f50b
|
||||
$entypo-icon-back-in-time: \e771; // \e771
|
||||
$entypo-icon-monitor: \1f4bb; // \1f4bb
|
||||
$entypo-icon-mobile: \1f4f1; // \1f4f1
|
||||
$entypo-icon-network: \e776; // \e776
|
||||
$entypo-icon-cd: \1f4bf; // \1f4bf
|
||||
$entypo-icon-inbox: \e777; // \e777
|
||||
$entypo-icon-install: \e778; // \e778
|
||||
$entypo-icon-globe: \1f30e; // \1f30e
|
||||
$entypo-icon-cloud: \2601; // \2601
|
||||
$entypo-icon-cloud-thunder: \26c8; // \26c8
|
||||
$entypo-icon-flash: \26a1; // \26a1
|
||||
$entypo-icon-moon: \263d; // \263d
|
||||
$entypo-icon-flight: \2708; // \2708
|
||||
$entypo-icon-paper-plane: \e79b; // \e79b
|
||||
$entypo-icon-leaf: \1f342; // \1f342
|
||||
$entypo-icon-lifebuoy: \e788; // \e788
|
||||
$entypo-icon-mouse: \e789; // \e789
|
||||
$entypo-icon-briefcase: \1f4bc; // \1f4bc
|
||||
$entypo-icon-suitcase: \e78e; // \e78e
|
||||
$entypo-icon-dot: \e78b; // \e78b
|
||||
$entypo-icon-dot-2: \e78c; // \e78c
|
||||
$entypo-icon-dot-3: \e78d; // \e78d
|
||||
$entypo-icon-brush: \e79a; // \e79a
|
||||
$entypo-icon-magnet: \e7a1; // \e7a1
|
||||
$entypo-icon-infinity: \221e; // \221e
|
||||
$entypo-icon-erase: \232b; // \232b
|
||||
$entypo-icon-chart-pie: \e751; // \e751
|
||||
$entypo-icon-chart-line: \1f4c8; // \1f4c8
|
||||
$entypo-icon-chart-bar: \1f4ca; // \1f4ca
|
||||
$entypo-icon-chart-area: \1f53e; // \1f53e
|
||||
$entypo-icon-tape: \2707; // \2707
|
||||
$entypo-icon-graduation-cap: \1f393; // \1f393
|
||||
$entypo-icon-language: \e752; // \e752
|
||||
$entypo-icon-ticket: \1f3ab; // \1f3ab
|
||||
$entypo-icon-water: \1f4a6; // \1f4a6
|
||||
$entypo-icon-droplet: \1f4a7; // \1f4a7
|
||||
$entypo-icon-air: \e753; // \e753
|
||||
$entypo-icon-credit-card: \1f4b3; // \1f4b3
|
||||
$entypo-icon-floppy: \1f4be; // \1f4be
|
||||
$entypo-icon-clipboard: \1f4cb; // \1f4cb
|
||||
$entypo-icon-megaphone: \1f4e3; // \1f4e3
|
||||
$entypo-icon-database: \e754; // \e754
|
||||
$entypo-icon-drive: \e755; // \e755
|
||||
$entypo-icon-bucket: \e756; // \e756
|
||||
$entypo-icon-thermometer: \e757; // \e757
|
||||
$entypo-icon-key: \1f511; // \1f511
|
||||
$entypo-icon-flow-cascade: \e790; // \e790
|
||||
$entypo-icon-flow-branch: \e791; // \e791
|
||||
$entypo-icon-flow-tree: \e792; // \e792
|
||||
$entypo-icon-flow-line: \e793; // \e793
|
||||
$entypo-icon-flow-parallel: \e794; // \e794
|
||||
$entypo-icon-rocket: \1f680; // \1f680
|
||||
$entypo-icon-gauge: \e7a2; // \e7a2
|
||||
$entypo-icon-traffic-cone: \e7a3; // \e7a3
|
||||
$entypo-icon-cc: \e7a5; // \e7a5
|
||||
$entypo-icon-cc-by: \e7a6; // \e7a6
|
||||
$entypo-icon-cc-nc: \e7a7; // \e7a7
|
||||
$entypo-icon-cc-nc-eu: \e7a8; // \e7a8
|
||||
$entypo-icon-cc-nc-jp: \e7a9; // \e7a9
|
||||
$entypo-icon-cc-sa: \e7aa; // \e7aa
|
||||
$entypo-icon-cc-nd: \e7ab; // \e7ab
|
||||
$entypo-icon-cc-pd: \e7ac; // \e7ac
|
||||
$entypo-icon-cc-zero: \e7ad; // \e7ad
|
||||
$entypo-icon-cc-share: \e7ae; // \e7ae
|
||||
$entypo-icon-cc-remix: \e7af; // \e7af
|
||||
$entypo-icon-github: \f300; // \f300
|
||||
$entypo-icon-github-circled: \f301; // \f301
|
||||
$entypo-icon-flickr: \f303; // \f303
|
||||
$entypo-icon-flickr-circled: \f304; // \f304
|
||||
$entypo-icon-vimeo: \f306; // \f306
|
||||
$entypo-icon-vimeo-circled: \f307; // \f307
|
||||
$entypo-icon-twitter: \f309; // \f309
|
||||
$entypo-icon-twitter-circled: \f30a; // \f30a
|
||||
$entypo-icon-facebook: \f30c; // \f30c
|
||||
$entypo-icon-facebook-circled: \f30d; // \f30d
|
||||
$entypo-icon-facebook-squared: \f30e; // \f30e
|
||||
$entypo-icon-gplus: \f30f; // \f30f
|
||||
$entypo-icon-gplus-circled: \f310; // \f310
|
||||
$entypo-icon-pinterest: \f312; // \f312
|
||||
$entypo-icon-pinterest-circled: \f313; // \f313
|
||||
$entypo-icon-tumblr: \f315; // \f315
|
||||
$entypo-icon-tumblr-circled: \f316; // \f316
|
||||
$entypo-icon-linkedin: \f318; // \f318
|
||||
$entypo-icon-linkedin-circled: \f319; // \f319
|
||||
$entypo-icon-dribbble: \f31b; // \f31b
|
||||
$entypo-icon-dribbble-circled: \f31c; // \f31c
|
||||
$entypo-icon-stumbleupon: \f31e; // \f31e
|
||||
$entypo-icon-stumbleupon-circled: \f31f; // \f31f
|
||||
$entypo-icon-lastfm: \f321; // \f321
|
||||
$entypo-icon-lastfm-circled: \f322; // \f322
|
||||
$entypo-icon-rdio: \f324; // \f324
|
||||
$entypo-icon-rdio-circled: \f325; // \f325
|
||||
$entypo-icon-spotify: \f327; // \f327
|
||||
$entypo-icon-spotify-circled: \f328; // \f328
|
||||
$entypo-icon-qq: \f32a; // \f32a
|
||||
$entypo-icon-instagram: \f32d; // \f32d
|
||||
$entypo-icon-dropbox: \f330; // \f330
|
||||
$entypo-icon-evernote: \f333; // \f333
|
||||
$entypo-icon-flattr: \f336; // \f336
|
||||
$entypo-icon-skype: \f339; // \f339
|
||||
$entypo-icon-skype-circled: \f33a; // \f33a
|
||||
$entypo-icon-renren: \f33c; // \f33c
|
||||
$entypo-icon-sina-weibo: \f33f; // \f33f
|
||||
$entypo-icon-paypal: \f342; // \f342
|
||||
$entypo-icon-picasa: \f345; // \f345
|
||||
$entypo-icon-soundcloud: \f348; // \f348
|
||||
$entypo-icon-mixi: \f34b; // \f34b
|
||||
$entypo-icon-behance: \f34e; // \f34e
|
||||
$entypo-icon-google-circles: \f351; // \f351
|
||||
$entypo-icon-vkontakte: \f354; // \f354
|
||||
$entypo-icon-smashing: \f357; // \f357
|
||||
$entypo-icon-sweden: \f601; // \f601
|
||||
$entypo-icon-db-shape: \f600; // \f600
|
||||
$entypo-icon-logo-db: \f603; // \f603
|
||||
|
||||
|
||||
// Grab the list of icons
|
||||
@import "entypo-icon-list";
|
||||
|
||||
|
||||
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue