definicao de layout

This commit is contained in:
2026-02-06 14:37:54 +00:00
parent 872a5bb3ea
commit a4f80c85c2
2686 changed files with 640668 additions and 294 deletions

View File

@@ -0,0 +1,127 @@
[class^="icon-"],
[class*=" icon-"] {
@include icon-themify-icons();
}
[class^="icon-"]:before,
[class*=" icon-"]:before {
text-decoration: inherit;
display: inline-block;
speak: none;
}
/* makes the font 33% larger relative to the icon container */
.icon-large:before {
vertical-align: -10%;
font-size: calc(4em/3);
}
/* makes sure icons active on rollover in links */
a {
[class^="icon-"],
[class*=" icon-"] {
display: inline;
}
}
/* increased font size for icon-large */
[class^="icon-"],
[class*=" icon-"] {
&.icon-fixed-width {
display: inline-block;
width: calc(16em/14);
text-align: right;
padding-right: calc(4em/14);
&.icon-large {
width: calc(20em/14);
}
}
}
.icons-ul {
margin-left: $icons-li-width;
list-style-type: none;
> li { position: relative; }
.icon-li {
position: absolute;
left: -$icons-li-width;
width: $icons-li-width;
text-align: center;
line-height: inherit;
}
}
// allows usage of the hide class directly on font awesome icons
[class^="icon-"],
[class*=" icon-"] {
&.hide {
display: none;
}
}
.icon-muted { color: $iconMuted; }
.icon-light { color: $iconLight; }
.icon-dark { color: $iconDark; }
// Icon Borders
// -------------------------
.icon-border {
border: solid 1px $borderColor;
padding: .2em .25em .15em;
@include border-radius(3px);
}
// Icon Sizes
// -------------------------
.icon-2x {
font-size: 2em;
&.icon-border {
border-width: 2px;
@include border-radius(4px);
}
}
.icon-3x {
font-size: 3em;
&.icon-border {
border-width: 3px;
@include border-radius(5px);
}
}
.icon-4x {
font-size: 4em;
&.icon-border {
border-width: 4px;
@include border-radius(6px);
}
}
.icon-5x {
font-size: 5em;
&.icon-border {
border-width: 5px;
@include border-radius(7px);
}
}
// Floats & Margins
// -------------------------
// Quick floats
.pull-right { float: right; }
.pull-left { float: left; }
[class^="icon-"],
[class*=" icon-"] {
&.pull-left {
margin-right: .3em;
}
&.pull-right {
margin-left: .3em;
}
}

View File

@@ -0,0 +1,105 @@
/* EXTRAS
* -------------------------- */
/* Stacked and layered icon */
@include icon-stack();
/* Animated rotating icon */
.icon-spin {
display: inline-block;
-moz-animation: spin 2s infinite linear;
-o-animation: spin 2s infinite linear;
-webkit-animation: spin 2s infinite linear;
animation: spin 2s infinite linear;
}
/* Prevent stack and spinners from being taken inline when inside a link */
a .icon-stack,
a .icon-spin {
display: inline-block;
text-decoration: none;
}
@-moz-keyframes spin {
0% { -moz-transform: rotate(0deg); }
100% { -moz-transform: rotate(359deg); }
}
@-webkit-keyframes spin {
0% { -webkit-transform: rotate(0deg); }
100% { -webkit-transform: rotate(359deg); }
}
@-o-keyframes spin {
0% { -o-transform: rotate(0deg); }
100% { -o-transform: rotate(359deg); }
}
@-ms-keyframes spin {
0% { -ms-transform: rotate(0deg); }
100% { -ms-transform: rotate(359deg); }
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(359deg); }
}
@mixin spinicon(){
@include icon-FontAwesome();
display: inline-block;
-moz-animation: spin 2s infinite linear;
-o-animation: spin 2s infinite linear;
-webkit-animation: spin 2s infinite linear;
animation: spin 2s infinite linear;
content: $spinner;
}
/* Icon rotations and mirroring */
.icon-rotate-90:before {
-webkit-transform: rotate(90deg);
-moz-transform: rotate(90deg);
-ms-transform: rotate(90deg);
-o-transform: rotate(90deg);
transform: rotate(90deg);
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
}
.icon-rotate-180:before {
-webkit-transform: rotate(180deg);
-moz-transform: rotate(180deg);
-ms-transform: rotate(180deg);
-o-transform: rotate(180deg);
transform: rotate(180deg);
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
}
.icon-rotate-270:before {
-webkit-transform: rotate(270deg);
-moz-transform: rotate(270deg);
-ms-transform: rotate(270deg);
-o-transform: rotate(270deg);
transform: rotate(270deg);
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
}
.icon-flip-horizontal:before {
-webkit-transform: scale(-1, 1);
-moz-transform: scale(-1, 1);
-ms-transform: scale(-1, 1);
-o-transform: scale(-1, 1);
transform: scale(-1, 1);
}
.icon-flip-vertical:before {
-webkit-transform: scale(1, -1);
-moz-transform: scale(1, -1);
-ms-transform: scale(1, -1);
-o-transform: scale(1, -1);
transform: scale(1, -1);
}
/* ensure rotation occurs inside anchor tags */
a {
.icon-rotate-90, .icon-rotate-180, .icon-rotate-270, .icon-flip-horizontal, .icon-flip-vertical {
&:before { display: inline-block; }
}
}

