This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@mixin offscreen-text { | |
height: 1px; | |
left: -10000px; | |
overflow: hidden; | |
position: absolute; | |
top: auto; | |
width: 1px; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'color' | |
lines = [] | |
open('colors.txt') do |file| | |
lines = file.readlines.map(&:chomp) | |
end | |
color_sort = ->(a,b) do | |
color_a = Color::RGB.from_html(a[/#[A-Za-z0-9]{6}/]).to_hsl |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" extension-element-prefixes="exsl str" version="1.0" xmlns:exsl="http://exslt.org/common" xmlns:str="http://exslt.org/strings"> | |
<xsl:output encoding="utf-8" indent="yes" method="xml" version="1.0"/> | |
<xsl:template match="/system-index-block"> | |
<xsl:variable name="index" select="."/> | |
<xsl:variable name="tokens"> | |
<xsl:apply-templates select="calling-page/system-page/path"/> | |
</xsl:variable> | |
<xsl:variable name="matches"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
javascript:(function() {if (window.location.hostname == 'stage.swosu.edu') window.location = window.location.href.replace(/^http:\/\/stage.swosu.edu\/(.*)$/, function(match, $1, $2, offset, original) { return "http://www.swosu.edu/" + $1}); if (window.location.hostname == 'www.swosu.edu') window.location = window.location.href.replace(/^http:\/\/www.swosu.edu\/(.*)$/, function(match, $1, $2, offset, original) { return "http://stage.swosu.edu/" + $1});})() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@mixin mq($min-width: null, $max-width: null) { | |
@if $legacy { | |
@if $max-width == null { | |
@content; | |
} | |
} @else { | |
@if ($min-width and $max-width) { | |
@media (min-width: $min-width) and (max-width: $max-width) { | |
@content; | |
} |