1
0
mirror of https://github.com/arsenetar/arsenetar.github.io.git synced 2026-02-24 11:01:39 +00:00

Update site to test pelican-red

This commit is contained in:
2013-07-29 11:29:57 -04:00
parent 968c00fda0
commit c648375797
63 changed files with 5126 additions and 899 deletions

View File

@@ -0,0 +1,43 @@
@include i-class('grooveshark','805');
@include i-class('reddit','804');
@include i-class('blogger','803');
@include i-class('youtube','802');
@include i-class('steam','801');
@include i-class('tag','81a');
@include i-class('vcard','817');
@include i-class('language','806');
@include i-class('dot-3','808');
@include i-class('cc','826');
@include i-class('cc-by','825');
@include i-class('cc-nc','824');
@include i-class('cc-nc-eu','823');
@include i-class('cc-nc-jp','822');
@include i-class('cc-sa','821');
@include i-class('cc-nd','820');
@include i-class('cc-pd','81f');
@include i-class('cc-zero','81e');
@include i-class('cc-share','81d');
@include i-class('cc-remix','81c');
@include i-class('github','80a');
@include i-class('flickr','815');
@include i-class('vimeo','80b');
@include i-class('twitter','80e');
@include i-class('facebook','80d');
@include i-class('gplus','80c');
@include i-class('pinterest','800');
@include i-class('tumblr','809');
@include i-class('linkedin','80f');
@include i-class('dribbble','814');
@include i-class('stumbleupon','816');
@include i-class('lastfm','810');
@include i-class('rdio','811');
@include i-class('instagram','812');
@include i-class('skype','813');
@include i-class('picasa','818');
@include i-class('soundcloud','819');
@include i-class('newspaper','807');
@include i-class('search','827');
@include i-class('link','81b');
//Generated on Sat Jul 13 07:02:38 UTC 2013

View File

@@ -0,0 +1,61 @@
//
// Sass Icon Fonts
//
// Settings File _iconSettings.scss
// Version: 0.3
// Created By: Andrew Senetar
// Date: July, 13 2013
// Used: Font Awesome Styles, Foundation Icon Fonts Scss as Starting; animation from Fontello
//// Compass imports used later in icons.scss
@import "compass/css3/font-face";
@import "compass/css3/border-radius";
@import "compass/css3/animation";
@import "compass/css3/transform";
//// Font and class variables
$classPrefix: "icon-" !default; // icon class prefix [prefix-][name]
$set: "fontello" !default; // font name
//// Color Variables (from Font Awesome)
$iconBorderColor: #eee !default;
$iconMuted: #eee !default;
$iconLight: #fff !default;
$iconDark: #333 !default;
//// Mixin for creation of individual icon class
//// Use: @include i-class([name],[code]); (assumes \exxx space since its imposible? to output
//// \#{$pua} in Sass appearntly
@mixin i-class($name,$pua) {
.#{$classPrefix}#{$name}:before {
content: "\e#{$pua}";
}
}
//// Mixin for creation of individual icon class for Internet Explorer
//// Use: @include i-class([name],[code]); (again exxx range)
@mixin ie-class($name,$pua) {
.#{$classPrefix}#{$name} {
*zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = "&#xe#{$pua}; ");
}
}
//// Mixin for @font-face
//// Use @include face([$set]);
@mixin face($set) {
@include font-face("#{$set}",
font-files("#{$set}.woff",
"#{$set}.ttf",
"#{$set}.svg"),
'#{$set}.eot',
normal,
normal);
}

View File

@@ -0,0 +1,136 @@
//
// Sass Icon Fonts
//
// Main File icons.scss
// Version: 0.3
// Created By: Andrew Senetar
// Date: July, 13 2013
// Used: Font Awesome Styles, Foundation Icon Fonts Scss as Starting; animation from Fontello
@import "voltaicideas/pelican-red/iconSettings";
/* Icon Font */
@include face(#{$set}); //@font-face
//// global icon styles (from Foundation Icons + Font Awesome)
/* Icon font Styles */
[class*="#{$classPrefix}"] {
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*="#{$classPrefix}"]:before {
text-decoration: inherit;
display: inline-block;
speak: none;
}
//// Icon borders (from Font Awesome)
[class*="border #{$classPrefix}"] {
border: solid 1px $iconBorderColor;
padding: .2em .25em .15em;
@include border-radius(3px);
}
//// Icon sizes (from Font Awesome)
[class*="large #{$classPrefix}"]:before {
vertical-align: -10%;
font-size: 1.333em;
}
[class*="huge #{$classPrefix}"]:before {
vertical-align: -17%;
font-size: 1.75em;
}
[class*="2x #{$classPrefix}"] {
font-size: 2em;
& .border {
border-width: 2px;
@include border-radius(4px);
}
}
[class*="3x #{$classPrefix}"] {
font-size: 3em;
& .border {
border-width: 3px;
@include border-radius(5px);
}
}
[class*="4x #{$classPrefix}"] {
font-size: 4em;
& .border {
border-width: 4px;
@include border-radius(6px);
}
}
[class*="5x #{$classPrefix}"] {
font-size: 5em;
& .border {
border-width: 5px;
@include border-radius(7px);
}
}
//// Colors (from Font Awesome)
[class*="muted #{$classPrefix}"]{
color: $iconMuted;
}
[class*="light #{$classPrefix}"]{
color: $iconLight;
}
[class*="dark #{$classPrefix}"]{
color: $iconDark;
}
//// Fixes
//// makes sure icons active on rollover in links (from Font Awesome)
a [class*="#{$classPrefix}"]:before {
display: inline;
}
//// Animation for Spinners (from Fontello)
@include keyframes(spin){
0%{
@include transform(rotate(0deg));
}
100%{
@include transform(rotate(359deg));
}
}
.animate-spin{
@include animation(spin 2s infinite linear);
}
//// Actual Icons
/* Icon Font List */
@import "voltaicideas/pelican-red/_iconList.scss"

View File

@@ -0,0 +1,65 @@
/* Pygments Code Highlight */
.codehilite {
.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
}

View File

@@ -0,0 +1,52 @@
.codehilite{
font-size: emCalc(14px);
padding: emCalc(7px);
background-color: lighten($secondary-color, 8%);
border: 1px solid $secondary-color;
font-family: 'Source Code Pro', 'Consolas', Monaco, monospace;
overflow: auto;
margin-bottom: emCalc(16px);
pre{
tab-size: 4;
white-space: pre;
font-family: inherit;
}
}
div.codehilitewrapper{
overflow-x: auto;
overflow-y: hidden;
border: 1px solid $secondary-color;
margin-bottom: 1.25em;
table.codehilitetable{
margin: 0;
border: none;
}
}
table.codehilitetable{
td{ font-size: 1em; }
width: 100%;
.linenos{
width: emCalc(30px);
padding: 0;
.linenodiv{
padding: emCalc(7px);
overflow: auto;
font-family: 'Source Code Pro', 'Consolas', Monaco, monospace;
pre{
font-family: inherit;
}
}
}
.code{
padding: 0;
.codehilite{
border-bottom: none;
border-top: none;
border-right: none;
margin: 0;
}
}
}