mirror of
https://github.com/arsenetar/arsenetar.github.io.git
synced 2026-01-29 09:21:38 +00:00
Update to Initial Skeleton for Jekyll
Update a bunch of files to get ready for Jekyll.
This commit is contained in:
24
assets/scss/voltaicideas/_icon_codes.scss
Normal file
24
assets/scss/voltaicideas/_icon_codes.scss
Normal file
@@ -0,0 +1,24 @@
|
||||
.icon-mail:before { content: '\e80a'; } /* '' */
|
||||
.icon-youtube:before { content: '\e804'; } /* '' */
|
||||
.icon-ok:before { content: '\e814'; } /* '' */
|
||||
.icon-cancel:before { content: '\e813'; } /* '' */
|
||||
.icon-link-ext:before { content: '\e80b'; } /* '' */
|
||||
.icon-bookmark:before { content: '\e80c'; } /* '' */
|
||||
.icon-bookmark-empty:before { content: '\e80d'; } /* '' */
|
||||
.icon-code:before { content: '\e80e'; } /* '' */
|
||||
.icon-attention-alt:before { content: '\e811'; } /* '' */
|
||||
.icon-attention:before { content: '\e810'; } /* '' */
|
||||
.icon-attention-circled:before { content: '\e80f'; } /* '' */
|
||||
.icon-mic:before { content: '\e815'; } /* '' */
|
||||
.icon-videocam:before { content: '\e812'; } /* '' */
|
||||
.icon-tasks:before { content: '\e816'; } /* '' */
|
||||
.icon-dollar:before { content: '\e808'; } /* '' */
|
||||
.icon-spinner:before { content: '\e807'; } /* '' */
|
||||
.icon-terminal:before { content: '\e809'; } /* '' */
|
||||
.icon-bitbucket:before { content: '\e805'; } /* '' */
|
||||
.icon-github:before { content: '\e800'; } /* '' */
|
||||
.icon-gplus:before { content: '\e801'; } /* '' */
|
||||
.icon-html5:before { content: '\e806'; } /* '' */
|
||||
.icon-linkedin:before { content: '\e803'; } /* '' */
|
||||
.icon-twitter:before { content: '\e802'; } /* '' */
|
||||
.icon-fork:before { content: '\e817'; } /* '' */
|
||||
156
assets/scss/voltaicideas/_icons.scss
Normal file
156
assets/scss/voltaicideas/_icons.scss
Normal file
@@ -0,0 +1,156 @@
|
||||
//
|
||||
// Sass Icon Fonts
|
||||
//
|
||||
|
||||
// Main File icons.scss
|
||||
// Version: 0.4
|
||||
// Created By: Andrew Senetar
|
||||
// Date: August, 7 2013
|
||||
// Used: Font Awesome Styles, Foundation Icon Fonts Scss as Starting; animation from Fontello
|
||||
|
||||
/* Defaults */
|
||||
$set: "voltaicideas";
|
||||
|
||||
// Colors (from Font Awesome)
|
||||
$iconBorderColor: #eee !default;
|
||||
$iconMuted: #eee !default;
|
||||
$iconLight: #fff !default;
|
||||
$iconDark: #333 !default;
|
||||
|
||||
/* Mixins */
|
||||
// Mixin for creating individual icon classes
|
||||
@mixin i-class($name, $pau) {
|
||||
.icon-#{$name}:before {
|
||||
content: "\e#{$pau}";
|
||||
}
|
||||
}
|
||||
|
||||
// Mixin to simplify font face creation
|
||||
@mixin face($set) {
|
||||
@font-face {
|
||||
font-family: "#{$set}";
|
||||
src: url("../fonts/#{$set}");
|
||||
src: url("../fonts/#{$set}.eot#iefix") format('embedded-opentype'),
|
||||
url("../fonts/#{$set}.woff") format('woff'),
|
||||
url("../fonts/#{$set}.ttf") format('truetype'),
|
||||
url("../fonts/#{$set}.svg#fontello") format('svg');
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
}
|
||||
|
||||
@mixin border-radius($radius) {
|
||||
-webkit-border-radius: $radius;
|
||||
-moz-border-radius: $radius;
|
||||
-ms-border-radius: $radius;
|
||||
-o-border-radius: $radius;
|
||||
border-radius: $radius;
|
||||
}
|
||||
|
||||
@include face(#{$set}); //@font-face
|
||||
|
||||
//// global icon styles (from Foundation Icons + Font Awesome)
|
||||
/* Icon font Styles */
|
||||
[class*='icon-'] {
|
||||
background-image: none;
|
||||
background-position: 0% 0%;
|
||||
background-repeat: repeat;
|
||||
display: inline;
|
||||
height: auto;
|
||||
width: auto;
|
||||
vertical-align: baseline;
|
||||
line-height: 1;
|
||||
margin-top: 0;
|
||||
speak: none;
|
||||
font-family: '#{$set}';
|
||||
font-style: normal;
|
||||
font-weight: normal;
|
||||
font-variant: normal;
|
||||
text-transform: none;
|
||||
text-decoration: inherit;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
}
|
||||
|
||||
[class*='icon-']:before {
|
||||
text-decoration: inherit;
|
||||
display: inline-block;
|
||||
speak: none;
|
||||
}
|
||||
|
||||
//// Icon borders (from Font Awesome)
|
||||
|
||||
[class*="border icon-"] {
|
||||
border: solid 1px $iconBorderColor;
|
||||
padding: .2em .25em .15em;
|
||||
@include border-radius(3px);
|
||||
}
|
||||
|
||||
//// Icon sizes (from Font Awesome)
|
||||
|
||||
[class*="large icon-"]:before {
|
||||
vertical-align: -10%;
|
||||
font-size: 1.333em;
|
||||
}
|
||||
|
||||
[class*="huge icon-"]:before {
|
||||
vertical-align: -17%;
|
||||
font-size: 1.75em;
|
||||
}
|
||||
|
||||
[class*="2x icon-"] {
|
||||
font-size: 2em;
|
||||
& .border {
|
||||
border-width: 2px;
|
||||
@include border-radius(4px);
|
||||
}
|
||||
}
|
||||
|
||||
[class*="3x icon-"] {
|
||||
font-size: 3em;
|
||||
& .border {
|
||||
border-width: 3px;
|
||||
@include border-radius(5px);
|
||||
}
|
||||
}
|
||||
|
||||
[class*="4x icon-"] {
|
||||
font-size: 4em;
|
||||
& .border {
|
||||
border-width: 4px;
|
||||
@include border-radius(6px);
|
||||
}
|
||||
}
|
||||
|
||||
[class*="5x icon-"] {
|
||||
font-size: 5em;
|
||||
& .border {
|
||||
border-width: 5px;
|
||||
@include border-radius(7px);
|
||||
}
|
||||
}
|
||||
|
||||
//// Colors (from Font Awesome)
|
||||
|
||||
[class*="muted icon-"]{
|
||||
color: $iconMuted;
|
||||
}
|
||||
|
||||
[class*="light icon-"]{
|
||||
color: $iconLight;
|
||||
}
|
||||
|
||||
[class*="dark icon-"]{
|
||||
color: $iconDark;
|
||||
}
|
||||
|
||||
//// Fixes
|
||||
|
||||
//// makes sure icons active on rollover in links (from Font Awesome)
|
||||
|
||||
a [class*="icon-"]:before {
|
||||
display: inline;
|
||||
}
|
||||
|
||||
//// Actual Icons
|
||||
/* Icon Font List */
|
||||
@import "_icon_codes.scss";
|
||||
52
assets/scss/voltaicideas/_pygments.scss
Normal file
52
assets/scss/voltaicideas/_pygments.scss
Normal file
@@ -0,0 +1,52 @@
|
||||
.highlight{
|
||||
font-size: rem-calc(14px);
|
||||
padding: 0;
|
||||
background-color: lighten($secondary-color, 8%);
|
||||
font-family: 'Source Code Pro', 'Consolas', Monaco, monospace;
|
||||
overflow: auto;
|
||||
margin-bottom: rem-calc(16px);
|
||||
pre{
|
||||
tab-size: 4;
|
||||
white-space: pre;
|
||||
font-family: inherit;
|
||||
counter-reset: line-numbering;
|
||||
border: solid 1px #d9d9d9;
|
||||
border-radius: 0;
|
||||
background: #fff;
|
||||
padding: rem-calc(3px);
|
||||
line-height: 23px;
|
||||
overflow-x: auto;
|
||||
word-break: inherit;
|
||||
word-wrap: inherit;
|
||||
a {
|
||||
&::before {
|
||||
content: counter(line-numbering);
|
||||
counter-increment: line-numbering;
|
||||
padding-right: 1em; /* space after numbers */
|
||||
width: 25px;
|
||||
text-align: right;
|
||||
opacity: 0.7;
|
||||
display: inline-block;
|
||||
color: #aaa;
|
||||
background: #eee;
|
||||
margin-right: 16px;
|
||||
padding: 2px 10px;
|
||||
-webkit-touch-callout: none;
|
||||
-webkit-user-select: none;
|
||||
-khtml-user-select: none;
|
||||
-moz-user-select: none;
|
||||
-ms-user-select: none;
|
||||
user-select: none;
|
||||
}
|
||||
&:first-of-type::before {
|
||||
padding-top: 10px;
|
||||
}
|
||||
&:last-of-type::before {
|
||||
padding-bottom: 10px;
|
||||
}
|
||||
&:only-of-type::before {
|
||||
padding: 10px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
65
assets/scss/voltaicideas/_pygments_github.scss
Normal file
65
assets/scss/voltaicideas/_pygments_github.scss
Normal file
@@ -0,0 +1,65 @@
|
||||
/* Pygments Code Highlight */
|
||||
|
||||
.highlight {
|
||||
.hll { background-color: #ffffcc }
|
||||
.c { color: #999988; font-style: italic } // Comment
|
||||
.err { color: #a61717; background-color: #e3d2d2 } // Error
|
||||
.k { color: #000000; font-weight: bold } // Keyword
|
||||
.o { color: #000000; font-weight: bold } // Operator
|
||||
.cm { color: #999988; font-style: italic } // Comment.Multiline
|
||||
.cp { color: #999999; font-weight: bold; font-style: italic } // Comment.Preproc
|
||||
.c1 { color: #999988; font-style: italic } // Comment.Single
|
||||
.cs { color: #999999; font-weight: bold; font-style: italic } // Comment.Special
|
||||
.gd { color: #000000; background-color: #ffdddd } // Generic.Deleted
|
||||
.ge { color: #000000; font-style: italic } // Generic.Emph
|
||||
.gr { color: #aa0000 } // Generic.Error
|
||||
.gh { color: #999999 } // Generic.Heading
|
||||
.gi { color: #000000; background-color: #ddffdd } // Generic.Inserted
|
||||
.go { color: #888888 } // Generic.Output
|
||||
.gp { color: #555555 } // Generic.Prompt
|
||||
.gs { font-weight: bold } // Generic.Strong
|
||||
.gu { color: #aaaaaa } // Generic.Subheading
|
||||
.gt { color: #aa0000 } // Generic.Traceback
|
||||
.kc { color: #000000; font-weight: bold } // Keyword.Constant
|
||||
.kd { color: #000000; font-weight: bold } // Keyword.Declaration
|
||||
.kn { color: #000000; font-weight: bold } // Keyword.Namespace
|
||||
.kp { color: #000000; font-weight: bold } // Keyword.Pseudo
|
||||
.kr { color: #000000; font-weight: bold } // Keyword.Reserved
|
||||
.kt { color: #445588; font-weight: bold } // Keyword.Type
|
||||
.m { color: #009999 } // Literal.Number
|
||||
.s { color: #d01040 } // Literal.String
|
||||
.na { color: #008080 } // Name.Attribute
|
||||
.nb { color: #0086B3 } // Name.Builtin
|
||||
.nc { color: #445588; font-weight: bold } // Name.Class
|
||||
.no { color: #008080 } // Name.Constant
|
||||
.nd { color: #3c5d5d; font-weight: bold } // Name.Decorator
|
||||
.ni { color: #800080 } // Name.Entity
|
||||
.ne { color: #990000; font-weight: bold } // Name.Exception
|
||||
.nf { color: #990000; font-weight: bold } // Name.Function
|
||||
.nl { color: #990000; font-weight: bold } // Name.Label
|
||||
.nn { color: #555555 } // Name.Namespace
|
||||
.nt { color: #000080 } // Name.Tag
|
||||
.nv { color: #008080 } // Name.Variable
|
||||
.ow { color: #000000; font-weight: bold } // Operator.Word
|
||||
.w { color: #bbbbbb } // Text.Whitespace
|
||||
.mf { color: #009999 } // Literal.Number.Float
|
||||
.mh { color: #009999 } // Literal.Number.Hex
|
||||
.mi { color: #009999 } // Literal.Number.Integer
|
||||
.mo { color: #009999 } // Literal.Number.Oct
|
||||
.sb { color: #d01040 } // Literal.String.Backtick
|
||||
.sc { color: #d01040 } // Literal.String.Char
|
||||
.sd { color: #d01040 } // Literal.String.Doc
|
||||
.s2 { color: #d01040 } // Literal.String.Double
|
||||
.se { color: #d01040 } // Literal.String.Escape
|
||||
.sh { color: #d01040 } // Literal.String.Heredoc
|
||||
.si { color: #d01040 } // Literal.String.Interpol
|
||||
.sx { color: #d01040 } // Literal.String.Other
|
||||
.sr { color: #009926 } // Literal.String.Regex
|
||||
.s1 { color: #d01040 } // Literal.String.Single
|
||||
.ss { color: #990073 } // Literal.String.Symbol
|
||||
.bp { color: #999999 } // Name.Builtin.Pseudo
|
||||
.vc { color: #008080 } // Name.Variable.Class
|
||||
.vg { color: #008080 } // Name.Variable.Global
|
||||
.vi { color: #008080 } // Name.Variable.Instance
|
||||
.il { color: #009999 } // Literal.Number.Integer.Long
|
||||
}
|
||||
Reference in New Issue
Block a user