View File

@@ -0,0 +1,352 @@
.icon-wand:before {content: "\e600";}
.icon-volume:before {content: "\e601";}
.icon-user:before {content: "\e602";}
.icon-unlock:before {content: "\e603";}
.icon-unlink:before {content: "\e604";}
.icon-trash:before {content: "\e605";}
.icon-thought:before {content: "\e606";}
.icon-target:before {content: "\e607";}
.icon-tag:before {content: "\e608";}
.icon-tablet:before {content: "\e609";}
.icon-star:before {content: "\e60a";}
.icon-spray:before {content: "\e60b";}
.icon-signal:before {content: "\e60c";}
.icon-shopping-cart:before {content: "\e60d";}
.icon-shopping-cart-full:before {content: "\e60e";}
.icon-settings:before {content: "\e60f";}
.icon-search:before {content: "\e610";}
.icon-zoom-in:before {content: "\e611";}
.icon-zoom-out:before {content: "\e612";}
.icon-cut:before {content: "\e613";}
.icon-ruler:before {content: "\e614";}
.icon-ruler-pencil:before {content: "\e615";}
.icon-ruler-alt:before {content: "\e616";}
.icon-bookmark:before {content: "\e617";}
.icon-bookmark-alt:before {content: "\e618";}
.icon-reload:before {content: "\e619";}
.icon-plus:before {content: "\e61a";}
.icon-pin:before {content: "\e61b";}
.icon-pencil:before {content: "\e61c";}
.icon-pencil-alt:before {content: "\e61d";}
.icon-paint-roller:before {content: "\e61e";}
.icon-paint-bucket:before {content: "\e61f";}
.icon-na:before {content: "\e620";}
.icon-mobile:before {content: "\e621";}
.icon-minus:before {content: "\e622";}
.icon-medall:before {content: "\e623";}
.icon-medall-alt:before {content: "\e624";}
.icon-marker:before {content: "\e625";}
.icon-marker-alt:before {content: "\e626";}
.icon-arrow-up:before {content: "\e627";}
.icon-arrow-right:before {content: "\e628";}
.icon-arrow-left:before {content: "\e629";}
.icon-arrow-down:before {content: "\e62a";}
.icon-lock:before {content: "\e62b";}
.icon-location-arrow:before {content: "\e62c";}
.icon-link:before {content: "\e62d";}
.icon-layout:before {content: "\e62e";}
.icon-layers:before {content: "\e62f";}
.icon-layers-alt:before {content: "\e630";}
.icon-key:before {content: "\e631";}
.icon-import:before {content: "\e632";}
.icon-image:before {content: "\e633";}
.icon-heart:before {content: "\e634";}
.icon-heart-broken:before {content: "\e635";}
.icon-hand-stop:before {content: "\e636";}
.icon-hand-open:before {content: "\e637";}
.icon-hand-drag:before {content: "\e638";}
.icon-folder:before {content: "\e639";}
.icon-flag:before {content: "\e63a";}
.icon-flag-alt:before {content: "\e63b";}
.icon-flag-alt-2:before {content: "\e63c";}
.icon-eye:before {content: "\e63d";}
.icon-export:before {content: "\e63e";}
.icon-exchange-vertical:before {content: "\e63f";}
.icon-desktop:before {content: "\e640";}
.icon-cup:before {content: "\e641";}
.icon-crown:before {content: "\e642";}
.icon-comments:before {content: "\e643";}
.icon-comment:before {content: "\e644";}
.icon-comment-alt:before {content: "\e645";}
.icon-close:before {content: "\e646";}
.icon-clip:before {content: "\e647";}
.icon-angle-up:before {content: "\e648";}
.icon-angle-right:before {content: "\e649";}
.icon-angle-left:before {content: "\e64a";}
.icon-angle-down:before {content: "\e64b";}
.icon-check:before {content: "\e64c";}
.icon-check-box:before {content: "\e64d";}
.icon-camera:before {content: "\e64e";}
.icon-announcement:before {content: "\e64f";}
.icon-brush:before {content: "\e650";}
.icon-briefcase:before {content: "\e651";}
.icon-bolt:before {content: "\e652";}
.icon-bolt-alt:before {content: "\e653";}
.icon-blackboard:before {content: "\e654";}
.icon-bag:before {content: "\e655";}
.icon-move:before {content: "\e656";}
.icon-arrows-vertical:before {content: "\e657";}
.icon-arrows-horizontal:before {content: "\e658";}
.icon-fullscreen:before {content: "\e659";}
.icon-arrow-top-right:before {content: "\e65a";}
.icon-arrow-top-left:before {content: "\e65b";}
.icon-arrow-circle-up:before {content: "\e65c";}
.icon-arrow-circle-right:before {content: "\e65d";}
.icon-arrow-circle-left:before {content: "\e65e";}
.icon-arrow-circle-down:before {content: "\e65f";}
.icon-angle-double-up:before {content: "\e660";}
.icon-angle-double-right:before {content: "\e661";}
.icon-angle-double-left:before {content: "\e662";}
.icon-angle-double-down:before {content: "\e663";}
.icon-zip:before {content: "\e664";}
.icon-world:before {content: "\e665";}
.icon-wheelchair:before {content: "\e666";}
.icon-view-list:before {content: "\e667";}
.icon-view-list-alt:before {content: "\e668";}
.icon-view-grid:before {content: "\e669";}
.icon-uppercase:before {content: "\e66a";}
.icon-upload:before {content: "\e66b";}
.icon-underline:before {content: "\e66c";}
.icon-truck:before {content: "\e66d";}
.icon-timer:before {content: "\e66e";}
.icon-ticket:before {content: "\e66f";}
.icon-thumb-up:before {content: "\e670";}
.icon-thumb-down:before {content: "\e671";}
.icon-text:before {content: "\e672";}
.icon-stats-up:before {content: "\e673";}
.icon-stats-down:before {content: "\e674";}
.icon-split-v:before {content: "\e675";}
.icon-split-h:before {content: "\e676";}
.icon-smallcap:before {content: "\e677";}
.icon-shine:before {content: "\e678";}
.icon-shift-right:before {content: "\e679";}
.icon-shift-left:before {content: "\e67a";}
.icon-shield:before {content: "\e67b";}
.icon-notepad:before {content: "\e67c";}
.icon-server:before {content: "\e67d";}
.icon-quote-right:before {content: "\e67e";}
.icon-quote-left:before {content: "\e67f";}
.icon-pulse:before {content: "\e680";}
.icon-printer:before {content: "\e681";}
.icon-power-off:before {content: "\e682";}
.icon-plug:before {content: "\e683";}
.icon-pie-chart:before {content: "\e684";}
.icon-paragraph:before {content: "\e685";}
.icon-panel:before {content: "\e686";}
.icon-package:before {content: "\e687";}
.icon-music:before {content: "\e688";}
.icon-music-alt:before {content: "\e689";}
.icon-mouse:before {content: "\e68a";}
.icon-mouse-alt:before {content: "\e68b";}
.icon-money:before {content: "\e68c";}
.icon-microphone:before {content: "\e68d";}
.icon-menu:before {content: "\e68e";}
.icon-menu-alt:before {content: "\e68f";}
.icon-map:before {content: "\e690";}
.icon-map-alt:before {content: "\e691";}
.icon-loop:before {content: "\e692";}
.icon-location-pin:before {content: "\e693";}
.icon-list:before {content: "\e694";}
.icon-light-bulb:before {content: "\e695";}
.icon-Italic:before {content: "\e696";}
.icon-info:before {content: "\e697";}
.icon-infinite:before {content: "\e698";}
.icon-id-badge:before {content: "\e699";}
.icon-hummer:before {content: "\e69a";}
.icon-home:before {content: "\e69b";}
.icon-help:before {content: "\e69c";}
.icon-headphone:before {content: "\e69d";}
.icon-harddrives:before {content: "\e69e";}
.icon-harddrive:before {content: "\e69f";}
.icon-gift:before {content: "\e6a0";}
.icon-game:before {content: "\e6a1";}
.icon-filter:before {content: "\e6a2";}
.icon-files:before {content: "\e6a3";}
.icon-file:before {content: "\e6a4";}
.icon-eraser:before {content: "\e6a5";}
.icon-envelope:before {content: "\e6a6";}
.icon-download:before {content: "\e6a7";}
.icon-direction:before {content: "\e6a8";}
.icon-direction-alt:before {content: "\e6a9";}
.icon-dashboard:before {content: "\e6aa";}
.icon-control-stop:before {content: "\e6ab";}
.icon-control-shuffle:before {content: "\e6ac";}
.icon-control-play:before {content: "\e6ad";}
.icon-control-pause:before {content: "\e6ae";}
.icon-control-forward:before {content: "\e6af";}
.icon-control-backward:before {content: "\e6b0";}
.icon-cloud:before {content: "\e6b1";}
.icon-cloud-up:before {content: "\e6b2";}
.icon-cloud-down:before {content: "\e6b3";}
.icon-clipboard:before {content: "\e6b4";}
.icon-car:before {content: "\e6b5";}
.icon-calendar:before {content: "\e6b6";}
.icon-book:before {content: "\e6b7";}
.icon-bell:before {content: "\e6b8";}
.icon-basketball:before {content: "\e6b9";}
.icon-bar-chart:before {content: "\e6ba";}
.icon-bar-chart-alt:before {content: "\e6bb";}
.icon-back-right:before {content: "\e6bc";}
.icon-back-left:before {content: "\e6bd";}
.icon-arrows-corner:before {content: "\e6be";}
.icon-archive:before {content: "\e6bf";}
.icon-anchor:before {content: "\e6c0";}
.icon-align-right:before {content: "\e6c1";}
.icon-align-left:before {content: "\e6c2";}
.icon-align-justify:before {content: "\e6c3";}
.icon-align-center:before {content: "\e6c4";}
.icon-alert:before {content: "\e6c5";}
.icon-alarm-clock:before {content: "\e6c6";}
.icon-agenda:before {content: "\e6c7";}
.icon-write:before {content: "\e6c8";}
.icon-window:before {content: "\e6c9";}
.icon-widgetized:before {content: "\e6ca";}
.icon-widget:before {content: "\e6cb";}
.icon-widget-alt:before {content: "\e6cc";}
.icon-wallet:before {content: "\e6cd";}
.icon-video-clapper:before {content: "\e6ce";}
.icon-video-camera:before {content: "\e6cf";}
.icon-vector:before {content: "\e6d0";}
.icon-themify-logo:before {content: "\e6d1";}
.icon-themify-favicon:before {content: "\e6d2";}
.icon-themify-favicon-alt:before {content: "\e6d3";}
.icon-support:before {content: "\e6d4";}
.icon-stamp:before {content: "\e6d5";}
.icon-split-v-alt:before {content: "\e6d6";}
.icon-slice:before {content: "\e6d7";}
.icon-shortcode:before {content: "\e6d8";}
.icon-shift-right-alt:before {content: "\e6d9";}
.icon-shift-left-alt:before {content: "\e6da";}
.icon-ruler-alt-2:before {content: "\e6db";}
.icon-receipt:before {content: "\e6dc";}
.icon-pin2:before {content: "\e6dd";}
.icon-pin-alt:before {content: "\e6de";}
.icon-pencil-alt2:before {content: "\e6df";}
.icon-palette:before {content: "\e6e0";}
.icon-more:before {content: "\e6e1";}
.icon-more-alt:before {content: "\e6e2";}
.icon-microphone-alt:before {content: "\e6e3";}
.icon-magnet:before {content: "\e6e4";}
.icon-line-double:before {content: "\e6e5";}
.icon-line-dotted:before {content: "\e6e6";}
.icon-line-dashed:before {content: "\e6e7";}
.icon-layout-width-full:before {content: "\e6e8";}
.icon-layout-width-default:before {content: "\e6e9";}
.icon-layout-width-default-alt:before {content: "\e6ea";}
.icon-layout-tab:before {content: "\e6eb";}
.icon-layout-tab-window:before {content: "\e6ec";}
.icon-layout-tab-v:before {content: "\e6ed";}
.icon-layout-tab-min:before {content: "\e6ee";}
.icon-layout-slider:before {content: "\e6ef";}
.icon-layout-slider-alt:before {content: "\e6f0";}
.icon-layout-sidebar-right:before {content: "\e6f1";}
.icon-layout-sidebar-none:before {content: "\e6f2";}
.icon-layout-sidebar-left:before {content: "\e6f3";}
.icon-layout-placeholder:before {content: "\e6f4";}
.icon-layout-menu:before {content: "\e6f5";}
.icon-layout-menu-v:before {content: "\e6f6";}
.icon-layout-menu-separated:before {content: "\e6f7";}
.icon-layout-menu-full:before {content: "\e6f8";}
.icon-layout-media-right-alt:before {content: "\e6f9";}
.icon-layout-media-right:before {content: "\e6fa";}
.icon-layout-media-overlay:before {content: "\e6fb";}
.icon-layout-media-overlay-alt:before {content: "\e6fc";}
.icon-layout-media-overlay-alt-2:before {content: "\e6fd";}
.icon-layout-media-left-alt:before {content: "\e6fe";}
.icon-layout-media-left:before {content: "\e6ff";}
.icon-layout-media-center-alt:before {content: "\e700";}
.icon-layout-media-center:before {content: "\e701";}
.icon-layout-list-thumb:before {content: "\e702";}
.icon-layout-list-thumb-alt:before {content: "\e703";}
.icon-layout-list-post:before {content: "\e704";}
.icon-layout-list-large-image:before {content: "\e705";}
.icon-layout-line-solid:before {content: "\e706";}
.icon-layout-grid4:before {content: "\e707";}
.icon-layout-grid3:before {content: "\e708";}
.icon-layout-grid2:before {content: "\e709";}
.icon-layout-grid2-thumb:before {content: "\e70a";}
.icon-layout-cta-right:before {content: "\e70b";}
.icon-layout-cta-left:before {content: "\e70c";}
.icon-layout-cta-center:before {content: "\e70d";}
.icon-layout-cta-btn-right:before {content: "\e70e";}
.icon-layout-cta-btn-left:before {content: "\e70f";}
.icon-layout-column4:before {content: "\e710";}
.icon-layout-column3:before {content: "\e711";}
.icon-layout-column2:before {content: "\e712";}
.icon-layout-accordion-separated:before {content: "\e713";}
.icon-layout-accordion-merged:before {content: "\e714";}
.icon-layout-accordion-list:before {content: "\e715";}
.icon-ink-pen:before {content: "\e716";}
.icon-info-alt:before {content: "\e717";}
.icon-help-alt:before {content: "\e718";}
.icon-headphone-alt:before {content: "\e719";}
.icon-hand-point-up:before {content: "\e71a";}
.icon-hand-point-right:before {content: "\e71b";}
.icon-hand-point-left:before {content: "\e71c";}
.icon-hand-point-down:before {content: "\e71d";}
.icon-gallery:before {content: "\e71e";}
.icon-face-smile:before {content: "\e71f";}
.icon-face-sad:before {content: "\e720";}
.icon-credit-card:before {content: "\e721";}
.icon-control-skip-forward:before {content: "\e722";}
.icon-control-skip-backward:before {content: "\e723";}
.icon-control-record:before {content: "\e724";}
.icon-control-eject:before {content: "\e725";}
.icon-comments-smiley:before {content: "\e726";}
.icon-brush-alt:before {content: "\e727";}
.icon-youtube:before {content: "\e728";}
.icon-vimeo:before {content: "\e729";}
.icon-twitter:before {content: "\e72a";}
.icon-time:before {content: "\e72b";}
.icon-tumblr:before {content: "\e72c";}
.icon-skype:before {content: "\e72d";}
.icon-share:before {content: "\e72e";}
.icon-share-alt:before {content: "\e72f";}
.icon-rocket:before {content: "\e730";}
.icon-pinterest:before {content: "\e731";}
.icon-new-window:before {content: "\e732";}
.icon-microsoft:before {content: "\e733";}
.icon-list-ol:before {content: "\e734";}
.icon-linkedin:before {content: "\e735";}
.icon-layout-sidebar-2:before {content: "\e736";}
.icon-layout-grid4-alt:before {content: "\e737";}
.icon-layout-grid3-alt:before {content: "\e738";}
.icon-layout-grid2-alt:before {content: "\e739";}
.icon-layout-column4-alt:before {content: "\e73a";}
.icon-layout-column3-alt:before {content: "\e73b";}
.icon-layout-column2-alt:before {content: "\e73c";}
.icon-instagram:before {content: "\e73d";}
.icon-google:before {content: "\e73e";}
.icon-github:before {content: "\e73f";}
.icon-flickr:before {content: "\e740";}
.icon-facebook:before {content: "\e741";}
.icon-dropbox:before {content: "\e742";}
.icon-dribbble:before {content: "\e743";}
.icon-apple:before {content: "\e744";}
.icon-android:before {content: "\e745";}
.icon-save:before {content: "\e746";}
.icon-save-alt:before {content: "\e747";}
.icon-yahoo:before {content: "\e748";}
.icon-wordpress:before {content: "\e749";}
.icon-vimeo-alt:before {content: "\e74a";}
.icon-twitter-alt:before {content: "\e74b";}
.icon-tumblr-alt:before {content: "\e74c";}
.icon-trello:before {content: "\e74d";}
.icon-stack-overflow:before {content: "\e74e";}
.icon-soundcloud:before {content: "\e74f";}
.icon-sharethis:before {content: "\e750";}
.icon-sharethis-alt:before {content: "\e751";}
.icon-reddit:before {content: "\e752";}
.icon-pinterest-alt:before {content: "\e753";}
.icon-microsoft-alt:before {content: "\e754";}
.icon-linux:before {content: "\e755";}
.icon-jsfiddle:before {content: "\e756";}
.icon-joomla:before {content: "\e757";}
.icon-html5:before {content: "\e758";}
.icon-flickr-alt:before {content: "\e759";}
.icon-email:before {content: "\e75a";}
.icon-drupal:before {content: "\e75b";}
.icon-dropbox-alt:before {content: "\e75c";}
.icon-css3:before {content: "\e75d";}
.icon-rss:before {content: "\e75e";}
.icon-rss-alt:before {content: "\e75f";}

