first commit

This commit is contained in:
Senad Uka
2018-05-07 16:07:00 +02:00
commit 8b4f09f9d5
3368 changed files with 852614 additions and 0 deletions

76
sass/_colors.scss Executable file
View File

@@ -0,0 +1,76 @@
@include generateColors("primary", $brand-primary, white);
@include generateColors("success", $brand-success, white);
@include generateColors("info", $brand-info, white);
@include generateColors("warning", $brand-warning, white);
@include generateColors("danger", $brand-danger, white);
@include generateColors("white", #ffffff, white);
@include generateColors("black", #000000, white);
@include generateColors("deepred", #D71F4B, white);
@include generateColors("red", #EA7882, white);
@include generateColors("lightred", #F09FA6, white);
@include generateColors("brightblue", #003BFF, white);
@include generateColors("darkblue", #4A90E2, white);
@include generateColors("blue", #79B0EC, white);
@include generateColors("lightblue50", #D2E0EB, white);
@include generateColors("lightblue", #A0C7F2, white);
@include generateColors("hoverblue", #E5EFFB, white);
@include generateColors("purple", #B4A1DD, white);
@include generateColors("lightpurple50", #C1B2E3, white);
@include generateColors("lightpurple", #D3C9EB, white);
@include generateColors("darkbrown", #AB4F45, white);
@include generateColors("brown", #A8553A, white);
@include generateColors("brown75", #C36849, white);
@include generateColors("brown60", #C67055, white);
@include generateColors("brown50", #D67F6B, white);
@include generateColors("brownishgreen", #948266, white);
@include generateColors("orange", #FFC497, white);
@include generateColors("paleorange", #EA8564, white);
@include generateColors("pinkishred", #EF6B5D, white);
@include generateColors("orange75", #EE682F, white);
@include generateColors("orange65", #FA824F, white);
@include generateColors("orange45", #FFC9A0, white);
@include generateColors("darkorange", #EBA068, white);
@include generateColors("lightorange", #FFD3B1, white);
@include generateColors("darkgreen", #306C67, white);
@include generateColors("darkgreen85", #36845E, white);
@include generateColors("darkgreen75", #518F41, white);
@include generateColors("darkgreen65", #66A655, white);
@include generateColors("darkgreen55", #68BD80, white);
@include generateColors("darkgreen50", #55A69F, white);
@include generateColors("darkgreen45", #2EB398, white);
@include generateColors("darkgreen40", #44C1AC, white);
@include generateColors("green", #55C9A6, white);
@include generateColors("lightgreen", #7CD5BA, white);
@include generateColors("hovergreen", #E5F7F1, white);
@include generateColors("brightyellow", #FCB621, white);
@include generateColors("brightyellow75", #F3C557, white);
@include generateColors("brightyellow65", #EDBC6C, white);
@include generateColors("yellow", #FADD7F, white);
@include generateColors("paleyellow", #DEBC85, white);
@include generateColors("lightyellow", #FBE499, white);
@include generateColors("hoveryellow", #FFF1E7, white);
@include generateColors("pink", #E299B7, white);
@include generateColors("lightpink", #ECBCD0, white);
@include generateColors("paleblue", #A5C7EC, white);
@include generateColors("palegreen", #A0DFCC, white);
@include generateColors("palepink", #E394B3, white);
@include generateColors("brownishgray", #64584C, white);
@include generateColors("brownishgray75", #776B5F, white);
@include generateColors("gray", #EAEDF1, white);
@include generateColors("darkgray", #999895, white);
@include generateColors("darkgray75", #B8B6B0, white);
@include generateColors("darkgray50", #B8C3C8, white);
@include generateColors("darkgray40", #CDCCC8, white);
@include generateColors("darkgray25", #DCDBD8, white);
@include generateColors("lightgray", #EEEDEB, white);
@include generateColors("lightgray50", #F1F0EE, white);
@include generateColors("black75", #3F3F3B, white);
@include generateColors("black50", #3B4648, white);
@include generateColors("davygray", #555555, white);
@include generateColors("darkgrayishblue75", #43525A, white);
@include generateColors("darkgrayishblue", #4C5D67, white);
@include generateColors("desaturateddarkblue", #515E78, white);
@include generateColors("desaturateddarkblue75", #3B465C, white);
@include generateColors("darkcyan", #68A0A5, white);
@include generateColors("grayishcyan", #92BDC1, white);

4
sass/_theme.scss Executable file
View File

@@ -0,0 +1,4 @@
/* ADD/REMOVE/CHANGE THEMES HERE */
// Giving the default theme a name
@include theme-maker("default", ());

78
sass/_variables.scss Executable file
View File

@@ -0,0 +1,78 @@
$img-path: '/public/imgs/common';
$font-path: '/public/fonts';
$bootstrap-sass-asset-helper: true;
$icon-font-path: '/fonts/glyphicon/'; // only for glyphicon
$grid-gutter-width: 50px;
$font-size-base: 14px;
$line-height-base: 1.785714289; // 25/14
$line-height-computed: floor(($font-size-base * $line-height-base)); // ~25px
$padding-base-vertical: 6px;
$input-height-base: ($line-height-computed + ($padding-base-vertical * 2) + 1);
$nav-link-padding: 4px ($line-height-computed);
$panel-heading-padding: ($line-height-computed / 2) ($line-height-computed);
$panel-body-padding: $line-height-computed;
$navbar-height: 75px;
$sidebar-controls-visibility: visible;
$font-family-sans-serif: Lato, sans-serif;
$headings-font-family: Lato, sans-serif;
$screen-sm-min: 990px;
$screen-md-min: 1152px;
$screen-lg-min: 1366px;
$screen-xs-max: ($screen-sm-min - 1);
$screen-sm-max: ($screen-md-min - 1);
$screen-md-max: ($screen-lg-min - 1);
$primary-color: #89949B;
$brand-primary: #428bca;
$brand-success: #5cb85c;
$brand-info: #5bc0de;
$brand-warning: #f0ad4e;
$brand-danger: #d9534f;
$zindex-tooltip: 999999999999999999999999999;
$container-sm: 990px;
$container-md: 990px;
$container-lg: 990px;
$btn-height: 30px;
$btn-border-radius-base: 20px;
$btn-padding-base-vertical: 2px;
$btn-padding-base-horizontal: 15px;
$btn-padding-large-base-vertical: 10px;
$btn-padding-large-base-horizontal: 25px;
$btn-font-size: 12px;
$btn-font-weight: bold;
$btn-font-size-small: 10px;
$btn-font-size-xsmall: 8px;
$btn-link-color: #89949B;
$btn-default-color: #B4B7B9;
$btn-primary-color: $brand-primary;
$btn-success-color: $brand-success;
$btn-info-color: $brand-info;
$btn-warning-color: $brand-warning;
$btn-danger-color: $brand-danger;
$dropdown-link-color: rgb(137, 148, 155);
$dropdown-link-hover-bg: rgba(180, 183, 185, 0.05);
$link-color: #2EB398;
$link-hover-color: #2e6b5e;
$link-hover-decoration: none;
$nav-link-color: #aaa;
$nav-disabled-link-color: #777777;
$nav-link-hover-bg: #f5f5f5;
$nav-tabs-link-hover-border-color: #f5f5f5;
$navbar-default-bg: #fff;
$breadcrumb-bg: #fff;

View File

@@ -0,0 +1,506 @@
@font-face {
font-family: 'Simple-Line-Icons';
src: url('#{$font-path}/Simple-Line-Icons/Simple-Line-Icons.woff2') format('woff2'),
url('#{$font-path}/Simple-Line-Icons/Simple-Line-Icons.woff') format('woff');
font-weight: normal;
font-style: normal;
}
[class^="icon-simple-line-icons-"]:before,
[class*=" icon-simple-line-icons-"]:before {
font-family: 'Simple-Line-Icons';
speak: none;
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
line-height: 1;
-webkit-font-smoothing: antialiased;
}
.icon-simple-line-icons-user-female:before {
content: "\e000";
}
.icon-simple-line-icons-user-follow:before {
content: "\e002";
}
.icon-simple-line-icons-user-following:before {
content: "\e003";
}
.icon-simple-line-icons-user-unfollow:before {
content: "\e004";
}
.icon-simple-line-icons-trophy:before {
content: "\e006";
}
.icon-simple-line-icons-screen-smartphone:before {
content: "\e010";
}
.icon-simple-line-icons-screen-desktop:before {
content: "\e011";
}
.icon-simple-line-icons-plane:before {
content: "\e012";
}
.icon-simple-line-icons-notebook:before {
content: "\e013";
}
.icon-simple-line-icons-moustache:before {
content: "\e014";
}
.icon-simple-line-icons-mouse:before {
content: "\e015";
}
.icon-simple-line-icons-magnet:before {
content: "\e016";
}
.icon-simple-line-icons-energy:before {
content: "\e020";
}
.icon-simple-line-icons-emoticon-smile:before {
content: "\e021";
}
.icon-simple-line-icons-disc:before {
content: "\e022";
}
.icon-simple-line-icons-cursor-move:before {
content: "\e023";
}
.icon-simple-line-icons-crop:before {
content: "\e024";
}
.icon-simple-line-icons-credit-card:before {
content: "\e025";
}
.icon-simple-line-icons-chemistry:before {
content: "\e026";
}
.icon-simple-line-icons-user:before {
content: "\e005";
}
.icon-simple-line-icons-speedometer:before {
content: "\e007";
}
.icon-simple-line-icons-social-youtube:before {
content: "\e008";
}
.icon-simple-line-icons-social-twitter:before {
content: "\e009";
}
.icon-simple-line-icons-social-tumblr:before {
content: "\e00a";
}
.icon-simple-line-icons-social-facebook:before {
content: "\e00b";
}
.icon-simple-line-icons-social-dropbox:before {
content: "\e00c";
}
.icon-simple-line-icons-social-dribbble:before {
content: "\e00d";
}
.icon-simple-line-icons-shield:before {
content: "\e00e";
}
.icon-simple-line-icons-screen-tablet:before {
content: "\e00f";
}
.icon-simple-line-icons-magic-wand:before {
content: "\e017";
}
.icon-simple-line-icons-hourglass:before {
content: "\e018";
}
.icon-simple-line-icons-graduation:before {
content: "\e019";
}
.icon-simple-line-icons-ghost:before {
content: "\e01a";
}
.icon-simple-line-icons-game-controller:before {
content: "\e01b";
}
.icon-simple-line-icons-fire:before {
content: "\e01c";
}
.icon-simple-line-icons-eyeglasses:before {
content: "\e01d";
}
.icon-simple-line-icons-envelope-open:before {
content: "\e01e";
}
.icon-simple-line-icons-envelope-letter:before {
content: "\e01f";
}
.icon-simple-line-icons-bell:before {
content: "\e027";
}
.icon-simple-line-icons-badge:before {
content: "\e028";
}
.icon-simple-line-icons-anchor:before {
content: "\e029";
}
.icon-simple-line-icons-wallet:before {
content: "\e02a";
}
.icon-simple-line-icons-vector:before {
content: "\e02b";
}
.icon-simple-line-icons-speech:before {
content: "\e02c";
}
.icon-simple-line-icons-puzzle:before {
content: "\e02d";
}
.icon-simple-line-icons-printer:before {
content: "\e02e";
}
.icon-simple-line-icons-present:before {
content: "\e02f";
}
.icon-simple-line-icons-playlist:before {
content: "\e030";
}
.icon-simple-line-icons-pin:before {
content: "\e031";
}
.icon-simple-line-icons-picture:before {
content: "\e032";
}
.icon-simple-line-icons-map:before {
content: "\e033";
}
.icon-simple-line-icons-layers:before {
content: "\e034";
}
.icon-simple-line-icons-handbag:before {
content: "\e035";
}
.icon-simple-line-icons-globe-alt:before {
content: "\e036";
}
.icon-simple-line-icons-globe:before {
content: "\e037";
}
.icon-simple-line-icons-frame:before {
content: "\e038";
}
.icon-simple-line-icons-folder-alt:before {
content: "\e039";
}
.icon-simple-line-icons-film:before {
content: "\e03a";
}
.icon-simple-line-icons-feed:before {
content: "\e03b";
}
.icon-simple-line-icons-earphones-alt:before {
content: "\e03c";
}
.icon-simple-line-icons-earphones:before {
content: "\e03d";
}
.icon-simple-line-icons-drop:before {
content: "\e03e";
}
.icon-simple-line-icons-drawer:before {
content: "\e03f";
}
.icon-simple-line-icons-docs:before {
content: "\e040";
}
.icon-simple-line-icons-directions:before {
content: "\e041";
}
.icon-simple-line-icons-direction:before {
content: "\e042";
}
.icon-simple-line-icons-diamond:before {
content: "\e043";
}
.icon-simple-line-icons-cup:before {
content: "\e044";
}
.icon-simple-line-icons-compass:before {
content: "\e045";
}
.icon-simple-line-icons-call-out:before {
content: "\e046";
}
.icon-simple-line-icons-call-in:before {
content: "\e047";
}
.icon-simple-line-icons-call-end:before {
content: "\e048";
}
.icon-simple-line-icons-calculator:before {
content: "\e049";
}
.icon-simple-line-icons-bubbles:before {
content: "\e04a";
}
.icon-simple-line-icons-briefcase:before {
content: "\e04b";
}
.icon-simple-line-icons-book-open:before {
content: "\e04c";
}
.icon-simple-line-icons-basket-loaded:before {
content: "\e04d";
}
.icon-simple-line-icons-basket:before {
content: "\e04e";
}
.icon-simple-line-icons-bag:before {
content: "\e04f";
}
.icon-simple-line-icons-action-undo:before {
content: "\e050";
}
.icon-simple-line-icons-action-redo:before {
content: "\e051";
}
.icon-simple-line-icons-wrench:before {
content: "\e052";
}
.icon-simple-line-icons-umbrella:before {
content: "\e053";
}
.icon-simple-line-icons-trash:before {
content: "\e054";
}
.icon-simple-line-icons-tag:before {
content: "\e055";
}
.icon-simple-line-icons-support:before {
content: "\e056";
}
.icon-simple-line-icons-size-fullscreen:before {
content: "\e057";
}
.icon-simple-line-icons-size-actual:before {
content: "\e058";
}
.icon-simple-line-icons-shuffle:before {
content: "\e059";
}
.icon-simple-line-icons-share-alt:before {
content: "\e05a";
}
.icon-simple-line-icons-share:before {
content: "\e05b";
}
.icon-simple-line-icons-rocket:before {
content: "\e05c";
}
.icon-simple-line-icons-question:before {
content: "\e05d";
}
.icon-simple-line-icons-pie-chart:before {
content: "\e05e";
}
.icon-simple-line-icons-pencil:before {
content: "\e05f";
}
.icon-simple-line-icons-note:before {
content: "\e060";
}
.icon-simple-line-icons-music-tone-alt:before {
content: "\e061";
}
.icon-simple-line-icons-music-tone:before {
content: "\e062";
}
.icon-simple-line-icons-microphone:before {
content: "\e063";
}
.icon-simple-line-icons-loop:before {
content: "\e064";
}
.icon-simple-line-icons-logout:before {
content: "\e065";
}
.icon-simple-line-icons-login:before {
content: "\e066";
}
.icon-simple-line-icons-list:before {
content: "\e067";
}
.icon-simple-line-icons-like:before {
content: "\e068";
}
.icon-simple-line-icons-home:before {
content: "\e069";
}
.icon-simple-line-icons-grid:before {
content: "\e06a";
}
.icon-simple-line-icons-graph:before {
content: "\e06b";
}
.icon-simple-line-icons-equalizer:before {
content: "\e06c";
}
.icon-simple-line-icons-dislike:before {
content: "\e06d";
}
.icon-simple-line-icons-cursor:before {
content: "\e06e";
}
.icon-simple-line-icons-control-start:before {
content: "\e06f";
}
.icon-simple-line-icons-control-rewind:before {
content: "\e070";
}
.icon-simple-line-icons-control-play:before {
content: "\e071";
}
.icon-simple-line-icons-control-pause:before {
content: "\e072";
}
.icon-simple-line-icons-control-forward:before {
content: "\e073";
}
.icon-simple-line-icons-control-end:before {
content: "\e074";
}
.icon-simple-line-icons-calendar:before {
content: "\e075";
}
.icon-simple-line-icons-bulb:before {
content: "\e076";
}
.icon-simple-line-icons-bar-chart:before {
content: "\e077";
}
.icon-simple-line-icons-arrow-up:before {
content: "\e078";
}
.icon-simple-line-icons-arrow-right:before {
content: "\e079";
}
.icon-simple-line-icons-arrow-left:before {
content: "\e07a";
}
.icon-simple-line-icons-arrow-down:before {
content: "\e07b";
}
.icon-simple-line-icons-ban:before {
content: "\e07c";
}
.icon-simple-line-icons-bubble:before {
content: "\e07d";
}
.icon-simple-line-icons-camcorder:before {
content: "\e07e";
}
.icon-simple-line-icons-camera:before {
content: "\e07f";
}
.icon-simple-line-icons-check:before {
content: "\e080";
}
.icon-simple-line-icons-clock:before {
content: "\e081";
}
.icon-simple-line-icons-close:before {
content: "\e082";
}
.icon-simple-line-icons-cloud-download:before {
content: "\e083";
}
.icon-simple-line-icons-cloud-upload:before {
content: "\e084";
}
.icon-simple-line-icons-doc:before {
content: "\e085";
}
.icon-simple-line-icons-envelope:before {
content: "\e086";
}
.icon-simple-line-icons-eye:before {
content: "\e087";
}
.icon-simple-line-icons-flag:before {
content: "\e088";
}
.icon-simple-line-icons-folder:before {
content: "\e089";
}
.icon-simple-line-icons-heart:before {
content: "\e08a";
}
.icon-simple-line-icons-info:before {
content: "\e08b";
}
.icon-simple-line-icons-key:before {
content: "\e08c";
}
.icon-simple-line-icons-link:before {
content: "\e08d";
}
.icon-simple-line-icons-lock:before {
content: "\e08e";
}
.icon-simple-line-icons-lock-open:before {
content: "\e08f";
}
.icon-simple-line-icons-magnifier:before {
content: "\e090";
}
.icon-simple-line-icons-magnifier-add:before {
content: "\e091";
}
.icon-simple-line-icons-magnifier-remove:before {
content: "\e092";
}
.icon-simple-line-icons-paper-clip:before {
content: "\e093";
}
.icon-simple-line-icons-paper-plane:before {
content: "\e094";
}
.icon-simple-line-icons-plus:before {
content: "\e095";
}
.icon-simple-line-icons-pointer:before {
content: "\e096";
}
.icon-simple-line-icons-power:before {
content: "\e097";
}
.icon-simple-line-icons-refresh:before {
content: "\e098";
}
.icon-simple-line-icons-reload:before {
content: "\e099";
}
.icon-simple-line-icons-settings:before {
content: "\e09a";
}
.icon-simple-line-icons-star:before {
content: "\e09b";
}
.icon-simple-line-icons-symbol-female:before {
content: "\e09c";
}
.icon-simple-line-icons-symbol-male:before {
content: "\e09d";
}
.icon-simple-line-icons-target:before {
content: "\e09e";
}
.icon-simple-line-icons-volume-1:before {
content: "\e09f";
}
.icon-simple-line-icons-volume-2:before {
content: "\e0a0";
}
.icon-simple-line-icons-volume-off:before {
content: "\e0a1";
}
.icon-simple-line-icons-users:before {
content: "\e001";
}

View File

@@ -0,0 +1,621 @@
@font-face {
font-family: 'Stroke-Gap-Icons';
src: url('#{$font-path}/Stroke-Gap-Icons/Stroke-Gap-Icons.woff2') format('woff2'),
url('#{$font-path}/Stroke-Gap-Icons/Stroke-Gap-Icons.woff') format('woff');
font-weight: normal;
font-style: normal;
}
[class^="icon-stroke-gap-icons-"]:before,
[class*=" icon-stroke-gap-icons-"]:before {
font-family: 'Stroke-Gap-Icons';
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;
}
.icon-stroke-gap-icons-WorldWide:before {
content: "\e600";
}
.icon-stroke-gap-icons-WorldGlobe:before {
content: "\e601";
}
.icon-stroke-gap-icons-Underpants:before {
content: "\e602";
}
.icon-stroke-gap-icons-Tshirt:before {
content: "\e603";
}
.icon-stroke-gap-icons-Trousers:before {
content: "\e604";
}
.icon-stroke-gap-icons-Tie:before {
content: "\e605";
}
.icon-stroke-gap-icons-TennisBall:before {
content: "\e606";
}
.icon-stroke-gap-icons-Telesocpe:before {
content: "\e607";
}
.icon-stroke-gap-icons-Stop:before {
content: "\e608";
}
.icon-stroke-gap-icons-Starship:before {
content: "\e609";
}
.icon-stroke-gap-icons-Starship2:before {
content: "\e60a";
}
.icon-stroke-gap-icons-Speaker:before {
content: "\e60b";
}
.icon-stroke-gap-icons-Speaker2:before {
content: "\e60c";
}
.icon-stroke-gap-icons-Soccer:before {
content: "\e60d";
}
.icon-stroke-gap-icons-Snikers:before {
content: "\e60e";
}
.icon-stroke-gap-icons-Scisors:before {
content: "\e60f";
}
.icon-stroke-gap-icons-Puzzle:before {
content: "\e610";
}
.icon-stroke-gap-icons-Printer:before {
content: "\e611";
}
.icon-stroke-gap-icons-Pool:before {
content: "\e612";
}
.icon-stroke-gap-icons-Podium:before {
content: "\e613";
}
.icon-stroke-gap-icons-Play:before {
content: "\e614";
}
.icon-stroke-gap-icons-Planet:before {
content: "\e615";
}
.icon-stroke-gap-icons-Pause:before {
content: "\e616";
}
.icon-stroke-gap-icons-Next:before {
content: "\e617";
}
.icon-stroke-gap-icons-MusicNote2:before {
content: "\e618";
}
.icon-stroke-gap-icons-MusicNote:before {
content: "\e619";
}
.icon-stroke-gap-icons-MusicMixer:before {
content: "\e61a";
}
.icon-stroke-gap-icons-Microphone:before {
content: "\e61b";
}
.icon-stroke-gap-icons-Medal:before {
content: "\e61c";
}
.icon-stroke-gap-icons-ManFigure:before {
content: "\e61d";
}
.icon-stroke-gap-icons-Magnet:before {
content: "\e61e";
}
.icon-stroke-gap-icons-Like:before {
content: "\e61f";
}
.icon-stroke-gap-icons-Hanger:before {
content: "\e620";
}
.icon-stroke-gap-icons-Handicap:before {
content: "\e621";
}
.icon-stroke-gap-icons-Forward:before {
content: "\e622";
}
.icon-stroke-gap-icons-Footbal:before {
content: "\e623";
}
.icon-stroke-gap-icons-Flag:before {
content: "\e624";
}
.icon-stroke-gap-icons-FemaleFigure:before {
content: "\e625";
}
.icon-stroke-gap-icons-Dislike:before {
content: "\e626";
}
.icon-stroke-gap-icons-DiamondRing:before {
content: "\e627";
}
.icon-stroke-gap-icons-Cup:before {
content: "\e628";
}
.icon-stroke-gap-icons-Crown:before {
content: "\e629";
}
.icon-stroke-gap-icons-Column:before {
content: "\e62a";
}
.icon-stroke-gap-icons-Click:before {
content: "\e62b";
}
.icon-stroke-gap-icons-Cassette:before {
content: "\e62c";
}
.icon-stroke-gap-icons-Bomb:before {
content: "\e62d";
}
.icon-stroke-gap-icons-BatteryLow:before {
content: "\e62e";
}
.icon-stroke-gap-icons-BatteryFull:before {
content: "\e62f";
}
.icon-stroke-gap-icons-Bascketball:before {
content: "\e630";
}
.icon-stroke-gap-icons-Astronaut:before {
content: "\e631";
}
.icon-stroke-gap-icons-WineGlass:before {
content: "\e632";
}
.icon-stroke-gap-icons-Water:before {
content: "\e633";
}
.icon-stroke-gap-icons-Wallet:before {
content: "\e634";
}
.icon-stroke-gap-icons-Umbrella:before {
content: "\e635";
}
.icon-stroke-gap-icons-TV:before {
content: "\e636";
}
.icon-stroke-gap-icons-TeaMug:before {
content: "\e637";
}
.icon-stroke-gap-icons-Tablet:before {
content: "\e638";
}
.icon-stroke-gap-icons-Soda:before {
content: "\e639";
}
.icon-stroke-gap-icons-SodaCan:before {
content: "\e63a";
}
.icon-stroke-gap-icons-SimCard:before {
content: "\e63b";
}
.icon-stroke-gap-icons-Signal:before {
content: "\e63c";
}
.icon-stroke-gap-icons-Shaker:before {
content: "\e63d";
}
.icon-stroke-gap-icons-Radio:before {
content: "\e63e";
}
.icon-stroke-gap-icons-Pizza:before {
content: "\e63f";
}
.icon-stroke-gap-icons-Phone:before {
content: "\e640";
}
.icon-stroke-gap-icons-Notebook:before {
content: "\e641";
}
.icon-stroke-gap-icons-Mug:before {
content: "\e642";
}
.icon-stroke-gap-icons-Mastercard:before {
content: "\e643";
}
.icon-stroke-gap-icons-Ipod:before {
content: "\e644";
}
.icon-stroke-gap-icons-Info:before {
content: "\e645";
}
.icon-stroke-gap-icons-Icecream2:before {
content: "\e646";
}
.icon-stroke-gap-icons-Icecream1:before {
content: "\e647";
}
.icon-stroke-gap-icons-Hourglass:before {
content: "\e648";
}
.icon-stroke-gap-icons-Help:before {
content: "\e649";
}
.icon-stroke-gap-icons-Goto:before {
content: "\e64a";
}
.icon-stroke-gap-icons-Glasses:before {
content: "\e64b";
}
.icon-stroke-gap-icons-Gameboy:before {
content: "\e64c";
}
.icon-stroke-gap-icons-ForkandKnife:before {
content: "\e64d";
}
.icon-stroke-gap-icons-Export:before {
content: "\e64e";
}
.icon-stroke-gap-icons-Exit:before {
content: "\e64f";
}
.icon-stroke-gap-icons-Espresso:before {
content: "\e650";
}
.icon-stroke-gap-icons-Drop:before {
content: "\e651";
}
.icon-stroke-gap-icons-Download:before {
content: "\e652";
}
.icon-stroke-gap-icons-Dollars:before {
content: "\e653";
}
.icon-stroke-gap-icons-Dollar:before {
content: "\e654";
}
.icon-stroke-gap-icons-DesktopMonitor:before {
content: "\e655";
}
.icon-stroke-gap-icons-Corkscrew:before {
content: "\e656";
}
.icon-stroke-gap-icons-CoffeeToGo:before {
content: "\e657";
}
.icon-stroke-gap-icons-Chart:before {
content: "\e658";
}
.icon-stroke-gap-icons-ChartUp:before {
content: "\e659";
}
.icon-stroke-gap-icons-ChartDown:before {
content: "\e65a";
}
.icon-stroke-gap-icons-Calculator:before {
content: "\e65b";
}
.icon-stroke-gap-icons-Bread:before {
content: "\e65c";
}
.icon-stroke-gap-icons-Bourbon:before {
content: "\e65d";
}
.icon-stroke-gap-icons-BottleofWIne:before {
content: "\e65e";
}
.icon-stroke-gap-icons-Bag:before {
content: "\e65f";
}
.icon-stroke-gap-icons-Arrow:before {
content: "\e660";
}
.icon-stroke-gap-icons-Antenna2:before {
content: "\e661";
}
.icon-stroke-gap-icons-Antenna1:before {
content: "\e662";
}
.icon-stroke-gap-icons-Anchor:before {
content: "\e663";
}
.icon-stroke-gap-icons-Wheelbarrow:before {
content: "\e664";
}
.icon-stroke-gap-icons-Webcam:before {
content: "\e665";
}
.icon-stroke-gap-icons-Unlinked:before {
content: "\e666";
}
.icon-stroke-gap-icons-Truck:before {
content: "\e667";
}
.icon-stroke-gap-icons-Timer:before {
content: "\e668";
}
.icon-stroke-gap-icons-Time:before {
content: "\e669";
}
.icon-stroke-gap-icons-StorageBox:before {
content: "\e66a";
}
.icon-stroke-gap-icons-Star:before {
content: "\e66b";
}
.icon-stroke-gap-icons-ShoppingCart:before {
content: "\e66c";
}
.icon-stroke-gap-icons-Shield:before {
content: "\e66d";
}
.icon-stroke-gap-icons-Seringe:before {
content: "\e66e";
}
.icon-stroke-gap-icons-Pulse:before {
content: "\e66f";
}
.icon-stroke-gap-icons-Plaster:before {
content: "\e670";
}
.icon-stroke-gap-icons-Plaine:before {
content: "\e671";
}
.icon-stroke-gap-icons-Pill:before {
content: "\e672";
}
.icon-stroke-gap-icons-PicnicBasket:before {
content: "\e673";
}
.icon-stroke-gap-icons-Phone2:before {
content: "\e674";
}
.icon-stroke-gap-icons-Pencil:before {
content: "\e675";
}
.icon-stroke-gap-icons-Pen:before {
content: "\e676";
}
.icon-stroke-gap-icons-PaperClip:before {
content: "\e677";
}
.icon-stroke-gap-icons-On-Off:before {
content: "\e678";
}
.icon-stroke-gap-icons-Mouse:before {
content: "\e679";
}
.icon-stroke-gap-icons-Megaphone:before {
content: "\e67a";
}
.icon-stroke-gap-icons-Linked:before {
content: "\e67b";
}
.icon-stroke-gap-icons-Keyboard:before {
content: "\e67c";
}
.icon-stroke-gap-icons-House:before {
content: "\e67d";
}
.icon-stroke-gap-icons-Heart:before {
content: "\e67e";
}
.icon-stroke-gap-icons-Headset:before {
content: "\e67f";
}
.icon-stroke-gap-icons-FullShoppingCart:before {
content: "\e680";
}
.icon-stroke-gap-icons-FullScreen:before {
content: "\e681";
}
.icon-stroke-gap-icons-Folder:before {
content: "\e682";
}
.icon-stroke-gap-icons-Floppy:before {
content: "\e683";
}
.icon-stroke-gap-icons-Files:before {
content: "\e684";
}
.icon-stroke-gap-icons-File:before {
content: "\e685";
}
.icon-stroke-gap-icons-FileBox:before {
content: "\e686";
}
.icon-stroke-gap-icons-ExitFullScreen:before {
content: "\e687";
}
.icon-stroke-gap-icons-EmptyBox:before {
content: "\e688";
}
.icon-stroke-gap-icons-Delete:before {
content: "\e689";
}
.icon-stroke-gap-icons-Controller:before {
content: "\e68a";
}
.icon-stroke-gap-icons-Compass:before {
content: "\e68b";
}
.icon-stroke-gap-icons-CompassTool:before {
content: "\e68c";
}
.icon-stroke-gap-icons-ClipboardText:before {
content: "\e68d";
}
.icon-stroke-gap-icons-ClipboardChart:before {
content: "\e68e";
}
.icon-stroke-gap-icons-ChemicalGlass:before {
content: "\e68f";
}
.icon-stroke-gap-icons-CD:before {
content: "\e690";
}
.icon-stroke-gap-icons-Carioca:before {
content: "\e691";
}
.icon-stroke-gap-icons-Car:before {
content: "\e692";
}
.icon-stroke-gap-icons-Book:before {
content: "\e693";
}
.icon-stroke-gap-icons-BigTruck:before {
content: "\e694";
}
.icon-stroke-gap-icons-Bicycle:before {
content: "\e695";
}
.icon-stroke-gap-icons-Wrench:before {
content: "\e696";
}
.icon-stroke-gap-icons-Web:before {
content: "\e697";
}
.icon-stroke-gap-icons-Watch:before {
content: "\e698";
}
.icon-stroke-gap-icons-Volume:before {
content: "\e699";
}
.icon-stroke-gap-icons-Video:before {
content: "\e69a";
}
.icon-stroke-gap-icons-Users:before {
content: "\e69b";
}
.icon-stroke-gap-icons-User:before {
content: "\e69c";
}
.icon-stroke-gap-icons-UploadCLoud:before {
content: "\e69d";
}
.icon-stroke-gap-icons-Typing:before {
content: "\e69e";
}
.icon-stroke-gap-icons-Tools:before {
content: "\e69f";
}
.icon-stroke-gap-icons-Tag:before {
content: "\e6a0";
}
.icon-stroke-gap-icons-Speedometter:before {
content: "\e6a1";
}
.icon-stroke-gap-icons-Share:before {
content: "\e6a2";
}
.icon-stroke-gap-icons-Settings:before {
content: "\e6a3";
}
.icon-stroke-gap-icons-Search:before {
content: "\e6a4";
}
.icon-stroke-gap-icons-Screwdriver:before {
content: "\e6a5";
}
.icon-stroke-gap-icons-Rolodex:before {
content: "\e6a6";
}
.icon-stroke-gap-icons-Ringer:before {
content: "\e6a7";
}
.icon-stroke-gap-icons-Resume:before {
content: "\e6a8";
}
.icon-stroke-gap-icons-Restart:before {
content: "\e6a9";
}
.icon-stroke-gap-icons-PowerOff:before {
content: "\e6aa";
}
.icon-stroke-gap-icons-Pointer:before {
content: "\e6ab";
}
.icon-stroke-gap-icons-Picture:before {
content: "\e6ac";
}
.icon-stroke-gap-icons-OpenedLock:before {
content: "\e6ad";
}
.icon-stroke-gap-icons-Notes:before {
content: "\e6ae";
}
.icon-stroke-gap-icons-Mute:before {
content: "\e6af";
}
.icon-stroke-gap-icons-Movie:before {
content: "\e6b0";
}
.icon-stroke-gap-icons-Microphone2:before {
content: "\e6b1";
}
.icon-stroke-gap-icons-Message:before {
content: "\e6b2";
}
.icon-stroke-gap-icons-MessageRight:before {
content: "\e6b3";
}
.icon-stroke-gap-icons-MessageLeft:before {
content: "\e6b4";
}
.icon-stroke-gap-icons-Menu:before {
content: "\e6b5";
}
.icon-stroke-gap-icons-Media:before {
content: "\e6b6";
}
.icon-stroke-gap-icons-Mail:before {
content: "\e6b7";
}
.icon-stroke-gap-icons-List:before {
content: "\e6b8";
}
.icon-stroke-gap-icons-Layers:before {
content: "\e6b9";
}
.icon-stroke-gap-icons-Key:before {
content: "\e6ba";
}
.icon-stroke-gap-icons-Imbox:before {
content: "\e6bb";
}
.icon-stroke-gap-icons-Eye:before {
content: "\e6bc";
}
.icon-stroke-gap-icons-Edit:before {
content: "\e6bd";
}
.icon-stroke-gap-icons-DSLRCamera:before {
content: "\e6be";
}
.icon-stroke-gap-icons-DownloadCloud:before {
content: "\e6bf";
}
.icon-stroke-gap-icons-CompactCamera:before {
content: "\e6c0";
}
.icon-stroke-gap-icons-Cloud:before {
content: "\e6c1";
}
.icon-stroke-gap-icons-ClosedLock:before {
content: "\e6c2";
}
.icon-stroke-gap-icons-Chart2:before {
content: "\e6c3";
}
.icon-stroke-gap-icons-Bulb:before {
content: "\e6c4";
}
.icon-stroke-gap-icons-Briefcase:before {
content: "\e6c5";
}
.icon-stroke-gap-icons-Blog:before {
content: "\e6c6";
}
.icon-stroke-gap-icons-Agenda:before {
content: "\e6c7";
}

View File

@@ -0,0 +1,294 @@
@font-face {
font-family: 'Climacons-Font';
src: url('#{$font-path}/climacons/Climacons-Font.woff2') format('woff2'),
url('#{$font-path}/climacons/Climacons-Font.woff') format('woff');
font-weight: normal;
font-style: normal;
}
.climacon:before {
font-family: 'Climacons-Font';
speak: none;
font-style: normal;
font-weight: normal;
line-height: 1;
-webkit-font-smoothing: antialiased;
}
.climacon.cloud:before {
content: "\e000";
}
.climacon.cloud.sun:before {
content: "\e001";
}
.climacon.cloud.moon:before {
content: "\e002";
}
.climacon.rain:before,
.climacon.rain.cloud:before {
content: "\e003";
}
.climacon.rain.sun:before,
.climacon.rain.cloud.sun:before {
content: "\e004";
}
.climacon.rain.moon:before,
.climacon.rain.cloud.moon:before {
content: "\e005";
}
.climacon.showers:before,
.climacon.showers.cloud:before {
content: "\e006";
}
.climacon.showers.sun:before,
.climacon.showers.cloud.sun:before {
content: "\e007";
}
.climacon.showers.moon:before,
.climacon.showers.cloud.moon:before {
content: "\e008";
}
.climacon.downpour:before,
.climacon.downpour.cloud:before {
content: "\e009";
}
.climacon.downpour.sun:before,
.climacon.downpour.cloud.sun:before {
content: "\e00a";
}
.climacon.downpour.moon:before,
.climacon.downpour.cloud.moon:before {
content: "\e00b";
}
.climacon.drizzle:before,
.climacon.drizzle.cloud:before {
content: "\e00c";
}
.climacon.drizzle.sun:before,
.climacon.drizzle.cloud.sun:before {
content: "\e00d";
}
.climacon.drizzle.moon:before,
.climacon.drizzle.cloud.moon:before {
content: "\e00e";
}
.climacon.sleet:before,
.climacon.sleet.cloud:before {
content: "\e00f";
}
.climacon.sleet.sun:before,
.climacon.sleet.cloud.sun:before {
content: "\e010";
}
.climacon.sleet.moon:before,
.climacon.sleet.cloud.moon:before {
content: "\e011";
}
.climacon.hail:before,
.climacon.hail.cloud:before {
content: "\e012";
}
.climacon.hail.sun:before,
.climacon.hail.cloud.sun:before {
content: "\e013";
}
.climacon.hail.moon:before,
.climacon.hail.cloud.moon:before {
content: "\e014";
}
.climacon.flurries:before,
.climacon.flurries.cloud:before {
content: "\e015";
}
.climacon.flurries.sun:before,
.climacon.flurries.cloud.sun:before {
content: "\e016";
}
.climacon.flurries.moon:before,
.climacon.flurries.cloud.moon:before {
content: "\e017";
}
.climacon.snow:before,
.climacon.snow.cloud:before {
content: "\e018";
}
.climacon.snow.sun:before,
.climacon.snow.cloud.sun:before {
content: "\e019";
}
.climacon.snow.moon:before,
.climacon.snow.cloud.moon:before {
content: "\e01a";
}
.climacon.fog:before,
.climacon.fog.cloud:before {
content: "\e01b";
}
.climacon.fog.sun:before,
.climacon.fog.cloud.sun:before {
content: "\e01c";
}
.climacon.fog.moon:before,
.climacon.fog.cloud.moon:before {
content: "\e01d";
}
.climacon.haze:before {
content: "\e01e";
}
.climacon.haze.sun:before {
content: "\e01f";
}
.climacon.haze.moon:before {
content: "\e020";
}
.climacon.wind:before {
content: "\e021";
}
.climacon.wind.cloud:before {
content: "\e022";
}
.climacon.wind.sun:before,
.climacon.wind.cloud.sun:before {
content: "\e023";
}
.climacon.wind.moon:before,
.climacon.wind.cloud.moon:before {
content: "\e024";
}
.climacon.lightning:before,
.climacon.lightning.cloud:before {
content: "\e025";
}
.climacon.lightning.sun:before,
.climacon.lightning.cloud.sun:before {
content: "\e026";
}
.climacon.lightning.moon:before,
.climacon.lightning.cloud.moon:before {
content: "\e027";
}
.climacon.sun:before {
content: "\e028";
}
.climacon.sun.set:before,
.climacon.sunset:before {
content: "\e029";
}
.climacon.sun.rise:before,
.climacon.sunrise:before {
content: "\e02a";
}
.climacon.sun.low:before,
.climacon.sun-low:before,
.climacon.low-sun:before {
content: "\e02b";
}
.climacon.sun.lower:before,
.climacon.sun-lower:before,
.climacon.lower-sun:before {
content: "\e02c";
}
.climacon.moon:before {
content: "\e02d";
}
.climacon.moon.new:before {
content: "\e02e";
}
.climacon.moon.waxing.crescent:before,
.climacon.moon.first-crescent:before {
content: "\e02f";
}
.climacon.moon.waxing.quarter:before,
.climacon.moon.first-quarter:before,
.climacon.moon.waxing.half:before,
.climacon.moon.first-half:before{
content: "\e030";
}
.climacon.moon.waxing.gibbous:before,
.climacon.moon.first-gibbous:before,
.climacon.moon.waxing.three-quarter:before,
.climacon.moon.first-three-quarter:before {
content: "\e031";
}
.climacon.moon.full:before {
content: "\e032";
}
.climacon.moon.waning.gibbous:before,
.climacon.moon.last-gibbous:before,
.climacon.moon.waning.three-quarter:before,
.climacon.moon.last-three-quarter:before {
content: "\e033";
}
.climacon.moon.waning.quarter:before,
.climacon.moon.last-quarter:before,
.climacon.moon.waning.half:before,
.climacon.moon.last-half:before {
content: "\e034";
}
.climacon.moon.waning.crescent:before,
.climacon.moon.last-crescent:before {
content: "\e035";
}
.climacon.snowflake:before {
content: "\e036";
}
.climacon.tornado:before {
content: "\e037";
}
.climacon.thermometer.empty:before,
.climacon.thermometer:before {
content: "\e038";
}
.climacon.thermometer.low:before {
content: "\e039";
}
.climacon.thermometer.medium-low:before {
content: "\e03a";
}
.climacon.thermometer.medium-high:before {
content: "\e03b";
}
.climacon.thermometer.high:before {
content: "\e03c";
}
.climacon.thermometer.full:before {
content: "\e03d";
}
.climacon.celcius:before {
content: "\e03e";
}
.climacon.farenheit:before {
content: "\e03f";
}
.climacon.compass:before {
content: "\e040";
}
.climacon.compass.north:before {
content: "\e041";
}
.climacon.compass.east:before {
content: "\e042";
}
.climacon.compass.south:before {
content: "\e043";
}
.climacon.compass.west:before {
content: "\e044";
}
.climacon.umbrella:before {
content: "\e045";
}
.climacon.sunglasses:before {
content: "\e046";
}
.climacon.cloud.cycle:before,
.climacon.cloud.refresh:before {
content: "\e047";
}
.climacon.cloud.down:before,
.climacon.cloud.download:before {
content: "\e048";
}
.climacon.cloud.up:before,
.climacon.cloud.upload:before {
content: "\e049";
}

416
sass/fonts/devicon/devicon.css Executable file
View File

@@ -0,0 +1,416 @@
@font-face {
font-family: 'devicon';
src: url('#{$font-path}/devicon/devicon.woff2') format('woff2'),
url('#{$font-path}/devicon/devicon.woff') format('woff');
font-weight: normal;
font-style: normal;
}
[class^="devicon-"], [class*=" devicon-"] {
font-family: 'devicon';
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;
}
/* PostgreSQL */
.devicon-postgresql-plain:before {
content: "\e648";
}
.devicon-postgresql-plain-wordmark:before {
content: "\e649";
}
.devicon-postgresql-plain.colored, .devicon-postgresql-plain-wordmark.colored {
color: #336791;
}
/* NodeJS */
.devicon-nodejs-plain:before {
content: "\e64a";
}
.devicon-nodejs-plain-wordmark:before {
content: "\e64b";
}
.devicon-nodejs-plain.colored, .devicon-nodejs-plain-wordmark.colored {
color: #83CD29;
}
/* MongoDB */
.devicon-mongodb-plain:before {
content: "\e64c";
}
.devicon-mongodb-plain-wordmark:before {
content: "\e64d";
}
.devicon-mongodb-plain.colored, .devicon-mongodb-plain-wordmark.colored {
color: #4FAA41;
}
/* Kraken JS */
.devicon-krakenjs-plain:before {
content: "\e64e";
}
.devicon-krakenjs-plain-wordmark:before {
content: "\e64f";
}
.devicon-krakenjs-plain.colored, .devicon-krakenjs-plain-wordmark.colored {
color: #0081C2;
}
/* Travis */
.devicon-travis-plain-wordmark:before {
content: "\e641";
}
.devicon-travis-plain:before {
content: "\e642";
}
.devicon-travis-plain-wordmark.colored, .devicon-travis-plain.colored {
color: #BB2031;
}
/* Linux */
.devicon-linux-plain:before {
content: "\e647";
}
.devicon-linux-plain.colored {
color: #000000;
}
/* Ubuntu */
.devicon-ubuntu-plain-wordmark:before {
content: "\e645";
}
.devicon-ubuntu-plain:before {
content: "\e646";
}
.devicon-ubuntu-plain-wordmark.colored, .devicon-ubuntu-plain.colored {
color: #DD4814;
}
/* Debian */
.devicon-debian-plain-wordmark:before {
content: "\e643";
}
.devicon-debian-plain:before {
content: "\e644";
}
.devicon-debian-plain-wordmark.colored, .devicon-debian-plain.colored {
color: #A80030;
}
/* Firefox */
.devicon-firefox-plain-wordmark:before {
content: "\e63f";
}
.devicon-firefox-plain:before {
content: "\e640";
}
.devicon-firefox-plain-wordmark.colored, .devicon-firefox-plain.colored {
color: #DD732A;
}
/* Chrome */
.devicon-chrome-plain-wordmark:before {
content: "\e63d";
}
.devicon-chrome-plain:before {
content: "\e63e";
}
.devicon-chrome-plain-wordmark.colored, .devicon-chrome-plain.colored {
color: #ce4e4e;
}
/* Backbone */
.devicon-backbone-line-wordmark:before {
content: "\e639";
}
.devicon-backbone-line:before {
content: "\e63a";
}
.devicon-backbone-plain-wordmark:before {
content: "\e63b";
}
.devicon-backbone-plain:before {
content: "\e63c";
}
.devicon-backbone-line-wordmark.colored, .devicon-backbone-line.colored, .devicon-backbone-plain-wordmark.colored, .devicon-backbone-plain.colored {
color: #002a41;
}
/* Ruby on rails */
.devicon-rails-plain-wordmark:before {
content: "\e637";
}
.devicon-rails-plain:before {
content: "\e638";
}
.devicon-rails-plain-wordmark.colored, .devicon-rails-plain.colored {
color: #a62c46;
}
/* Ruby */
.devicon-ruby-plain-wordmark:before {
content: "\e635";
}
.devicon-ruby-plain:before {
content: "\e636";
}
.devicon-ruby-plain-wordmark.colored, .devicon-ruby-plain.colored {
color: #d91404;
}
/* .NET */
.devicon-dot-net-plain-wordmark:before {
content: "\e633";
}
.devicon-dot-net-plain:before {
content: "\e634";
}
.devicon-dot-net-plain-wordmark.colored, .devicon-dot-net-plain.colored {
color: #1384c8;
}
/* Gulp */
.devicon-gulp-plain:before {
content: "\e632";
}
.devicon-gulp-plain.colored {
color: #eb4a4b;
}
/* Zend */
.devicon-zend-plain-wordmark:before {
content: "\e600";
}
.devicon-zend-plain:before {
content: "\e601";
}
.devicon-zend-plain-wordmark.colored, .devicon-zend-plain.colored {
color: #68b604;
}
/* Yii */
.devicon-yii-plain-wordmark:before {
content: "\e602";
}
.devicon-yii-plain:before {
content: "\e603";
}
.devicon-yii-plain-wordmark.colored, .devicon-yii-plain.colored {
color: #0073bb;
}
/* Wordpress */
.devicon-wordpress-plain-wordmark:before {
content: "\e604";
}
.devicon-wordpress-plain:before {
content: "\e605";
}
.devicon-wordpress-plain-wordmark.colored, .devicon-wordpress-plain.colored {
color: #494949;
}
/* Sass */
.devicon-sass-plain:before {
content: "\e606";
}
.devicon-sass-plain.colored {
color: #cc6699;
}
/* Python */
.devicon-python-plain-wordmark:before {
content: "\e607";
}
.devicon-python-plain:before {
content: "\e608";
}
.devicon-python-plain-wordmark.colored, .devicon-python-plain.colored {
color: #ffd845;
}
/* PHP */
.devicon-php-plain:before {
content: "\e609";
}
.devicon-php-plain.colored {
color: #6181b6;
}
/* Photoshop */
.devicon-photoshop-line:before {
content: "\e60a";
}
.devicon-photoshop-plain:before {
content: "\e60b";
}
.devicon-photoshop-line.colored, .devicon-photoshop-plain.colored {
color: #80b5e2;
}
/* MySQL */
.devicon-mysql-line:before {
content: "\e60d";
}
.devicon-mysql-line-wordmark:before {
content: "\e60c";
}
.devicon-mysql-line.colored, .devicon-mysql-line-wordmark.colored {
color: #00618a;
}
/* Less */
.devicon-less-plain:before {
content: "\e60e";
}
.devicon-less-plain.colored {
color: #2a4d80;
}
/* Laravel */
.devicon-laravel-plain-wordmark:before {
content: "\e60f";
}
.devicon-laravel-plain:before {
content: "\e610";
}
.devicon-laravel-plain-wordmark.colored, .devicon-laravel-plain.colored {
color: #fd4f31;
}
/* JQuery */
.devicon-jquery-plain-wordmark:before {
content: "\e611";
}
.devicon-jquery-plain:before {
content: "\e612";
}
.devicon-jquery-plain-wordmark.colored, .devicon-jquery-plain.colored {
color: #0769ad;
}
/* Javascript */
.devicon-javascript-plain:before {
content: "\e613";
}
.devicon-javascript-plain.colored {
color: #f0db4f;
}
/* Java */
.devicon-java-line-wordmark:before {
content: "\e614";
}
.devicon-java-line:before {
content: "\e615";
}
.devicon-java-line-wordmark.colored, .devicon-java-line.colored {
color: #ea2d2e;
}
/* Illustrator */
.devicon-illustrator-line:before {
content: "\e616";
}
.devicon-illustrator-plain:before {
content: "\e617";
}
.devicon-illustrator-line.colored, .devicon-illustrator-plain.colored {
color: #faa625;
}
/* HTML5 */
.devicon-html5-plain-wordmark:before {
content: "\e618";
}
.devicon-html5-plain:before {
content: "\e619";
}
.devicon-html5-plain-wordmark.colored, .devicon-html5-plain.colored {
color: #e54d26;
}
/* Grunt */
.devicon-grunt-line-wordmark:before {
content: "\e61a";
}
.devicon-grunt-line:before {
content: "\e61b";
}
.devicon-grunt-plain-wordmark:before {
content: "\e61c";
}
.devicon-grunt-plain:before {
content: "\e61d";
}
.devicon-grunt-line-wordmark.colored, .devicon-grunt-line.colored, .devicon-grunt-plain-wordmark.colored, .devicon-grunt-plain.colored {
color: #fcaa1a;
}
/* Git */
.devicon-git-plain-wordmark:before {
content: "\e61e";
}
.devicon-git-plain:before {
content: "\e61f";
}
.devicon-git-plain-wordmark.colored, .devicon-git-plain.colored {
color: #f34f29;
}
/* Foundation */
.devicon-foundation-plain-wordmark:before {
content: "\e620";
}
.devicon-foundation-plain:before {
content: "\e621";
}
.devicon-foundation-plain-wordmark.colored, .devicon-foundation-plain.colored {
color: #008cba;
}
/* Devicon */
.devicon-devicon-line:before {
content: "\e622";
}
.devicon-devicon-plain:before {
content: "\e623";
}
.devicon-devicon-line.colored, .devicon-devicon-plain.colored {
color: #60BE86;
}
/* CSS3 */
.devicon-css3-plain-wordmark:before {
content: "\e624";
}
.devicon-css3-plain:before {
content: "\e625";
}
.devicon-css3-plain-wordmark.colored, .devicon-css3-plain.colored {
color: #3d8fc6;
}
/* Codeigniter */
.devicon-codeigniter-plain-wordmark:before {
content: "\e626";
}
.devicon-codeigniter-plain:before {
content: "\e627";
}
.devicon-codeigniter-plain-wordmark.colored, .devicon-codeigniter-plain.colored {
color: #ee4323;
}
/* Bower */
.devicon-bower-line-wordmark:before {
content: "\e628";
}
.devicon-bower-line:before {
content: "\e629";
}
.devicon-bower-plain-wordmark:before {
content: "\e62a";
}
.devicon-bower-plain:before {
content: "\e62b";
}
.devicon-bower-line-wordmark.colored, .devicon-bower-line.colored, .devicon-bower-plain-wordmark.colored, .devicon-bower-plain.colored {
color: #ef5734;
}
/* Bootstrap */
.devicon-bootstrap-line-wordmark:before {
content: "\e62c";
}
.devicon-bootstrap-line:before {
content: "\e62d";
}
.devicon-bootstrap-plain-wordmark:before {
content: "\e62e";
}
.devicon-bootstrap-plain:before {
content: "\e62f";
}
.devicon-bootstrap-line-wordmark.colored, .devicon-bootstrap-line.colored, .devicon-bootstrap-plain-wordmark.colored, .devicon-bootstrap-plain.colored {
color: #59407f;
}
/* AngularJS */
.devicon-angularjs-plain-wordmark:before {
content: "\e630";
}
.devicon-angularjs-plain:before {
content: "\e631";
}
.devicon-angularjs-plain-wordmark.colored, .devicon-angularjs-plain.colored {
color: #c4473a;
}

View File

@@ -0,0 +1,404 @@
@font-face {
font-family: 'dripicons';
src: url('#{$font-path}/dripicons/dripicons.woff2') format('woff2'),
url('#{$font-path}/dripicons/dripicons.woff') format('woff');
font-weight: normal;
font-style: normal;
}
[class^="icon-dripicons-"]:before,
[class*=" icon-dripicons-"]:before {
font-family: "dripicons";
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none !important;
speak: none;
display: inline-block;
text-decoration: none;
width: 1em;
line-height: 1em;
-webkit-font-smoothing: antialiased;
}
.icon-dripicons-align-center:before {
content: "\e000";
}
.icon-dripicons-align-justify:before {
content: "\e001";
}
.icon-dripicons-align-left:before {
content: "\e002";
}
.icon-dripicons-align-right:before {
content: "\e003";
}
.icon-dripicons-arrow-down:before {
content: "\e004";
}
.icon-dripicons-arrow-left:before {
content: "\e005";
}
.icon-dripicons-arrow-thin-down:before {
content: "\e006";
}
.icon-dripicons-arrow-right:before {
content: "\e007";
}
.icon-dripicons-arrow-thin-left:before {
content: "\e008";
}
.icon-dripicons-arrow-thin-up:before {
content: "\e009";
}
.icon-dripicons-arrow-up:before {
content: "\e010";
}
.icon-dripicons-attachment:before {
content: "\e011";
}
.icon-dripicons-arrow-thin-right:before {
content: "\e012";
}
.icon-dripicons-code:before {
content: "\e013";
}
.icon-dripicons-cloud:before {
content: "\e014";
}
.icon-dripicons-chevron-right:before {
content: "\e015";
}
.icon-dripicons-chevron-up:before {
content: "\e016";
}
.icon-dripicons-chevron-down:before {
content: "\e017";
}
.icon-dripicons-chevron-left:before {
content: "\e018";
}
.icon-dripicons-camera:before {
content: "\e019";
}
.icon-dripicons-checkmark:before {
content: "\e020";
}
.icon-dripicons-calendar:before {
content: "\e021";
}
.icon-dripicons-clockwise:before {
content: "\e022";
}
.icon-dripicons-conversation:before {
content: "\e023";
}
.icon-dripicons-direction:before {
content: "\e024";
}
.icon-dripicons-cross:before {
content: "\e025";
}
.icon-dripicons-graph-line:before {
content: "\e026";
}
.icon-dripicons-gear:before {
content: "\e027";
}
.icon-dripicons-graph-bar:before {
content: "\e028";
}
.icon-dripicons-export:before {
content: "\e029";
}
.icon-dripicons-feed:before {
content: "\e030";
}
.icon-dripicons-folder:before {
content: "\e031";
}
.icon-dripicons-forward:before {
content: "\e032";
}
.icon-dripicons-folder-open:before {
content: "\e033";
}
.icon-dripicons-download:before {
content: "\e034";
}
.icon-dripicons-document-new:before {
content: "\e035";
}
.icon-dripicons-document-edit:before {
content: "\e036";
}
.icon-dripicons-document:before {
content: "\e037";
}
.icon-dripicons-gaming:before {
content: "\e038";
}
.icon-dripicons-graph-pie:before {
content: "\e039";
}
.icon-dripicons-heart:before {
content: "\e040";
}
.icon-dripicons-headset:before {
content: "\e041";
}
.icon-dripicons-help:before {
content: "\e042";
}
.icon-dripicons-information:before {
content: "\e043";
}
.icon-dripicons-loading:before {
content: "\e044";
}
.icon-dripicons-lock:before {
content: "\e045";
}
.icon-dripicons-location:before {
content: "\e046";
}
.icon-dripicons-lock-open:before {
content: "\e047";
}
.icon-dripicons-mail:before {
content: "\e048";
}
.icon-dripicons-map:before {
content: "\e049";
}
.icon-dripicons-media-loop:before {
content: "\e050";
}
.icon-dripicons-mobile-portrait:before {
content: "\e051";
}
.icon-dripicons-mobile-landscape:before {
content: "\e052";
}
.icon-dripicons-microphone:before {
content: "\e053";
}
.icon-dripicons-minus:before {
content: "\e054";
}
.icon-dripicons-message:before {
content: "\e055";
}
.icon-dripicons-menu:before {
content: "\e056";
}
.icon-dripicons-media-stop:before {
content: "\e057";
}
.icon-dripicons-media-shuffle:before {
content: "\e058";
}
.icon-dripicons-media-previous:before {
content: "\e059";
}
.icon-dripicons-media-play:before {
content: "\e060";
}
.icon-dripicons-media-next:before {
content: "\e061";
}
.icon-dripicons-media-pause:before {
content: "\e062";
}
.icon-dripicons-monitor:before {
content: "\e063";
}
.icon-dripicons-move:before {
content: "\e064";
}
.icon-dripicons-plus:before {
content: "\e065";
}
.icon-dripicons-phone:before {
content: "\e066";
}
.icon-dripicons-preview:before {
content: "\e067";
}
.icon-dripicons-print:before {
content: "\e068";
}
.icon-dripicons-media-record:before {
content: "\e069";
}
.icon-dripicons-music:before {
content: "\e070";
}
.icon-dripicons-home:before {
content: "\e071";
}
.icon-dripicons-question:before {
content: "\e072";
}
.icon-dripicons-reply:before {
content: "\e073";
}
.icon-dripicons-reply-all:before {
content: "\e074";
}
.icon-dripicons-return:before {
content: "\e075";
}
.icon-dripicons-retweet:before {
content: "\e076";
}
.icon-dripicons-search:before {
content: "\e077";
}
.icon-dripicons-view-thumb:before {
content: "\e078";
}
.icon-dripicons-view-list-large:before {
content: "\e079";
}
.icon-dripicons-view-list:before {
content: "\e080";
}
.icon-dripicons-upload:before {
content: "\e081";
}
.icon-dripicons-user-group:before {
content: "\e082";
}
.icon-dripicons-trash:before {
content: "\e083";
}
.icon-dripicons-user:before {
content: "\e084";
}
.icon-dripicons-thumbs-up:before {
content: "\e085";
}
.icon-dripicons-thumbs-down:before {
content: "\e086";
}
.icon-dripicons-tablet-portrait:before {
content: "\e087";
}
.icon-dripicons-tablet-landscape:before {
content: "\e088";
}
.icon-dripicons-tag:before {
content: "\e089";
}
.icon-dripicons-star:before {
content: "\e090";
}
.icon-dripicons-volume-full:before {
content: "\e091";
}
.icon-dripicons-volume-off:before {
content: "\e092";
}
.icon-dripicons-warning:before {
content: "\e093";
}
.icon-dripicons-window:before {
content: "\e094";
}

540
sass/fonts/feather/feather.css Executable file
View File

@@ -0,0 +1,540 @@
@font-face {
font-family: 'feather';
src: url('#{$font-path}/feather/feather.woff2') format('woff2'),
url('#{$font-path}/feather/feather.woff') format('woff');
font-weight: normal;
font-style: normal;
}
[class^="icon-feather-"],
[class*=" icon-feather-"] {
display: inline-block;
font-family: "feather";
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
speak: none;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.icon-feather-eye:before {
content: "\e000";
}
.icon-feather-paper-clip:before {
content: "\e001";
}
.icon-feather-mail:before {
content: "\e002";
}
.icon-feather-toggle:before {
content: "\e003";
}
.icon-feather-layout:before {
content: "\e004";
}
.icon-feather-link:before {
content: "\e005";
}
.icon-feather-bell:before {
content: "\e006";
}
.icon-feather-lock:before {
content: "\e007";
}
.icon-feather-unlock:before {
content: "\e008";
}
.icon-feather-ribbon:before {
content: "\e009";
}
.icon-feather-image:before {
content: "\e010";
}
.icon-feather-signal:before {
content: "\e011";
}
.icon-feather-target:before {
content: "\e012";
}
.icon-feather-clipboard:before {
content: "\e013";
}
.icon-feather-clock:before {
content: "\e014";
}
.icon-feather-watch:before {
content: "\e015";
}
.icon-feather-air-play:before {
content: "\e016";
}
.icon-feather-camera:before {
content: "\e017";
}
.icon-feather-video:before {
content: "\e018";
}
.icon-feather-disc:before {
content: "\e019";
}
.icon-feather-printer:before {
content: "\e020";
}
.icon-feather-monitor:before {
content: "\e021";
}
.icon-feather-server:before {
content: "\e022";
}
.icon-feather-cog:before {
content: "\e023";
}
.icon-feather-heart:before {
content: "\e024";
}
.icon-feather-paragraph:before {
content: "\e025";
}
.icon-feather-align-justify:before {
content: "\e026";
}
.icon-feather-align-left:before {
content: "\e027";
}
.icon-feather-align-center:before {
content: "\e028";
}
.icon-feather-align-right:before {
content: "\e029";
}
.icon-feather-book:before {
content: "\e030";
}
.icon-feather-layers:before {
content: "\e031";
}
.icon-feather-stack:before {
content: "\e032";
}
.icon-feather-stack-2:before {
content: "\e033";
}
.icon-feather-paper:before {
content: "\e034";
}
.icon-feather-paper-stack:before {
content: "\e035";
}
.icon-feather-search:before {
content: "\e036";
}
.icon-feather-zoom-in:before {
content: "\e037";
}
.icon-feather-zoom-out:before {
content: "\e038";
}
.icon-feather-reply:before {
content: "\e039";
}
.icon-feather-circle-plus:before {
content: "\e040";
}
.icon-feather-circle-minus:before {
content: "\e041";
}
.icon-feather-circle-check:before {
content: "\e042";
}
.icon-feather-circle-cross:before {
content: "\e043";
}
.icon-feather-square-plus:before {
content: "\e044";
}
.icon-feather-square-minus:before {
content: "\e045";
}
.icon-feather-square-check:before {
content: "\e046";
}
.icon-feather-square-cross:before {
content: "\e047";
}
.icon-feather-microphone:before {
content: "\e048";
}
.icon-feather-record:before {
content: "\e049";
}
.icon-feather-skip-back:before {
content: "\e050";
}
.icon-feather-rewind:before {
content: "\e051";
}
.icon-feather-play:before {
content: "\e052";
}
.icon-feather-pause:before {
content: "\e053";
}
.icon-feather-stop:before {
content: "\e054";
}
.icon-feather-fast-forward:before {
content: "\e055";
}
.icon-feather-skip-forward:before {
content: "\e056";
}
.icon-feather-shuffle:before {
content: "\e057";
}
.icon-feather-repeat:before {
content: "\e058";
}
.icon-feather-folder:before {
content: "\e059";
}
.icon-feather-umbrella:before {
content: "\e060";
}
.icon-feather-moon:before {
content: "\e061";
}
.icon-feather-thermometer:before {
content: "\e062";
}
.icon-feather-drop:before {
content: "\e063";
}
.icon-feather-sun:before {
content: "\e064";
}
.icon-feather-cloud:before {
content: "\e065";
}
.icon-feather-cloud-upload:before {
content: "\e066";
}
.icon-feather-cloud-download:before {
content: "\e067";
}
.icon-feather-upload:before {
content: "\e068";
}
.icon-feather-download:before {
content: "\e069";
}
.icon-feather-location:before {
content: "\e070";
}
.icon-feather-location-2:before {
content: "\e071";
}
.icon-feather-map:before {
content: "\e072";
}
.icon-feather-battery:before {
content: "\e073";
}
.icon-feather-head:before {
content: "\e074";
}
.icon-feather-briefcase:before {
content: "\e075";
}
.icon-feather-speech-bubble:before {
content: "\e076";
}
.icon-feather-anchor:before {
content: "\e077";
}
.icon-feather-globe:before {
content: "\e078";
}
.icon-feather-box:before {
content: "\e079";
}
.icon-feather-reload:before {
content: "\e080";
}
.icon-feather-share:before {
content: "\e081";
}
.icon-feather-marquee:before {
content: "\e082";
}
.icon-feather-marquee-plus:before {
content: "\e083";
}
.icon-feather-marquee-minus:before {
content: "\e084";
}
.icon-feather-tag:before {
content: "\e085";
}
.icon-feather-power:before {
content: "\e086";
}
.icon-feather-command:before {
content: "\e087";
}
.icon-feather-alt:before {
content: "\e088";
}
.icon-feather-esc:before {
content: "\e089";
}
.icon-feather-bar-graph:before {
content: "\e090";
}
.icon-feather-bar-graph-2:before {
content: "\e091";
}
.icon-feather-pie-graph:before {
content: "\e092";
}
.icon-feather-star:before {
content: "\e093";
}
.icon-feather-arrow-left:before {
content: "\e094";
}
.icon-feather-arrow-right:before {
content: "\e095";
}
.icon-feather-arrow-up:before {
content: "\e096";
}
.icon-feather-arrow-down:before {
content: "\e097";
}
.icon-feather-volume:before {
content: "\e098";
}
.icon-feather-mute:before {
content: "\e099";
}
.icon-feather-content-right:before {
content: "\e100";
}
.icon-feather-content-left:before {
content: "\e101";
}
.icon-feather-grid:before {
content: "\e102";
}
.icon-feather-grid-2:before {
content: "\e103";
}
.icon-feather-columns:before {
content: "\e104";
}
.icon-feather-loader:before {
content: "\e105";
}
.icon-feather-bag:before {
content: "\e106";
}
.icon-feather-ban:before {
content: "\e107";
}
.icon-feather-flag:before {
content: "\e108";
}
.icon-feather-trash:before {
content: "\e109";
}
.icon-feather-expand:before {
content: "\e110";
}
.icon-feather-contract:before {
content: "\e111";
}
.icon-feather-maximize:before {
content: "\e112";
}
.icon-feather-minimize:before {
content: "\e113";
}
.icon-feather-plus:before {
content: "\e114";
}
.icon-feather-minus:before {
content: "\e115";
}
.icon-feather-check:before {
content: "\e116";
}
.icon-feather-cross:before {
content: "\e117";
}
.icon-feather-move:before {
content: "\e118";
}
.icon-feather-delete:before {
content: "\e119";
}
.icon-feather-menu:before {
content: "\e120";
}
.icon-feather-archive:before {
content: "\e121";
}
.icon-feather-inbox:before {
content: "\e122";
}
.icon-feather-outbox:before {
content: "\e123";
}
.icon-feather-file:before {
content: "\e124";
}
.icon-feather-file-add:before {
content: "\e125";
}
.icon-feather-file-subtract:before {
content: "\e126";
}
.icon-feather-help:before {
content: "\e127";
}
.icon-feather-open:before {
content: "\e128";
}
.icon-feather-ellipsis:before {
content: "\e129";
}

170
sass/fonts/flatline/flatline.css Executable file
View File

@@ -0,0 +1,170 @@
@font-face {
font-family: 'flatline';
src: url('#{$font-path}/flatline/flatline.woff2') format('woff2'),
url('#{$font-path}/flatline/flatline.woff') format('woff');
font-weight: normal;
font-style: normal;
}
[class^="icon-flatline-"], [class*=" icon-flatline-"] {
font-family: 'flatline';
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;
}
.icon-flatline-download-alt:before {
content: "\e631";
}
.icon-flatline-tags:before {
content: "\e600";
}
.icon-flatline-tag:before {
content: "\e601";
}
.icon-flatline-book:before {
content: "\e602";
}
.icon-flatline-volume-up:before {
content: "\e603";
}
.icon-flatline-volume-off:before {
content: "\e604";
}
.icon-flatline-volume-down:before {
content: "\e605";
}
.icon-flatline-qrcode:before {
content: "\e606";
}
.icon-flatline-lock:before {
content: "\e607";
}
.icon-flatline-list-alt:before {
content: "\e608";
}
.icon-flatline-headphones:before {
content: "\e609";
}
.icon-flatline-flag:before {
content: "\e60a";
}
.icon-flatline-barcode:before {
content: "\e60b";
}
.icon-flatline-repeat:before {
content: "\e60c";
}
.icon-flatline-refresh:before {
content: "\e60d";
}
.icon-flatline-play-circle:before {
content: "\e60e";
}
.icon-flatline-inbox:before {
content: "\e60f";
}
.icon-flatline-zoom-out:before {
content: "\e610";
}
.icon-flatline-zoom-in:before {
content: "\e611";
}
.icon-flatline-user:before {
content: "\e612";
}
.icon-flatline-upload:before {
content: "\e613";
}
.icon-flatline-trash:before {
content: "\e614";
}
.icon-flatline-time:before {
content: "\e615";
}
.icon-flatline-th:before {
content: "\e616";
}
.icon-flatline-th-list:before {
content: "\e617";
}
.icon-flatline-th-large:before {
content: "\e618";
}
.icon-flatline-star:before {
content: "\e619";
}
.icon-flatline-star-empty:before {
content: "\e61a";
}
.icon-flatline-signal:before {
content: "\e61b";
}
.icon-flatline-search:before {
content: "\e61c";
}
.icon-flatline-road:before {
content: "\e61d";
}
.icon-flatline-remove:before {
content: "\e61e";
}
.icon-flatline-plus:before {
content: "\e61f";
}
.icon-flatline-pencil:before {
content: "\e620";
}
.icon-flatline-ok:before {
content: "\e621";
}
.icon-flatline-off:before {
content: "\e622";
}
.icon-flatline-music:before {
content: "\e623";
}
.icon-flatline-minus:before {
content: "\e624";
}
.icon-flatline-home:before {
content: "\e625";
}
.icon-flatline-heart:before {
content: "\e626";
}
.icon-flatline-heart-empty:before {
content: "\e627";
}
.icon-flatline-glass:before {
content: "\e628";
}
.icon-flatline-film:before {
content: "\e629";
}
.icon-flatline-file:before {
content: "\e62a";
}
.icon-flatline-euro:before {
content: "\e62b";
}
.icon-flatline-envelope:before {
content: "\e62c";
}
.icon-flatline-download:before {
content: "\e62d";
}
.icon-flatline-cog:before {
content: "\e62e";
}
.icon-flatline-cloud:before {
content: "\e62f";
}
.icon-flatline-asterisk:before {
content: "\e630";
}

2071
sass/fonts/fontello/fontello.css vendored Executable file

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

921
sass/fonts/ikons/ikons.css Executable file
View File

@@ -0,0 +1,921 @@
@font-face {
font-family: 'ikons';
src: url('#{$font-path}/ikons/ikons.woff2') format('woff2'),
url('#{$font-path}/ikons/ikons.woff') format('woff');
font-weight: normal;
font-style: normal;
}
[class^="icon-ikons-"]:before,
[class*=" icon-ikons-"]:before {
font-family: "ikons" !important;
font-style: normal !important;
font-weight: normal !important;
font-variant: normal !important;
text-transform: none !important;
speak: none;
line-height: 1;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.icon-ikons-alarm:before {
content: "a";
}
.icon-ikons-alt:before {
content: "b";
}
.icon-ikons-android:before {
content: "c";
}
.icon-ikons-apple:before {
content: "d";
}
.icon-ikons-appstore:before {
content: "e";
}
.icon-ikons-arrow-1:before {
content: "f";
}
.icon-ikons-arrow-2:before {
content: "g";
}
.icon-ikons-arrow-down:before {
content: "h";
}
.icon-ikons-arrow-left:before {
content: "i";
}
.icon-ikons-arrow-right:before {
content: "j";
}
.icon-ikons-arrow-up:before {
content: "k";
}
.icon-ikons-arrows:before {
content: "l";
}
.icon-ikons-arrows-horizontal:before {
content: "m";
}
.icon-ikons-arrows-horizontal-2:before {
content: "n";
}
.icon-ikons-arrows-vertical:before {
content: "o";
}
.icon-ikons-arrows-vertical-2:before {
content: "p";
}
.icon-ikons-bar-chart-1:before {
content: "q";
}
.icon-ikons-bar-chart-2:before {
content: "r";
}
.icon-ikons-bar-chart-3:before {
content: "s";
}
.icon-ikons-bar-graph:before {
content: "t";
}
.icon-ikons-basket:before {
content: "u";
}
.icon-ikons-basket-add:before {
content: "v";
}
.icon-ikons-basket-delete:before {
content: "w";
}
.icon-ikons-basket-ok:before {
content: "x";
}
.icon-ikons-basket-remove:before {
content: "y";
}
.icon-ikons-battery-1-3:before {
content: "z";
}
.icon-ikons-battery-2-3:before {
content: "A";
}
.icon-ikons-battery-empty:before {
content: "B";
}
.icon-ikons-battery-full:before {
content: "C";
}
.icon-ikons-behance:before {
content: "D";
}
.icon-ikons-bell:before {
content: "E";
}
.icon-ikons-bin:before {
content: "F";
}
.icon-ikons-block:before {
content: "G";
}
.icon-ikons-bluetooth:before {
content: "H";
}
.icon-ikons-book:before {
content: "I";
}
.icon-ikons-book-1:before {
content: "J";
}
.icon-ikons-book-2:before {
content: "K";
}
.icon-ikons-bookmark:before {
content: "L";
}
.icon-ikons-brightness-high:before {
content: "M";
}
.icon-ikons-brightness-low:before {
content: "N";
}
.icon-ikons-browser:before {
content: "O";
}
.icon-ikons-browser-add:before {
content: "P";
}
.icon-ikons-browser-delete:before {
content: "Q";
}
.icon-ikons-browser-layout-1:before {
content: "R";
}
.icon-ikons-browser-layout-2:before {
content: "S";
}
.icon-ikons-browser-layout-3:before {
content: "T";
}
.icon-ikons-browser-ok:before {
content: "U";
}
.icon-ikons-browser-remove:before {
content: "V";
}
.icon-ikons-bullseye:before {
content: "W";
}
.icon-ikons-calendar:before {
content: "X";
}
.icon-ikons-calendar-add:before {
content: "Y";
}
.icon-ikons-calendar-ok:before {
content: "Z";
}
.icon-ikons-camera:before {
content: "0";
}
.icon-ikons-cassette:before {
content: "1";
}
.icon-ikons-chart:before {
content: "2";
}
.icon-ikons-chart-1-2:before {
content: "3";
}
.icon-ikons-chart-1-4:before {
content: "4";
}
.icon-ikons-chart-1-8:before {
content: "5";
}
.icon-ikons-chart-3-4:before {
content: "6";
}
.icon-ikons-chart-3-8:before {
content: "7";
}
.icon-ikons-chart-5-8:before {
content: "8";
}
.icon-ikons-chart-7-8:before {
content: "9";
}
.icon-ikons-circle:before {
content: "!";
}
.icon-ikons-circle-delete:before {
content: "\"";
}
.icon-ikons-circle-down:before {
content: "#";
}
.icon-ikons-circle-fast-forward:before {
content: "$";
}
.icon-ikons-circle-left:before {
content: "%";
}
.icon-ikons-circle-minus:before {
content: "&";
}
.icon-ikons-circle-ok:before {
content: "'";
}
.icon-ikons-circle-pause:before {
content: "(";
}
.icon-ikons-circle-play:before {
content: ")";
}
.icon-ikons-circle-plus:before {
content: "*";
}
.icon-ikons-circle-rewind:before {
content: "+";
}
.icon-ikons-circle-right:before {
content: ",";
}
.icon-ikons-circle-skip-next:before {
content: "-";
}
.icon-ikons-circle-skip-previous:before {
content: ".";
}
.icon-ikons-circle-stop:before {
content: "/";
}
.icon-ikons-circle-up:before {
content: ":";
}
.icon-ikons-clip:before {
content: ";";
}
.icon-ikons-close:before {
content: "<";
}
.icon-ikons-cloud:before {
content: "=";
}
.icon-ikons-cloud-download:before {
content: ">";
}
.icon-ikons-cloud-fail:before {
content: "?";
}
.icon-ikons-cloud-ok:before {
content: "@";
}
.icon-ikons-cloud-upload:before {
content: "[";
}
.icon-ikons-code:before {
content: "]";
}
.icon-ikons-cog:before {
content: "^";
}
.icon-ikons-columns:before {
content: "_";
}
.icon-ikons-command:before {
content: "`";
}
.icon-ikons-compass:before {
content: "{";
}
.icon-ikons-computer-add:before {
content: "|";
}
.icon-ikons-computer-delete:before {
content: "}";
}
.icon-ikons-computer-download:before {
content: "~";
}
.icon-ikons-computer-ok:before {
content: "\\";
}
.icon-ikons-computer-remove:before {
content: "\e000";
}
.icon-ikons-computer-upload:before {
content: "\e001";
}
.icon-ikons-copy-1:before {
content: "\e002";
}
.icon-ikons-copy-2:before {
content: "\e003";
}
.icon-ikons-credit-card:before {
content: "\e004";
}
.icon-ikons-crop:before {
content: "\e005";
}
.icon-ikons-diskette:before {
content: "\e006";
}
.icon-ikons-document:before {
content: "\e007";
}
.icon-ikons-document-add:before {
content: "\e008";
}
.icon-ikons-document-delete:before {
content: "\e009";
}
.icon-ikons-document-download:before {
content: "\e00a";
}
.icon-ikons-document-ok:before {
content: "\e00b";
}
.icon-ikons-document-remove:before {
content: "\e00c";
}
.icon-ikons-document-upload:before {
content: "\e00d";
}
.icon-ikons-documents:before {
content: "\e00e";
}
.icon-ikons-download:before {
content: "\e00f";
}
.icon-ikons-dribbble:before {
content: "\e010";
}
.icon-ikons-drop:before {
content: "\e011";
}
.icon-ikons-dropbox:before {
content: "\e012";
}
.icon-ikons-eject:before {
content: "\e013";
}
.icon-ikons-equalizer:before {
content: "\e014";
}
.icon-ikons-facebook-1:before {
content: "\e015";
}
.icon-ikons-facebook-2:before {
content: "\e016";
}
.icon-ikons-fast-forward:before {
content: "\e017";
}
.icon-ikons-first-aid:before {
content: "\e018";
}
.icon-ikons-folder:before {
content: "\e019";
}
.icon-ikons-folder-add:before {
content: "\e01a";
}
.icon-ikons-folder-delete:before {
content: "\e01b";
}
.icon-ikons-folder-ok:before {
content: "\e01c";
}
.icon-ikons-folder-remove:before {
content: "\e01d";
}
.icon-ikons-followers:before {
content: "\e01e";
}
.icon-ikons-following:before {
content: "\e01f";
}
.icon-ikons-font-size-down:before {
content: "\e020";
}
.icon-ikons-font-size-up:before {
content: "\e021";
}
.icon-ikons-forrst:before {
content: "\e022";
}
.icon-ikons-foursquare:before {
content: "\e023";
}
.icon-ikons-frame:before {
content: "\e024";
}
.icon-ikons-globe:before {
content: "\e025";
}
.icon-ikons-google-plus:before {
content: "\e026";
}
.icon-ikons-graph-fall:before {
content: "\e027";
}
.icon-ikons-graph-rise:before {
content: "\e028";
}
.icon-ikons-grid-1:before {
content: "\e029";
}
.icon-ikons-grid-2:before {
content: "\e02a";
}
.icon-ikons-hashtag:before {
content: "\e02b";
}
.icon-ikons-heart:before {
content: "\e02c";
}
.icon-ikons-home:before {
content: "\e02d";
}
.icon-ikons-imac:before {
content: "\e02e";
}
.icon-ikons-image:before {
content: "\e02f";
}
.icon-ikons-inbox:before {
content: "\e030";
}
.icon-ikons-inbox-in:before {
content: "\e031";
}
.icon-ikons-inbox-out:before {
content: "\e032";
}
.icon-ikons-instagram:before {
content: "\e033";
}
.icon-ikons-ipad:before {
content: "\e034";
}
.icon-ikons-iphone:before {
content: "\e035";
}
.icon-ikons-layers:before {
content: "\e036";
}
.icon-ikons-line-graph:before {
content: "\e037";
}
.icon-ikons-line-graph-square:before {
content: "\e038";
}
.icon-ikons-link:before {
content: "\e039";
}
.icon-ikons-linkedin:before {
content: "\e03a";
}
.icon-ikons-list:before {
content: "\e03b";
}
.icon-ikons-list-2:before {
content: "\e03c";
}
.icon-ikons-loading:before {
content: "\e03d";
}
.icon-ikons-location:before {
content: "\e03e";
}
.icon-ikons-lock:before {
content: "\e03f";
}
.icon-ikons-login:before {
content: "\e040";
}
.icon-ikons-logout:before {
content: "\e041";
}
.icon-ikons-macbook:before {
content: "\e042";
}
.icon-ikons-magnifying-glass:before {
content: "\e043";
}
.icon-ikons-magnifying-glass-add:before {
content: "\e044";
}
.icon-ikons-magnifying-glass-remove:before {
content: "\e045";
}
.icon-ikons-mail:before {
content: "\e046";
}
.icon-ikons-mail-incoming:before {
content: "\e047";
}
.icon-ikons-mail-outgoing:before {
content: "\e048";
}
.icon-ikons-map:before {
content: "\e049";
}
.icon-ikons-map-add:before {
content: "\e04a";
}
.icon-ikons-map-delete:before {
content: "\e04b";
}
.icon-ikons-map-ok:before {
content: "\e04c";
}
.icon-ikons-map-remove:before {
content: "\e04d";
}
.icon-ikons-microphone:before {
content: "\e04e";
}
.icon-ikons-microphone-off:before {
content: "\e04f";
}
.icon-ikons-microsoft:before {
content: "\e050";
}
.icon-ikons-minus:before {
content: "\e051";
}
.icon-ikons-more:before {
content: "\e052";
}
.icon-ikons-more-2:before {
content: "\e053";
}
.icon-ikons-moustache:before {
content: "\e054";
}
.icon-ikons-music:before {
content: "\e055";
}
.icon-ikons-notepad:before {
content: "\e056";
}
.icon-ikons-notepad-add:before {
content: "\e057";
}
.icon-ikons-notepad-delete:before {
content: "\e058";
}
.icon-ikons-notepad-ok:before {
content: "\e059";
}
.icon-ikons-notepad-remove:before {
content: "\e05a";
}
.icon-ikons-pause:before {
content: "\e05b";
}
.icon-ikons-paypal:before {
content: "\e05c";
}
.icon-ikons-pen-1:before {
content: "\e05d";
}
.icon-ikons-pen-2:before {
content: "\e05e";
}
.icon-ikons-pen-3:before {
content: "\e05f";
}
.icon-ikons-picture:before {
content: "\e060";
}
.icon-ikons-pie-chart:before {
content: "\e061";
}
.icon-ikons-pill:before {
content: "\e062";
}
.icon-ikons-pin-1:before {
content: "\e063";
}
.icon-ikons-pin-2:before {
content: "\e064";
}
.icon-ikons-pin-zoom-in:before {
content: "\e065";
}
.icon-ikons-pin-zoom-out:before {
content: "\e066";
}
.icon-ikons-pinterest-1:before {
content: "\e067";
}
.icon-ikons-pinterest-2:before {
content: "\e068";
}
.icon-ikons-play:before {
content: "\e069";
}
.icon-ikons-plug:before {
content: "\e06a";
}
.icon-ikons-plus:before {
content: "\e06b";
}
.icon-ikons-polaroid:before {
content: "\e06c";
}
.icon-ikons-polaroids:before {
content: "\e06d";
}
.icon-ikons-power:before {
content: "\e06e";
}
.icon-ikons-presentation:before {
content: "\e06f";
}
.icon-ikons-printer:before {
content: "\e070";
}
.icon-ikons-progress:before {
content: "\e071";
}
.icon-ikons-record:before {
content: "\e072";
}
.icon-ikons-repeat:before {
content: "\e073";
}
.icon-ikons-repeat-1:before {
content: "\e074";
}
.icon-ikons-repeat-2:before {
content: "\e075";
}
.icon-ikons-resize-1:before {
content: "\e076";
}
.icon-ikons-resize-2:before {
content: "\e077";
}
.icon-ikons-resize-3:before {
content: "\e078";
}
.icon-ikons-resize-4:before {
content: "\e079";
}
.icon-ikons-resize-5:before {
content: "\e07a";
}
.icon-ikons-resize-6:before {
content: "\e07b";
}
.icon-ikons-rewind:before {
content: "\e07c";
}
.icon-ikons-rss:before {
content: "\e07d";
}
.icon-ikons-screen-expand-1:before {
content: "\e07e";
}
.icon-ikons-screen-expand-2:before {
content: "\e07f";
}
.icon-ikons-screen-expand-3:before {
content: "\e080";
}
.icon-ikons-share:before {
content: "\e081";
}
.icon-ikons-share-2:before {
content: "\e082";
}
.icon-ikons-shop:before {
content: "\e083";
}
.icon-ikons-shopping-bag:before {
content: "\e084";
}
.icon-ikons-shopping-cart:before {
content: "\e085";
}
.icon-ikons-shopping-cart-add:before {
content: "\e086";
}
.icon-ikons-shopping-cart-delete:before {
content: "\e087";
}
.icon-ikons-shopping-cart-ok:before {
content: "\e088";
}
.icon-ikons-shopping-cart-remove:before {
content: "\e089";
}
.icon-ikons-shuffle:before {
content: "\e08a";
}
.icon-ikons-skip-next:before {
content: "\e08b";
}
.icon-ikons-skip-previous:before {
content: "\e08c";
}
.icon-ikons-skype:before {
content: "\e08d";
}
.icon-ikons-slideshow:before {
content: "\e08e";
}
.icon-ikons-speech-1:before {
content: "\e08f";
}
.icon-ikons-speech-2:before {
content: "\e090";
}
.icon-ikons-speech-3:before {
content: "\e091";
}
.icon-ikons-speech-4:before {
content: "\e092";
}
.icon-ikons-speech-bubble-1:before {
content: "\e093";
}
.icon-ikons-speech-bubble-2:before {
content: "\e094";
}
.icon-ikons-speech-bubbles:before {
content: "\e095";
}
.icon-ikons-spotify:before {
content: "\e096";
}
.icon-ikons-square:before {
content: "\e097";
}
.icon-ikons-square-add:before {
content: "\e098";
}
.icon-ikons-square-dashed:before {
content: "\e099";
}
.icon-ikons-square-delete:before {
content: "\e09a";
}
.icon-ikons-square-down:before {
content: "\e09b";
}
.icon-ikons-square-left:before {
content: "\e09c";
}
.icon-ikons-square-ok:before {
content: "\e09d";
}
.icon-ikons-square-remove:before {
content: "\e09e";
}
.icon-ikons-square-right:before {
content: "\e09f";
}
.icon-ikons-square-up:before {
content: "\e0a0";
}
.icon-ikons-star:before {
content: "\e0a1";
}
.icon-ikons-stop:before {
content: "\e0a2";
}
.icon-ikons-suitcase:before {
content: "\e0a3";
}
.icon-ikons-tag:before {
content: "\e0a4";
}
.icon-ikons-tags:before {
content: "\e0a5";
}
.icon-ikons-target:before {
content: "\e0a6";
}
.icon-ikons-terminal:before {
content: "\e0a7";
}
.icon-ikons-text-center:before {
content: "\e0a8";
}
.icon-ikons-text-justify:before {
content: "\e0a9";
}
.icon-ikons-text-left:before {
content: "\e0aa";
}
.icon-ikons-text-right:before {
content: "\e0ab";
}
.icon-ikons-tick:before {
content: "\e0ac";
}
.icon-ikons-time:before {
content: "\e0ad";
}
.icon-ikons-timer:before {
content: "\e0ae";
}
.icon-ikons-tumblr:before {
content: "\e0af";
}
.icon-ikons-twitter:before {
content: "\e0b0";
}
.icon-ikons-unlock:before {
content: "\e0b1";
}
.icon-ikons-upload:before {
content: "\e0b2";
}
.icon-ikons-user:before {
content: "\e0b3";
}
.icon-ikons-user-add:before {
content: "\e0b4";
}
.icon-ikons-user-circle:before {
content: "\e0b5";
}
.icon-ikons-user-delete:before {
content: "\e0b6";
}
.icon-ikons-user-ok:before {
content: "\e0b7";
}
.icon-ikons-user-remove:before {
content: "\e0b8";
}
.icon-ikons-user-square:before {
content: "\e0b9";
}
.icon-ikons-users:before {
content: "\e0ba";
}
.icon-ikons-view:before {
content: "\e0bb";
}
.icon-ikons-view-off:before {
content: "\e0bc";
}
.icon-ikons-vimeo:before {
content: "\e0bd";
}
.icon-ikons-voicemail:before {
content: "\e0be";
}
.icon-ikons-volume-1:before {
content: "\e0bf";
}
.icon-ikons-volume-2:before {
content: "\e0c0";
}
.icon-ikons-volume-3:before {
content: "\e0c1";
}
.icon-ikons-volume-down:before {
content: "\e0c2";
}
.icon-ikons-volume-mute:before {
content: "\e0c3";
}
.icon-ikons-volume-off:before {
content: "\e0c4";
}
.icon-ikons-volume-up:before {
content: "\e0c5";
}
.icon-ikons-warning:before {
content: "\e0c6";
}
.icon-ikons-wifi-1:before {
content: "\e0c7";
}
.icon-ikons-wifi-2:before {
content: "\e0c8";
}
.icon-ikons-wifi-3:before {
content: "\e0c9";
}
.icon-ikons-windows:before {
content: "\e0ca";
}
.icon-ikons-youtube:before {
content: "\e0cb";
}
.icon-ikons-zoom-in:before {
content: "\e0cc";
}
.icon-ikons-zoom-out:before {
content: "\e0cd";
}

39
sass/fonts/lato/lato.css Executable file
View File

@@ -0,0 +1,39 @@
@font-face {
font-family: 'Lato';
src: url('#{$font-path}/lato/lato-bold-webfont.woff2') format('woff2'),
url('#{$font-path}/lato/lato-bold-webfont.woff') format('woff');
font-weight: bold;
font-style: normal;
}
@font-face {
font-family: 'Lato';
src: url('#{$font-path}/lato/lato-bolditalic-webfont.woff2') format('woff2'),
url('#{$font-path}/lato/lato-bolditalic-webfont.woff') format('woff');
font-weight: bold;
font-style: italic;
}
@font-face {
font-family: 'Lato';
src: url('#{$font-path}/lato/lato-italic-webfont.woff2') format('woff2'),
url('#{$font-path}/lato/lato-italic-webfont.woff') format('woff');
font-weight: normal;
font-style: italic;
}
@font-face {
font-family: 'Lato';
src: url('#{$font-path}/lato/lato-light-webfont.woff2') format('woff2'),
url('#{$font-path}/lato/lato-light-webfont.woff') format('woff');
font-weight: 300;
font-style: normal;
}
@font-face {
font-family: 'Lato';
src: url('#{$font-path}/lato/lato-regular-webfont.woff2') format('woff2'),
url('#{$font-path}/lato/lato-regular-webfont.woff') format('woff');
font-weight: normal;
font-style: normal;
}

131
sass/fonts/mfizz/mfizz.css Executable file
View File

@@ -0,0 +1,131 @@
/*
* Font Mfizz v1.2
* Copyright 2013 Mfizz Inc, Joe Lauer
* MIT License
*
* Project: http://mfizz.com/oss/font-mfizz
*
* The font designed for technology and software geeks representing programming
* languages, operating systems, software engineering, and technology.
*
* Mfizz Inc
* Web: http://mfizz.com/
* Twitter: http://twitter.com/mfizz_inc
*
* Joe Lauer
* Web: http://lauer.bz/
* Twitter: http://twitter.com/jjlauer
*/
@font-face {
font-family: 'mfizz';
src: url('#{$font-path}/mfizz/mfizz.woff2') format('woff2'),
url('#{$font-path}/mfizz/mfizz.woff') format('woff');
font-weight: normal;
font-style: normal;
}
[class^="icon-mfizz-"]:before,
[class*=" icon-mfizz-"]:before {
font-family: "mfizz" !important;
font-style: normal !important;
font-weight: normal !important;
font-variant: normal !important;
text-transform: none !important;
speak: none;
line-height: 1;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.icon-mfizz-microscope:before { content: "\f100"; }
.icon-mfizz-cplusplus:before { content: "\f101"; }
.icon-mfizz-wireless:before { content: "\f102"; }
.icon-mfizz-fire-alt:before { content: "\f103"; }
.icon-mfizz-mobile-device:before { content: "\f104"; }
.icon-mfizz-objc:before { content: "\f105"; }
.icon-mfizz-redhat:before { content: "\f106"; }
.icon-mfizz-freebsd:before { content: "\f107"; }
.icon-mfizz-heroku:before { content: "\f108"; }
.icon-mfizz-python:before { content: "\f109"; }
.icon-mfizz-java:before { content: "\f10a"; }
.icon-mfizz-satellite:before { content: "\f10b"; }
.icon-mfizz-debian:before { content: "\f10c"; }
.icon-mfizz-grails:before { content: "\f10d"; }
.icon-mfizz-c:before { content: "\f10e"; }
.icon-mfizz-postgres:before { content: "\f10f"; }
.icon-mfizz-database-alt2:before { content: "\f110"; }
.icon-mfizz-raspberrypi:before { content: "\f111"; }
.icon-mfizz-nginx:before { content: "\f112"; }
.icon-mfizz-ruby-on-rails:before { content: "\f113"; }
.icon-mfizz-redis:before { content: "\f114"; }
.icon-mfizz-scala:before { content: "\f115"; }
.icon-mfizz-gnome:before { content: "\f116"; }
.icon-mfizz-perl:before { content: "\f117"; }
.icon-mfizz-mysql:before { content: "\f118"; }
.icon-mfizz-fedora:before { content: "\f119"; }
.icon-mfizz-ghost:before { content: "\f11a"; }
.icon-mfizz-google:before { content: "\f11b"; }
.icon-mfizz-netbsd:before { content: "\f11c"; }
.icon-mfizz-aws:before { content: "\f11d"; }
.icon-mfizz-bomb:before { content: "\f11e"; }
.icon-mfizz-looking:before { content: "\f11f"; }
.icon-mfizz-ruby:before { content: "\f120"; }
.icon-mfizz-mysql-alt:before { content: "\f121"; }
.icon-mfizz-playframework-alt:before { content: "\f122"; }
.icon-mfizz-osx:before { content: "\f123"; }
.icon-mfizz-database:before { content: "\f124"; }
.icon-mfizz-database-alt:before { content: "\f125"; }
.icon-mfizz-shell:before { content: "\f126"; }
.icon-mfizz-script:before { content: "\f127"; }
.icon-mfizz-antenna:before { content: "\f128"; }
.icon-mfizz-coffee-bean:before { content: "\f129"; }
.icon-mfizz-scala-alt:before { content: "\f12a"; }
.icon-mfizz-platter:before { content: "\f12b"; }
.icon-mfizz-java-duke:before { content: "\f12c"; }
.icon-mfizz-iphone:before { content: "\f12d"; }
.icon-mfizz-script-alt:before { content: "\f12e"; }
.icon-mfizz-google-alt:before { content: "\f12f"; }
.icon-mfizz-haskell:before { content: "\f130"; }
.icon-mfizz-mariadb:before { content: "\f131"; }
.icon-mfizz-phone-retro:before { content: "\f132"; }
.icon-mfizz-phone-alt:before { content: "\f133"; }
.icon-mfizz-csharp:before { content: "\f134"; }
.icon-mfizz-php:before { content: "\f135"; }
.icon-mfizz-postgres-alt:before { content: "\f136"; }
.icon-mfizz-html:before { content: "\f137"; }
.icon-mfizz-mfizz:before { content: "\f138"; }
.icon-mfizz-apache:before { content: "\f139"; }
.icon-mfizz-hadoop:before { content: "\f13a"; }
.icon-mfizz-ruby-on-rails-alt:before { content: "\f13b"; }
.icon-mfizz-mobile-phone-broadcast:before { content: "\f13c"; }
.icon-mfizz-css:before { content: "\f13d"; }
.icon-mfizz-playframework:before { content: "\f13e"; }
.icon-mfizz-clojure:before { content: "\f13f"; }
.icon-mfizz-mobile-phone-alt:before { content: "\f140"; }
.icon-mfizz-suse:before { content: "\f141"; }
.icon-mfizz-java-bold:before { content: "\f142"; }
.icon-mfizz-nginx-alt:before { content: "\f143"; }
.icon-mfizz-nginx-alt2:before { content: "\f144"; }
.icon-mfizz-linux-mint:before { content: "\f145"; }
.icon-mfizz-dreamhost:before { content: "\f146"; }
.icon-mfizz-blackberry:before { content: "\f147"; }
.icon-mfizz-javascript:before { content: "\f148"; }
.icon-mfizz-ubuntu:before { content: "\f149"; }
.icon-mfizz-php-alt:before { content: "\f14a"; }
.icon-mfizz-centos:before { content: "\f14b"; }
.icon-mfizz-nodejs:before { content: "\f14c"; }
.icon-mfizz-splatter:before { content: "\f14d"; }
.icon-mfizz-3dprint:before { content: "\f14e"; }
.icon-mfizz-line-graph:before { content: "\f14f"; }
.icon-mfizz-cassandra:before { content: "\f150"; }
.icon-mfizz-solaris:before { content: "\f151"; }
.icon-mfizz-jetty:before { content: "\f152"; }
.icon-mfizz-tomcat:before { content: "\f153"; }
.icon-mfizz-oracle:before { content: "\f154"; }
.icon-mfizz-oracle-alt:before { content: "\f155"; }
.icon-mfizz-mssql:before { content: "\f156"; }
.icon-mfizz-google-developers:before { content: "\f157"; }
.icon-mfizz-google-code:before { content: "\f158"; }
.icon-mfizz-kde:before { content: "\f159"; }
.icon-mfizz-grails-alt:before { content: "\f15a"; }

263
sass/fonts/nargela/nargela.css Executable file
View File

@@ -0,0 +1,263 @@
@font-face {
font-family: 'icon-nargela';
src: url('#{$font-path}/nargela/nargela.woff2') format('woff2'),
url('#{$font-path}/nargela/nargela.woff') format('woff');
font-weight: normal;
font-style: normal;
}
[class^="icon-nargela-"]:before,
[class*=" icon-nargela-"]:before {
font-family: "icon-nargela" !important;
font-style: normal !important;
font-weight: normal !important;
font-variant: normal !important;
text-transform: none !important;
speak: none;
line-height: 1;
display: inline-block;
transform: scale(1.2);
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.icon-nargela-align-left:before {
content: "a";
}
.icon-nargela-align-middle:before {
content: "b";
}
.icon-nargela-align-right:before {
content: "c";
}
.icon-nargela-arrow:before {
content: "d";
}
.icon-nargela-battery:before {
content: "e";
}
.icon-nargela-bell:before {
content: "f";
}
.icon-nargela-blank:before {
content: "g";
}
.icon-nargela-bluetooth:before {
content: "h";
}
.icon-nargela-browser:before {
content: "i";
}
.icon-nargela-camera:before {
content: "j";
}
.icon-nargela-cart:before {
content: "k";
}
.icon-nargela-chat:before {
content: "l";
}
.icon-nargela-check-mark:before {
content: "m";
}
.icon-nargela-clock:before {
content: "n";
}
.icon-nargela-close:before {
content: "o";
}
.icon-nargela-cocktail:before {
content: "p";
}
.icon-nargela-compass:before {
content: "q";
}
.icon-nargela-connection:before {
content: "r";
}
.icon-nargela-cursor:before {
content: "s";
}
.icon-nargela-display:before {
content: "t";
}
.icon-nargela-download:before {
content: "u";
}
.icon-nargela-drop:before {
content: "v";
}
.icon-nargela-empty-blank:before {
content: "w";
}
.icon-nargela-flag:before {
content: "x";
}
.icon-nargela-forward:before {
content: "y";
}
.icon-nargela-forward-2:before {
content: "z";
}
.icon-nargela-gift:before {
content: "A";
}
.icon-nargela-graphic:before {
content: "B";
}
.icon-nargela-grid:before {
content: "C";
}
.icon-nargela-hamburger-menu:before {
content: "D";
}
.icon-nargela-headphones:before {
content: "E";
}
.icon-nargela-heart:before {
content: "F";
}
.icon-nargela-home:before {
content: "G";
}
.icon-nargela-hyperlink:before {
content: "H";
}
.icon-nargela-justify-all:before {
content: "I";
}
.icon-nargela-key:before {
content: "J";
}
.icon-nargela-label:before {
content: "K";
}
.icon-nargela-launch:before {
content: "L";
}
.icon-nargela-lock-closed:before {
content: "M";
}
.icon-nargela-lock-open:before {
content: "N";
}
.icon-nargela-magnet:before {
content: "O";
}
.icon-nargela-magnifying-glass:before {
content: "P";
}
.icon-nargela-magnifying-glass-2:before {
content: "Q";
}
.icon-nargela-magnifying-glass-minus:before {
content: "R";
}
.icon-nargela-magnifying-glass-plus:before {
content: "S";
}
.icon-nargela-mail:before {
content: "T";
}
.icon-nargela-map:before {
content: "U";
}
.icon-nargela-map-pin:before {
content: "V";
}
.icon-nargela-maximize:before {
content: "W";
}
.icon-nargela-microphone:before {
content: "X";
}
.icon-nargela-minimize:before {
content: "Y";
}
.icon-nargela-minus:before {
content: "Z";
}
.icon-nargela-mouse:before {
content: "0";
}
.icon-nargela-music:before {
content: "1";
}
.icon-nargela-navigation:before {
content: "2";
}
.icon-nargela-notifications:before {
content: "3";
}
.icon-nargela-pause:before {
content: "4";
}
.icon-nargela-pencil:before {
content: "5";
}
.icon-nargela-play:before {
content: "6";
}
.icon-nargela-plus:before {
content: "7";
}
.icon-nargela-power:before {
content: "8";
}
.icon-nargela-print:before {
content: "9";
}
.icon-nargela-repeat:before {
content: "!";
}
.icon-nargela-rule:before {
content: "\"";
}
.icon-nargela-selection:before {
content: "#";
}
.icon-nargela-settings:before {
content: "$";
}
.icon-nargela-share:before {
content: "%";
}
.icon-nargela-shuffle:before {
content: "&";
}
.icon-nargela-sound-minus:before {
content: "'";
}
.icon-nargela-sound-plus:before {
content: "(";
}
.icon-nargela-speaker:before {
content: ")";
}
.icon-nargela-star:before {
content: "*";
}
.icon-nargela-statistics:before {
content: "+";
}
.icon-nargela-stop:before {
content: ",";
}
.icon-nargela-sun:before {
content: "-";
}
.icon-nargela-trash-bin:before {
content: ".";
}
.icon-nargela-umbrella:before {
content: "/";
}
.icon-nargela-upload:before {
content: ":";
}
.icon-nargela-video-camera:before {
content: ";";
}
.icon-nargela-wifi:before {
content: "<";
}

471
sass/fonts/outlined/outlined.css Executable file
View File

@@ -0,0 +1,471 @@
@font-face {
font-family: 'outlined-iconset';
src: url('#{$font-path}/outlined/outlined.woff2') format('woff2'),
url('#{$font-path}/outlined/outlined.woff') format('woff');
font-weight: normal;
font-style: normal;
}
[class^="icon-outlined-"]:before,
[class*=" icon-outlined-"]:before {
font-family: "outlined-iconset" !important;
font-style: normal !important;
font-weight: normal !important;
font-variant: normal !important;
text-transform: none !important;
speak: none;
line-height: 1;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.icon-outlined-boat:before {
content: "\e000";
}
.icon-outlined-booknote:before {
content: "\e001";
}
.icon-outlined-booknote-add:before {
content: "\e002";
}
.icon-outlined-booknote-remove:before {
content: "\e003";
}
.icon-outlined-camera-1:before {
content: "\e004";
}
.icon-outlined-camera-2:before {
content: "\e005";
}
.icon-outlined-cloud-check:before {
content: "\e006";
}
.icon-outlined-cloud-delete:before {
content: "\e007";
}
.icon-outlined-cloud-download:before {
content: "\e008";
}
.icon-outlined-cloud-upload:before {
content: "\e009";
}
.icon-outlined-cloudy:before {
content: "\e00a";
}
.icon-outlined-cocktail:before {
content: "\e00b";
}
.icon-outlined-coffee:before {
content: "\e00c";
}
.icon-outlined-compass:before {
content: "\e00d";
}
.icon-outlined-compress:before {
content: "\e00e";
}
.icon-outlined-cutlery:before {
content: "\e00f";
}
.icon-outlined-delete:before {
content: "\e010";
}
.icon-outlined-delete-folder:before {
content: "\e011";
}
.icon-outlined-dialogue-add:before {
content: "\e012";
}
.icon-outlined-dialogue-delete:before {
content: "\e013";
}
.icon-outlined-dialogue-happy:before {
content: "\e014";
}
.icon-outlined-dialogue-sad:before {
content: "\e015";
}
.icon-outlined-dialogue-text:before {
content: "\e016";
}
.icon-outlined-dialogue-think:before {
content: "\e017";
}
.icon-outlined-diamond:before {
content: "\e018";
}
.icon-outlined-dish-fork:before {
content: "\e019";
}
.icon-outlined-dish-spoon:before {
content: "\e01a";
}
.icon-outlined-download:before {
content: "\e01b";
}
.icon-outlined-download-folder:before {
content: "\e01c";
}
.icon-outlined-expand:before {
content: "\e01d";
}
.icon-outlined-eye:before {
content: "\e01e";
}
.icon-outlined-fast-food:before {
content: "\e01f";
}
.icon-outlined-flag:before {
content: "\e020";
}
.icon-outlined-folder:before {
content: "\e021";
}
.icon-outlined-geolocalizator:before {
content: "\e022";
}
.icon-outlined-globe:before {
content: "\e023";
}
.icon-outlined-graph:before {
content: "\e024";
}
.icon-outlined-graph-descending:before {
content: "\e025";
}
.icon-outlined-graph-rising:before {
content: "\e026";
}
.icon-outlined-hammer:before {
content: "\e027";
}
.icon-outlined-happy-drop:before {
content: "\e028";
}
.icon-outlined-headphones:before {
content: "\e029";
}
.icon-outlined-heart:before {
content: "\e02a";
}
.icon-outlined-heart-broken:before {
content: "\e02b";
}
.icon-outlined-home:before {
content: "\e02c";
}
.icon-outlined-hourglass:before {
content: "\e02d";
}
.icon-outlined-image:before {
content: "\e02e";
}
.icon-outlined-key:before {
content: "\e02f";
}
.icon-outlined-life-buoy:before {
content: "\e030";
}
.icon-outlined-list:before {
content: "\e031";
}
.icon-outlined-lock-closed:before {
content: "\e032";
}
.icon-outlined-lock-open:before {
content: "\e033";
}
.icon-outlined-loudspeaker:before {
content: "\e034";
}
.icon-outlined-magnifier:before {
content: "\e035";
}
.icon-outlined-magnifier-minus:before {
content: "\e036";
}
.icon-outlined-magnifier-plus:before {
content: "\e037";
}
.icon-outlined-mail:before {
content: "\e038";
}
.icon-outlined-mail-open:before {
content: "\e039";
}
.icon-outlined-map:before {
content: "\e03a";
}
.icon-outlined-medical-case:before {
content: "\e03b";
}
.icon-outlined-microphone-1:before {
content: "\e03c";
}
.icon-outlined-microphone-2:before {
content: "\e03d";
}
.icon-outlined-minus:before {
content: "\e03e";
}
.icon-outlined-multiple-image:before {
content: "\e03f";
}
.icon-outlined-music-back:before {
content: "\e040";
}
.icon-outlined-music-backtoend:before {
content: "\e041";
}
.icon-outlined-music-eject:before {
content: "\e042";
}
.icon-outlined-music-forward:before {
content: "\e043";
}
.icon-outlined-music-forwardtoend:before {
content: "\e044";
}
.icon-outlined-music-pause:before {
content: "\e045";
}
.icon-outlined-music-play:before {
content: "\e046";
}
.icon-outlined-music-random:before {
content: "\e047";
}
.icon-outlined-music-repeat:before {
content: "\e048";
}
.icon-outlined-music-stop:before {
content: "\e049";
}
.icon-outlined-musical-note:before {
content: "\e04a";
}
.icon-outlined-musical-note-2:before {
content: "\e04b";
}
.icon-outlined-old-video-cam:before {
content: "\e04c";
}
.icon-outlined-paper-pen:before {
content: "\e04d";
}
.icon-outlined-paper-pencil:before {
content: "\e04e";
}
.icon-outlined-paper-sheet:before {
content: "\e04f";
}
.icon-outlined-pen-pencil-ruler:before {
content: "\e050";
}
.icon-outlined-pencil:before {
content: "\e051";
}
.icon-outlined-pencil-ruler:before {
content: "\e052";
}
.icon-outlined-plus:before {
content: "\e053";
}
.icon-outlined-portable-pc:before {
content: "\e054";
}
.icon-outlined-pricetag:before {
content: "\e055";
}
.icon-outlined-printer:before {
content: "\e056";
}
.icon-outlined-profile:before {
content: "\e057";
}
.icon-outlined-profile-add:before {
content: "\e058";
}
.icon-outlined-profile-remove:before {
content: "\e059";
}
.icon-outlined-rainy:before {
content: "\e05a";
}
.icon-outlined-rotate:before {
content: "\e05b";
}
.icon-outlined-setting-1:before {
content: "\e05c";
}
.icon-outlined-setting-2:before {
content: "\e05d";
}
.icon-outlined-share:before {
content: "\e05e";
}
.icon-outlined-shield-down:before {
content: "\e05f";
}
.icon-outlined-shield-left:before {
content: "\e060";
}
.icon-outlined-shield-right:before {
content: "\e061";
}
.icon-outlined-shield-up:before {
content: "\e062";
}
.icon-outlined-shopping-cart:before {
content: "\e063";
}
.icon-outlined-shopping-cart-content:before {
content: "\e064";
}
.icon-outlined-sinth:before {
content: "\e065";
}
.icon-outlined-smartphone:before {
content: "\e066";
}
.icon-outlined-spread:before {
content: "\e067";
}
.icon-outlined-squares:before {
content: "\e068";
}
.icon-outlined-stormy:before {
content: "\e069";
}
.icon-outlined-sunny:before {
content: "\e06a";
}
.icon-outlined-tablet:before {
content: "\e06b";
}
.icon-outlined-three-stripes-horiz:before {
content: "\e06c";
}
.icon-outlined-three-stripes-vert:before {
content: "\e06d";
}
.icon-outlined-ticket:before {
content: "\e06e";
}
.icon-outlined-todolist:before {
content: "\e06f";
}
.icon-outlined-todolist-add:before {
content: "\e070";
}
.icon-outlined-todolist-check:before {
content: "\e071";
}
.icon-outlined-trash-bin:before {
content: "\e072";
}
.icon-outlined-tshirt:before {
content: "\e073";
}
.icon-outlined-tv-monitor:before {
content: "\e074";
}
.icon-outlined-umbrella:before {
content: "\e075";
}
.icon-outlined-upload:before {
content: "\e076";
}
.icon-outlined-upload-folder:before {
content: "\e077";
}
.icon-outlined-variable:before {
content: "\e078";
}
.icon-outlined-video-cam:before {
content: "\e079";
}
.icon-outlined-volume-higher:before {
content: "\e07a";
}
.icon-outlined-volume-lower:before {
content: "\e07b";
}
.icon-outlined-volume-off:before {
content: "\e07c";
}
.icon-outlined-watch:before {
content: "\e07d";
}
.icon-outlined-waterfall:before {
content: "\e07e";
}
.icon-outlined-website-1:before {
content: "\e07f";
}
.icon-outlined-website-2:before {
content: "\e080";
}
.icon-outlined-wine:before {
content: "\e081";
}
.icon-outlined-calendar:before {
content: "\e082";
}
.icon-outlined-alarm-clock:before {
content: "\e083";
}
.icon-outlined-add-folder:before {
content: "\e084";
}
.icon-outlined-accelerator:before {
content: "\e085";
}
.icon-outlined-agenda:before {
content: "\e086";
}
.icon-outlined-arrow-left:before {
content: "\e087";
}
.icon-outlined-arrow-down:before {
content: "\e088";
}
.icon-outlined-battery-1:before {
content: "\e089";
}
.icon-outlined-case:before {
content: "\e08a";
}
.icon-outlined-arrow-up:before {
content: "\e08b";
}
.icon-outlined-arrow-right:before {
content: "\e08c";
}
.icon-outlined-case-2:before {
content: "\e08d";
}
.icon-outlined-cd:before {
content: "\e08e";
}
.icon-outlined-battery-2:before {
content: "\e08f";
}
.icon-outlined-battery-3:before {
content: "\e090";
}
.icon-outlined-check:before {
content: "\e091";
}
.icon-outlined-battery-4:before {
content: "\e092";
}
.icon-outlined-chronometer:before {
content: "\e093";
}
.icon-outlined-clock:before {
content: "\e094";
}
.icon-outlined-blackboard-graph:before {
content: "\e095";
}

View File

@@ -0,0 +1,259 @@
@font-face {
font-family: 'pixelvicon';
src: url('#{$font-path}/pixelvicon/pixelvicon.woff2') format('woff2'),
url('#{$font-path}/pixelvicon/pixelvicon.woff') format('woff');
font-weight: normal;
font-style: normal;
}
[class^="icon-pixelvicon-"]:before, [class*=" icon-pixelvicon-"]:before {
font-family: "pixelvicon" !important;
font-style: normal !important;
font-weight: normal !important;
font-variant: normal !important;
text-transform: none !important;
speak: none;
line-height: 1;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.icon-pixelvicon-browser-1:before {
content: "a";
}
.icon-pixelvicon-browser-2:before {
content: "b";
}
.icon-pixelvicon-browser-3:before {
content: "c";
}
.icon-pixelvicon-browser-4:before {
content: "d";
}
.icon-pixelvicon-browser-5:before {
content: "e";
}
.icon-pixelvicon-browser-6:before {
content: "f";
}
.icon-pixelvicon-imac:before {
content: "g";
}
.icon-pixelvicon-laptop:before {
content: "h";
}
.icon-pixelvicon-monitor:before {
content: "i";
}
.icon-pixelvicon-pc-case:before {
content: "j";
}
.icon-pixelvicon-tablet-1:before {
content: "k";
}
.icon-pixelvicon-tablet-2:before {
content: "l";
}
.icon-pixelvicon-tablet-3:before {
content: "m";
}
.icon-pixelvicon-tablet-4:before {
content: "n";
}
.icon-pixelvicon-smart-phone-1:before {
content: "o";
}
.icon-pixelvicon-smart-phone-2:before {
content: "p";
}
.icon-pixelvicon-smart-phone-3:before {
content: "q";
}
.icon-pixelvicon-smart-phone-4:before {
content: "r";
}
.icon-pixelvicon-printer:before {
content: "s";
}
.icon-pixelvicon-calculator:before {
content: "t";
}
.icon-pixelvicon-keyboard:before {
content: "u";
}
.icon-pixelvicon-mouse:before {
content: "v";
}
.icon-pixelvicon-video-game-controller:before {
content: "w";
}
.icon-pixelvicon-floppy-disk:before {
content: "x";
}
.icon-pixelvicon-coffee:before {
content: "y";
}
.icon-pixelvicon-mug:before {
content: "z";
}
.icon-pixelvicon-briefcase-1:before {
content: "A";
}
.icon-pixelvicon-briefcase-2:before {
content: "B";
}
.icon-pixelvicon-briefcase-3:before {
content: "C";
}
.icon-pixelvicon-first-aid:before {
content: "D";
}
.icon-pixelvicon-shopping-bag:before {
content: "E";
}
.icon-pixelvicon-gift:before {
content: "F";
}
.icon-pixelvicon-notepad-1:before {
content: "G";
}
.icon-pixelvicon-notepad-2:before {
content: "H";
}
.icon-pixelvicon-list-1:before {
content: "I";
}
.icon-pixelvicon-list-2:before {
content: "J";
}
.icon-pixelvicon-list-3:before {
content: "K";
}
.icon-pixelvicon-book:before {
content: "L";
}
.icon-pixelvicon-calendar-1:before {
content: "M";
}
.icon-pixelvicon-calendar-2:before {
content: "N";
}
.icon-pixelvicon-notebook:before {
content: "O";
}
.icon-pixelvicon-ruler:before {
content: "P";
}
.icon-pixelvicon-pen-1:before {
content: "Q";
}
.icon-pixelvicon-pen-2:before {
content: "R";
}
.icon-pixelvicon-document-1:before {
content: "S";
}
.icon-pixelvicon-document-2:before {
content: "T";
}
.icon-pixelvicon-document-3:before {
content: "U";
}
.icon-pixelvicon-film:before {
content: "V";
}
.icon-pixelvicon-photo-gallery:before {
content: "W";
}
.icon-pixelvicon-clock:before {
content: "X";
}
.icon-pixelvicon-cupboard:before {
content: "Y";
}
.icon-pixelvicon-drawer:before {
content: "Z";
}
.icon-pixelvicon-dresser:before {
content: "0";
}
.icon-pixelvicon-chair:before {
content: "1";
}
.icon-pixelvicon-sofa:before {
content: "2";
}
.icon-pixelvicon-desk:before {
content: "3";
}
.icon-pixelvicon-table:before {
content: "4";
}
.icon-pixelvicon-door:before {
content: "5";
}
.icon-pixelvicon-window:before {
content: "6";
}
.icon-pixelvicon-brick-wall:before {
content: "7";
}
.icon-pixelvicon-trash-1:before {
content: "8";
}
.icon-pixelvicon-trash-2:before {
content: "9";
}
.icon-pixelvicon-lock:before {
content: "!";
}
.icon-pixelvicon-unlock:before {
content: "\"";
}
.icon-pixelvicon-plus:before {
content: "#";
}
.icon-pixelvicon-minus:before {
content: "$";
}
.icon-pixelvicon-battery-1:before {
content: "%";
}
.icon-pixelvicon-battery-2:before {
content: "&";
}
.icon-pixelvicon-battery-3:before {
content: "'";
}
.icon-pixelvicon-battery-4:before {
content: "(";
}
.icon-pixelvicon-transform:before {
content: ")";
}
.icon-pixelvicon-resize:before {
content: "*";
}
.icon-pixelvicon-grid:before {
content: "+";
}
.icon-pixelvicon-menu:before {
content: ",";
}
.icon-pixelvicon-fullscreen:before {
content: "-";
}
.icon-pixelvicon-outline:before {
content: ".";
}
.icon-pixelvicon-align-left:before {
content: "/";
}
.icon-pixelvicon-align-center:before {
content: ":";
}
.icon-pixelvicon-align-right:before {
content: ";";
}
.icon-pixelvicon-align-justify:before {
content: "<";
}

1
sass/main.rtl.scss Executable file
View File

@@ -0,0 +1 @@
@import "main";

28
sass/main.scss Executable file
View File

@@ -0,0 +1,28 @@
@import "/dist/css/main-blessed4";
@import "/dist/css/main-blessed3";
@import "/dist/css/main-blessed2";
@import "/dist/css/main-blessed1";
@import "variables";
@import "@sketchpixy/rubix/sass/rubix";
@import "@sketchpixy/rubix/sass/vendor";
@import "colors";
@import "theme";
@import "fonts/lato/lato";
@import "fonts/fontello/fontello";
@import "fonts/climacons/climacons";
@import "fonts/devicon/devicon";
@import "fonts/dripicons/dripicons";
@import "fonts/feather/feather";
@import "fonts/flatline/flatline";
@import "fonts/mfizz/mfizz";
@import "fonts/nargela/nargela";
@import "fonts/glyphicons/glyphicons";
@import "fonts/ikons/ikons";
@import "fonts/outlined/outlined";
@import "fonts/pixelvicon/pixelvicon";
@import "fonts/Simple-Line-Icons/Simple-Line-Icons";
@import "fonts/Stroke-Gap-Icons/Stroke-Gap-Icons";
/* Page styles */
@import "pages/home";

32
sass/pages/_home.scss Executable file
View File

@@ -0,0 +1,32 @@
.todo-item {
border-bottom: 1px solid #eee;
button {
display: none;
margin-top: 8px;
}
&:hover {
background: rgb(254, 254, 244);
button {
display: inline-block;
}
}
}
@media (max-width: $screen-xs-max) {
.todo-item {
.text-right {
display: none;
}
}
.todo-item:hover {
.text-right {
display: block;
text-align: center;
margin-bottom: 12.5px;
}
}
}