View File

@@ -0,0 +1,56 @@
// Mixins
// --------------------------
// FONT / MARGINS / FONT SIZE / COLOUR
@mixin icon($i, $m:10px, $fs:18px, $c:inherit) {
&:before { @include icon-themify-icons(); content: $i; margin-right: $m; font-size: $fs; color:$c;}
}
@mixin iconafter($i, $m:10px, $fs:18px, $c:inherit) {
&:after { @include icon-themify-icons(); content: $i; margin-left: $m; font-size: $fs; color:$c; }
}
@mixin icon-themify-icons() {
font-family: 'themify';
speak: none;
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
line-height: 1;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
*margin-right: .3em; // fixes ie7 issues
}
@mixin border-radius($radius) {
-webkit-border-radius: $radius;
-moz-border-radius: $radius;
border-radius: $radius;
}
@mixin icon-stack($width: 2em, $height: 2em, $top-font-size: 1em, $base-font-size: 2em) {
.icon-stack {
position: relative;
display: inline-block;
width: $width;
height: $height;
line-height: $width;
vertical-align: -35%;
[class^="icon-"],
[class*=" icon-"] {
display: block;
text-align: center;
position: absolute;
width: 100%;
height: 100%;
font-size: $top-font-size;
line-height: inherit;
*line-height: $height;
}
.icon-stack-base {
font-size: $base-font-size;
*line-height: 1em;
}
}
}

View File

@@ -0,0 +1,13 @@
/* FONT PATH
* -------------------------- */
@font-face {
font-family: 'themify';
src:url('#{$ti-font-path}/themify.eot?-fvbane');
src:url('#{$ti-font-path}/themify.eot?#iefix-fvbane') format('embedded-opentype'),
url('#{$ti-font-path}/themify.woff?-fvbane') format('woff'),
url('#{$ti-font-path}/themify.ttf?-fvbane') format('truetype'),
url('#{$ti-font-path}/themify.svg?-fvbane#themify') format('svg');
font-weight: normal;
font-style: normal;
}

View File

@@ -0,0 +1,6 @@
@import "variables";
@import "mixins";
@import "path";
@import "core";
@import "extras";
@import "icons";

View File

@@ -0,0 +1,361 @@
$ti-font-path: "../fonts/themify" !default;
$borderColor: #eeeeee !default;
$iconMuted: #eeeeee !default;
$iconLight: white !default;
$iconDark: #333333 !default;
$icons-li-width: calc(30em/14);
$wand : "\e600";
$volume : "\e601";
$user : "\e602";
$unlock : "\e603";
$unlink : "\e604";
$trash : "\e605";
$thought : "\e606";
$target : "\e607";
$tag : "\e608";
$tablet : "\e609";
$star : "\e60a";
$spray : "\e60b";
$signal : "\e60c";
$shopping-cart : "\e60d";
$shopping-cart-full : "\e60e";
$settings : "\e60f";
$search : "\e610";
$zoom-in : "\e611";
$zoom-out : "\e612";
$cut : "\e613";
$ruler : "\e614";
$ruler-pencil : "\e615";
$ruler-alt : "\e616";
$bookmark : "\e617";
$bookmark-alt : "\e618";
$reload : "\e619";
$plus : "\e61a";
$pin : "\e61b";
$pencil : "\e61c";
$pencil-alt : "\e61d";
$paint-roller : "\e61e";
$paint-bucket : "\e61f";
$na : "\e620";
$mobile : "\e621";
$minus : "\e622";
$medall : "\e623";
$medall-alt : "\e624";
$marker : "\e625";
$marker-alt : "\e626";
$arrow-up : "\e627";
$arrow-right : "\e628";
$arrow-left : "\e629";
$arrow-down : "\e62a";
$lock : "\e62b";
$location-arrow : "\e62c";
$link : "\e62d";
$layout : "\e62e";
$layers : "\e62f";
$layers-alt : "\e630";
$key : "\e631";
$import : "\e632";
$image : "\e633";
$heart : "\e634";
$heart-broken : "\e635";
$hand-stop : "\e636";
$hand-open : "\e637";
$hand-drag : "\e638";
$folder : "\e639";
$flag : "\e63a";
$flag-alt : "\e63b";
$flag-alt-2 : "\e63c";
$eye : "\e63d";
$export : "\e63e";
$exchange-vertical : "\e63f";
$desktop : "\e640";
$cup : "\e641";
$crown : "\e642";
$comments : "\e643";
$comment : "\e644";
$comment-alt : "\e645";
$close : "\e646";
$clip : "\e647";
$angle-up : "\e648";
$angle-right : "\e649";
$angle-left : "\e64a";
$angle-down : "\e64b";
$check : "\e64c";
$check-box : "\e64d";
$camera : "\e64e";
$announcement : "\e64f";
$brush : "\e650";
$briefcase : "\e651";
$bolt : "\e652";
$bolt-alt : "\e653";
$blackboard : "\e654";
$bag : "\e655";
$move : "\e656";
$arrows-vertical : "\e657";
$arrows-horizontal : "\e658";
$fullscreen : "\e659";
$arrow-top-right : "\e65a";
$arrow-top-left : "\e65b";
$arrow-circle-up : "\e65c";
$arrow-circle-right : "\e65d";
$arrow-circle-left : "\e65e";
$arrow-circle-down : "\e65f";
$angle-double-up : "\e660";
$angle-double-right : "\e661";
$angle-double-left : "\e662";
$angle-double-down : "\e663";
$zip : "\e664";
$world : "\e665";
$wheelchair : "\e666";
$view-list : "\e667";
$view-list-alt : "\e668";
$view-grid : "\e669";
$uppercase : "\e66a";
$upload : "\e66b";
$underline : "\e66c";
$truck : "\e66d";
$timer : "\e66e";
$ticket : "\e66f";
$thumb-up : "\e670";
$thumb-down : "\e671";
$text : "\e672";
$stats-up : "\e673";
$stats-down : "\e674";
$split-v : "\e675";
$split-h : "\e676";
$smallcap : "\e677";
$shine : "\e678";
$shift-right : "\e679";
$shift-left : "\e67a";
$shield : "\e67b";
$notepad : "\e67c";
$server : "\e67d";
$quote-right : "\e67e";
$quote-left : "\e67f";
$pulse : "\e680";
$printer : "\e681";
$power-off : "\e682";
$plug : "\e683";
$pie-chart : "\e684";
$paragraph : "\e685";
$panel : "\e686";
$package : "\e687";
$music : "\e688";
$music-alt : "\e689";
$mouse : "\e68a";
$mouse-alt : "\e68b";
$money : "\e68c";
$microphone : "\e68d";
$menu : "\e68e";
$menu-alt : "\e68f";
$map : "\e690";
$map-alt : "\e691";
$loop : "\e692";
$location-pin : "\e693";
$list : "\e694";
$light-bulb : "\e695";
$Italic : "\e696";
$info : "\e697";
$infinite : "\e698";
$id-badge : "\e699";
$hummer : "\e69a";
$home : "\e69b";
$help : "\e69c";
$headphone : "\e69d";
$harddrives : "\e69e";
$harddrive : "\e69f";
$gift : "\e6a0";
$game : "\e6a1";
$filter : "\e6a2";
$files : "\e6a3";
$file : "\e6a4";
$eraser : "\e6a5";
$envelope : "\e6a6";
$download : "\e6a7";
$direction : "\e6a8";
$direction-alt : "\e6a9";
$dashboard : "\e6aa";
$control-stop : "\e6ab";
$control-shuffle : "\e6ac";
$control-play : "\e6ad";
$control-pause : "\e6ae";
$control-forward : "\e6af";
$control-backward : "\e6b0";
$cloud : "\e6b1";
$cloud-up : "\e6b2";
$cloud-down : "\e6b3";
$clipboard : "\e6b4";
$car : "\e6b5";
$calendar : "\e6b6";
$book : "\e6b7";
$bell : "\e6b8";
$basketball : "\e6b9";
$bar-chart : "\e6ba";
$bar-chart-alt : "\e6bb";
$back-right : "\e6bc";
$back-left : "\e6bd";
$arrows-corner : "\e6be";
$archive : "\e6bf";
$anchor : "\e6c0";
$align-right : "\e6c1";
$align-left : "\e6c2";
$align-justify : "\e6c3";
$align-center : "\e6c4";
$alert : "\e6c5";
$alarm-clock : "\e6c6";
$agenda : "\e6c7";
$write : "\e6c8";
$window : "\e6c9";
$widgetized : "\e6ca";
$widget : "\e6cb";
$widget-alt : "\e6cc";
$wallet : "\e6cd";
$video-clapper : "\e6ce";
$video-camera : "\e6cf";
$vector : "\e6d0";
$themify-logo : "\e6d1";
$themify-favicon : "\e6d2";
$themify-favicon-alt : "\e6d3";
$support : "\e6d4";
$stamp : "\e6d5";
$split-v-alt : "\e6d6";
$slice : "\e6d7";
$shortcode : "\e6d8";
$shift-right-alt : "\e6d9";
$shift-left-alt : "\e6da";
$ruler-alt-2 : "\e6db";
$receipt : "\e6dc";
$pin2 : "\e6dd";
$pin-alt : "\e6de";
$pencil-alt2 : "\e6df";
$palette : "\e6e0";
$more : "\e6e1";
$more-alt : "\e6e2";
$microphone-alt : "\e6e3";
$magnet : "\e6e4";
$line-double : "\e6e5";
$line-dotted : "\e6e6";
$line-dashed : "\e6e7";
$layout-width-full : "\e6e8";
$layout-width-default : "\e6e9";
$layout-width-default-alt : "\e6ea";
$layout-tab : "\e6eb";
$layout-tab-window : "\e6ec";
$layout-tab-v : "\e6ed";
$layout-tab-min : "\e6ee";
$layout-slider : "\e6ef";
$layout-slider-alt : "\e6f0";
$layout-sidebar-right : "\e6f1";
$layout-sidebar-none : "\e6f2";
$layout-sidebar-left : "\e6f3";
$layout-placeholder : "\e6f4";
$layout-menu : "\e6f5";
$layout-menu-v : "\e6f6";
$layout-menu-separated : "\e6f7";
$layout-menu-full : "\e6f8";
$layout-media-right-alt : "\e6f9";
$layout-media-right : "\e6fa";
$layout-media-overlay : "\e6fb";
$layout-media-overlay-alt : "\e6fc";
$layout-media-overlay-alt-2 : "\e6fd";
$layout-media-left-alt : "\e6fe";
$layout-media-left : "\e6ff";
$layout-media-center-alt : "\e700";
$layout-media-center : "\e701";
$layout-list-thumb : "\e702";
$layout-list-thumb-alt : "\e703";
$layout-list-post : "\e704";
$layout-list-large-image : "\e705";
$layout-line-solid : "\e706";
$layout-grid4 : "\e707";
$layout-grid3 : "\e708";
$layout-grid2 : "\e709";
$layout-grid2-thumb : "\e70a";
$layout-cta-right : "\e70b";
$layout-cta-left : "\e70c";
$layout-cta-center : "\e70d";
$layout-cta-btn-right : "\e70e";
$layout-cta-btn-left : "\e70f";
$layout-column4 : "\e710";
$layout-column3 : "\e711";
$layout-column2 : "\e712";
$layout-accordion-separated : "\e713";
$layout-accordion-merged : "\e714";
$layout-accordion-list : "\e715";
$ink-pen : "\e716";
$info-alt : "\e717";
$help-alt : "\e718";
$headphone-alt : "\e719";
$hand-point-up : "\e71a";
$hand-point-right : "\e71b";
$hand-point-left : "\e71c";
$hand-point-down : "\e71d";
$gallery : "\e71e";
$face-smile : "\e71f";
$face-sad : "\e720";
$credit-card : "\e721";
$control-skip-forward : "\e722";
$control-skip-backward : "\e723";
$control-record : "\e724";
$control-eject : "\e725";
$comments-smiley : "\e726";
$brush-alt : "\e727";
$youtube : "\e728";
$vimeo : "\e729";
$twitter : "\e72a";
$time : "\e72b";
$tumblr : "\e72c";
$skype : "\e72d";
$share : "\e72e";
$share-alt : "\e72f";
$rocket : "\e730";
$pinterest : "\e731";
$new-window : "\e732";
$microsoft : "\e733";
$list-ol : "\e734";
$linkedin : "\e735";
$layout-sidebar-2 : "\e736";
$layout-grid4-alt : "\e737";
$layout-grid3-alt : "\e738";
$layout-grid2-alt : "\e739";
$layout-column4-alt : "\e73a";
$layout-column3-alt : "\e73b";
$layout-column2-alt : "\e73c";
$instagram : "\e73d";
$google : "\e73e";
$github : "\e73f";
$flickr : "\e740";
$facebook : "\e741";
$dropbox : "\e742";
$dribbble : "\e743";
$apple : "\e744";
$android : "\e745";
$save : "\e746";
$save-alt : "\e747";
$yahoo : "\e748";
$wordpress : "\e749";
$vimeo-alt : "\e74a";
$twitter-alt : "\e74b";
$tumblr-alt : "\e74c";
$trello : "\e74d";
$stack-overflow : "\e74e";
$soundcloud : "\e74f";
$sharethis : "\e750";
$sharethis-alt : "\e751";
$reddit : "\e752";
$pinterest-alt : "\e753";
$microsoft-alt : "\e754";
$linux : "\e755";
$jsfiddle : "\e756";
$joomla : "\e757";
$html5 : "\e758";
$flickr-alt : "\e759";
$email : "\e75a";
$drupal : "\e75b";
$dropbox-alt : "\e75c";
$css3 : "\e75d";
$rss : "\e75e";
$rss-alt: "\e75f";