From 8a0f409f5701304115a964ef44f4601401dcfbf5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=B8ren=20Louv-Jansen?= Date: Sat, 31 Mar 2012 23:28:09 +0200 Subject: [PATCH] Initial commit --- .gitignore | 2 + images/grid.png | Bin 0 -> 206 bytes index.php | 42 ++++ lib.php | 16 ++ sass/ie.sass | 16 ++ sass/partials/_base.sass | 11 + sass/print.sass | 8 + sass/screen.sass | 90 ++++++++ screen.js | 133 +++++++++++ stylesheets/ie.css | 109 +++++++++ stylesheets/print.css | 73 ++++++ stylesheets/screen.css | 479 +++++++++++++++++++++++++++++++++++++++ 12 files changed, 979 insertions(+) create mode 100644 .gitignore create mode 100644 images/grid.png create mode 100644 index.php create mode 100644 lib.php create mode 100644 sass/ie.sass create mode 100644 sass/partials/_base.sass create mode 100644 sass/print.sass create mode 100644 sass/screen.sass create mode 100644 screen.js create mode 100644 stylesheets/ie.css create mode 100644 stylesheets/print.css create mode 100644 stylesheets/screen.css diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..fbd7f95 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +!songs/* +!commands/* diff --git a/images/grid.png b/images/grid.png new file mode 100644 index 0000000000000000000000000000000000000000..129d4a29fbe92688aabed5638e0c4f73a7bca818 GIT binary patch literal 206 zcmeAS@N?(olHy`uVBq!ia0vp^8bB<>!3HEX<>xE|QY^(zo*^7SP{WbZ0pxQQctjR6 zFmQbUVMeDlCNqG7G9|7NCBgY=CFO}lsSJ)O`AMk?Zka`?<@rU~#R|^B#xt(DF$2|k zc)B=-cyuP$eEj#lzKxOL5tEL~%H%~Gtu@#d^DPnSv6>KM@XEpK;0k6FVdQ&MBb@06Zo?vj6}9 literal 0 HcmV?d00001 diff --git a/index.php b/index.php new file mode 100644 index 0000000..812c955 --- /dev/null +++ b/index.php @@ -0,0 +1,42 @@ + + + + + + + + + + + + + +
+ +

Club 101

+

En club sejere

+ +
+
+

53

+
+ +
Club #0
+
Introsang
+ +
+ + \ No newline at end of file diff --git a/lib.php b/lib.php new file mode 100644 index 0000000..be11843 --- /dev/null +++ b/lib.php @@ -0,0 +1,16 @@ + \ No newline at end of file diff --git a/sass/ie.sass b/sass/ie.sass new file mode 100644 index 0000000..c2104c0 --- /dev/null +++ b/sass/ie.sass @@ -0,0 +1,16 @@ +@import blueprint + +// To generate css equivalent to the blueprint css but with your configuration applied, uncomment: +// @include blueprint-ie + +//Recommended Blueprint configuration with scoping and semantic layout: +body.bp + +blueprint-ie(true) + // Note: Blueprint centers text to fix IE6 container centering. + // This means all your texts will be centered under all version of IE by default. + // If your container does not have the .container class, don't forget to restore + // the correct behavior to your main container (but not the body tag!) + // Example: + // .my-container + // text-align: left + diff --git a/sass/partials/_base.sass b/sass/partials/_base.sass new file mode 100644 index 0000000..ac54779 --- /dev/null +++ b/sass/partials/_base.sass @@ -0,0 +1,11 @@ +// Here is where you can define your constants for your application and to configure the blueprint framework. +// Feel free to delete these if you want keep the defaults: + +$blueprint-grid-columns : 10 +$blueprint-container-size : 920px +$blueprint-grid-margin : 24px + +// Use this to calculate the width based on the total width. +// Or you can set $blueprint-grid-width to a fixed value and unset $blueprint-container-size -- it will be calculated for you. +$blueprint-grid-width: ($blueprint-container-size + $blueprint-grid-margin) / $blueprint-grid-columns - $blueprint-grid-margin + diff --git a/sass/print.sass b/sass/print.sass new file mode 100644 index 0000000..216c9e0 --- /dev/null +++ b/sass/print.sass @@ -0,0 +1,8 @@ +@import blueprint + +// To generate css equivalent to the blueprint css but with your configuration applied, uncomment: +// @include blueprint-print + +//Recommended Blueprint configuration with scoping and semantic layout: +body.bp + +blueprint-print(true) \ No newline at end of file diff --git a/sass/screen.sass b/sass/screen.sass new file mode 100644 index 0000000..83cea56 --- /dev/null +++ b/sass/screen.sass @@ -0,0 +1,90 @@ +// This import applies a global reset to any page that imports this stylesheet. +@import blueprint/reset +// To configure blueprint, edit the partials/base.sass file. +@import partials/base +// Import all the default blueprint modules so that we can access their mixins. +@import blueprint +// Import the non-default scaffolding module. +@import blueprint/scaffolding + +// To generate css equivalent to the blueprint css but with your +// configuration applied, uncomment: +// @include blueprint + +// If you are doing a lot of stylesheet concatenation, it is suggested +// that you scope your blueprint styles, so that you can better control +// what pages use blueprint when stylesheets are concatenated together. +body.bp + +blueprint-typography(true) + +blueprint-utilities + +blueprint-debug + +blueprint-interaction + // Remove the scaffolding when you're ready to start doing visual design. + // Or leave it in if you're happy with how blueprint looks out-of-the-box + +.container + +container + min-height: 500px + padding-top: 100px + //+showgrid + + .title + color: #CCC + font-size: 7em + font-weight: bold + line-height: 0.6em + margin-bottom: 10px + text-align: center + text-transform: uppercase + width: 100% + + .sub-title + color: #CCC + font-size: 4em + margin-top: 0px + text-align: center + text-transform: uppercase + width: 100% + +.progress-bar + box-sizing: border-box + border: 3px solid #000 + +column(10, true) + height: 300px + margin-bottom: 10px + position: relative + z-index: 0 + + .progress-bar-inside + +background(linear-gradient(top, green * 1.5, green)) + width: 100% + height: 100% + position: absolute + top: 0 + left: 0 + z-index: 1 + + .timer-seconds + +column(10, true) + color: #000 + font-size: 10em + height: 1em + left: 50% + line-height: 1em + margin-top: -0.5em + margin-left: -0.75em + position: absolute + text-align: center + top: 50% + width: 1.5em + z-index: 2 + +.club-number, .current-song + color: #666 + font-size: 2em + +.club-number + float: left + +.current-song + float: right diff --git a/screen.js b/screen.js new file mode 100644 index 0000000..58eccea --- /dev/null +++ b/screen.js @@ -0,0 +1,133 @@ +var timerSeconds = 60; + + +var pissList = { + init: function(){ + + }, + add: function(name){ + console.log("name: " + name); + }, + start: function(){ + + }, + stop: function(){ + + } +} + +/* +/* Play object + ********************************************/ +var player = { + current: null, + track_number: 0, + playlist: [], + + init: function(playlist, folder, update_label){ + this.folder = folder; + this.playlist = playlist; + this.current = new Audio(this.folder + this.playlist[this.track_number]); + this.update_label = update_label; + }, + start: function(){ + this.current.play(); + }, + stop: function(){ + if(this.current.paused == false){ + this.current.pause(); + } + }, + next: function(){ + this.stop(); + + // if last song restart list + if(this.track_number == (this.playlist.length - 1)){ + this.track_number = 0; + // next song + }else{ + this.track_number++; + } + + var filename = this.playlist[this.track_number]; + + // set song label + if(this.update_label){ + var filename_human = filename.substring(0, filename.length - 4); + $('.current-song').html(filename_human); + } + + this.current.src = this.folder + filename; + this.start(); + + console.log("Changed song to: " + filename); + }, + setVolume: function(volume){ + this.current.volume = volume; + } +}; + +/* +/* Start countdown + ********************************************/ +var startCountDown = function(songs, commands){ + var commandSecond; + var clubNumber = 0; + + // create and start songplayer + var songPlayer = jQuery.extend(true, {}, player); + songPlayer.init(songs, "songs/", true); + songPlayer.start(); + + // create commandPlayer + var commandPlayer = jQuery.extend(true, {}, player); + commandPlayer.init(commands, "commands/"); + + // countdown 1 second + setInterval(function(){ + // decrement second + timerSeconds--; + $('.timer-seconds').html(timerSeconds); + var progressBarWidth = (timerSeconds/60)*100; + $('.progress-bar-inside').css('width', progressBarWidth + '%'); + + // say skååål + if(timerSeconds == 3){ + + } + + // new song + if(timerSeconds == 0){ + songPlayer.next(); + timerSeconds = 60; + + // set command at random second in time number + commandSecond = Math.floor(37*Math.random()) + 13; + console.log("Command will be played at " + commandSecond); + + // update club number + clubNumber++; + $('.club-number span').html(clubNumber); + } + + // attempt to play command + var commandProbability = Math.random(); + if(timerSeconds == commandSecond){ + console.log("Command probability: " + commandProbability); + //if(commandProbability < 0.3){ + + // decrease volume for song + songPlayer.setVolume(0.2); + + // play command + commandPlayer.next(); + + // increase volume again for song + setTimeout(function(){ + songPlayer.setVolume(1) + commandPlayer.stop(); + }, 10000); + //} + } + }, 1000); +} \ No newline at end of file diff --git a/stylesheets/ie.css b/stylesheets/ie.css new file mode 100644 index 0000000..34dfa70 --- /dev/null +++ b/stylesheets/ie.css @@ -0,0 +1,109 @@ +/* line 7, ../sass/ie.sass */ +body.bp { + text-align: center; +} +/* line 44, ../../../../../Library/Ruby/Gems/1.8/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/_ie.scss */ +* html body.bp legend { + margin: 0px -8px 16px 0; + padding: 0; +} +/* line 48, ../../../../../Library/Ruby/Gems/1.8/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/_ie.scss */ +html > body.bp p code { + *white-space: normal; +} +/* line 60, ../../../../../Library/Ruby/Gems/1.8/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/_ie.scss */ +body.bp .container { + text-align: left; +} +/* line 62, ../../../../../Library/Ruby/Gems/1.8/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/_ie.scss */ +body.bp sup { + vertical-align: text-top; +} +/* line 64, ../../../../../Library/Ruby/Gems/1.8/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/_ie.scss */ +body.bp sub { + vertical-align: text-bottom; +} +/* line 66, ../../../../../Library/Ruby/Gems/1.8/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/_ie.scss */ +body.bp hr { + margin: -8px auto 11px; +} +/* line 68, ../../../../../Library/Ruby/Gems/1.8/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/_ie.scss */ +body.bp img { + -ms-interpolation-mode: bicubic; +} +/* line 70, ../../../../../Library/Ruby/Gems/1.8/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/_ie.scss */ +body.bp fieldset { + padding-top: 0; +} +/* line 72, ../../../../../Library/Ruby/Gems/1.8/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/_ie.scss */ +body.bp legend { + margin-top: -0.2em; + margin-bottom: 1em; + margin-left: -0.5em; +} +/* line 76, ../../../../../Library/Ruby/Gems/1.8/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/_ie.scss */ +body.bp fieldset, body.bp #IE8#HACK { + padding-top: 1.4em; +} +/* line 77, ../../../../../Library/Ruby/Gems/1.8/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/_ie.scss */ +body.bp legend, body.bp #IE8#HACK { + margin-top: 0; + margin-bottom: 0; +} +/* line 78, ../../../../../Library/Ruby/Gems/1.8/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/_ie.scss */ +body.bp textarea { + overflow: auto; +} +/* line 80, ../../../../../Library/Ruby/Gems/1.8/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/_ie.scss */ +body.bp label { + position: relative; + top: -0.25em; +} +/* line 84, ../../../../../Library/Ruby/Gems/1.8/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/_ie.scss */ +body.bp input.text { + margin: 0.5em 0; + background-color: white; + border: 1px solid #bbbbbb; +} +/* line 88, ../../../../../Library/Ruby/Gems/1.8/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/_ie.scss */ +body.bp input.text:focus { + border: 1px solid #666666; +} +/* line 90, ../../../../../Library/Ruby/Gems/1.8/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/_ie.scss */ +body.bp input.title { + margin: 0.5em 0; + background-color: white; + border: 1px solid #bbbbbb; +} +/* line 94, ../../../../../Library/Ruby/Gems/1.8/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/_ie.scss */ +body.bp input.title:focus { + border: 1px solid #666666; +} +/* line 96, ../../../../../Library/Ruby/Gems/1.8/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/_ie.scss */ +body.bp input.checkbox { + position: relative; + top: 0.25em; +} +/* line 99, ../../../../../Library/Ruby/Gems/1.8/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/_ie.scss */ +body.bp input.radio { + position: relative; + top: 0.25em; +} +/* line 102, ../../../../../Library/Ruby/Gems/1.8/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/_ie.scss */ +body.bp input.button { + position: relative; + top: 0.25em; +} +/* line 105, ../../../../../Library/Ruby/Gems/1.8/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/_ie.scss */ +body.bp textarea { + margin: 0.5em 0; +} +/* line 107, ../../../../../Library/Ruby/Gems/1.8/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/_ie.scss */ +body.bp select { + margin: 0.5em 0; +} +/* line 109, ../../../../../Library/Ruby/Gems/1.8/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/_ie.scss */ +body.bp button { + position: relative; + top: 0.25em; +} diff --git a/stylesheets/print.css b/stylesheets/print.css new file mode 100644 index 0000000..c41b434 --- /dev/null +++ b/stylesheets/print.css @@ -0,0 +1,73 @@ +/* line 7, ../sass/print.sass */ +body.bp { + line-height: 1.5; + font-family: "Helvetica Neue", Arial, Helvetica, sans-serif; + color: black; + background: none; + font-size: 10pt; +} +/* line 45, ../../../../../Library/Ruby/Gems/1.8/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/_print.scss */ +body.bp .container { + background: none; +} +/* line 47, ../../../../../Library/Ruby/Gems/1.8/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/_print.scss */ +body.bp hr { + background: #cccccc; + color: #cccccc; + width: 100%; + height: 2px; + margin: 2em 0; + padding: 0; + border: none; +} +/* line 55, ../../../../../Library/Ruby/Gems/1.8/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/_print.scss */ +body.bp hr.space { + background: white; + color: white; +} +/* line 58, ../../../../../Library/Ruby/Gems/1.8/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/_print.scss */ +body.bp h1, body.bp h2, body.bp h3, body.bp h4, body.bp h5, body.bp h6 { + font-family: "Helvetica Neue", Arial, Helvetica, sans-serif; +} +/* line 60, ../../../../../Library/Ruby/Gems/1.8/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/_print.scss */ +body.bp code { + font-size: 0.9em; + font-family: "andale mono", "lucida console", monospace; +} +/* line 65, ../../../../../Library/Ruby/Gems/1.8/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/_print.scss */ +body.bp a img { + border: none; +} +/* line 68, ../../../../../Library/Ruby/Gems/1.8/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/_print.scss */ +body.bp a:link, body.bp a:visited { + background: transparent; + font-weight: 700; + text-decoration: underline; +} +/* line 72, ../../../../../Library/Ruby/Gems/1.8/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/_print.scss */ +body.bp p img.top { + margin-top: 0; +} +/* line 74, ../../../../../Library/Ruby/Gems/1.8/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/_print.scss */ +body.bp blockquote { + margin: 1.5em; + padding: 1em; + font-style: italic; + font-size: 0.9em; +} +/* line 79, ../../../../../Library/Ruby/Gems/1.8/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/_print.scss */ +body.bp .small { + font-size: 0.9em; +} +/* line 81, ../../../../../Library/Ruby/Gems/1.8/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/_print.scss */ +body.bp .large { + font-size: 1.1em; +} +/* line 83, ../../../../../Library/Ruby/Gems/1.8/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/_print.scss */ +body.bp .quiet { + color: #999999; +} +/* line 85, ../../../../../Library/Ruby/Gems/1.8/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/_print.scss */ +body.bp .hide { + display: none; +} diff --git a/stylesheets/screen.css b/stylesheets/screen.css new file mode 100644 index 0000000..d95c024 --- /dev/null +++ b/stylesheets/screen.css @@ -0,0 +1,479 @@ +/* line 4, ../../../../../Library/Ruby/Gems/1.8/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/reset/_utilities.scss */ +html { + margin: 0; + padding: 0; + border: 0; +} + +/* line 18, ../../../../../Library/Ruby/Gems/1.8/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/reset/_utilities.scss */ +.bp-reset-element, body, h1, h2, h3, h4, h5, h6, article, aside, dialog, figure, footer, header, hgroup, nav, section, blockquote, q, th, td, caption, table, +div, span, object, iframe, p, +pre, a, abbr, acronym, address, +code, del, dfn, em, img, +dl, dt, dd, ol, ul, li, fieldset, +form, label, legend, +caption, tbody, tfoot, thead, tr { + margin: 0; + padding: 0; + border: 0; + font-weight: inherit; + font-style: inherit; + font-size: 100%; + font-family: inherit; + vertical-align: baseline; +} + +/* line 20, ../../../../../Library/Ruby/Gems/1.8/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/reset/_utilities.scss */ +article, aside, dialog, figure, footer, header, hgroup, nav, section { + display: block; +} + +/* line 21, ../../../../../Library/Ruby/Gems/1.8/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/reset/_utilities.scss */ +blockquote, q { + quotes: "" ""; +} +/* line 67, ../../../../../Library/Ruby/Gems/1.8/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/reset/_utilities.scss */ +blockquote:before, blockquote:after, q:before, q:after { + content: ""; +} + +/* line 22, ../../../../../Library/Ruby/Gems/1.8/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/reset/_utilities.scss */ +th, td, caption { + float: none !important; + text-align: left; + font-weight: normal; + vertical-align: middle; +} + +/* line 23, ../../../../../Library/Ruby/Gems/1.8/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/reset/_utilities.scss */ +table { + border-collapse: separate; + border-spacing: 0; + vertical-align: middle; +} + +/* line 24, ../../../../../Library/Ruby/Gems/1.8/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/reset/_utilities.scss */ +a img { + border: none; +} + +/* line 17, ../sass/screen.sass */ +body.bp { + line-height: 1.5; + font-family: "Helvetica Neue", Arial, Helvetica, sans-serif; + color: #333333; + font-size: 75%; +} +/* line 51, ../../../../../Library/Ruby/Gems/1.8/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ +body.bp h1, body.bp h2, body.bp h3, body.bp h4, body.bp h5, body.bp h6 { + font-weight: normal; + color: #222222; +} +/* line 52, ../../../../../Library/Ruby/Gems/1.8/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ +body.bp h1 img, body.bp h2 img, body.bp h3 img, body.bp h4 img, body.bp h5 img, body.bp h6 img { + margin: 0; +} +/* line 53, ../../../../../Library/Ruby/Gems/1.8/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ +body.bp h1 { + font-size: 3em; + line-height: 1; + margin-bottom: 0.50em; +} +/* line 54, ../../../../../Library/Ruby/Gems/1.8/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ +body.bp h2 { + font-size: 2em; + margin-bottom: 0.75em; +} +/* line 55, ../../../../../Library/Ruby/Gems/1.8/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ +body.bp h3 { + font-size: 1.5em; + line-height: 1; + margin-bottom: 1.00em; +} +/* line 56, ../../../../../Library/Ruby/Gems/1.8/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ +body.bp h4 { + font-size: 1.2em; + line-height: 1.25; + margin-bottom: 1.25em; +} +/* line 57, ../../../../../Library/Ruby/Gems/1.8/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ +body.bp h5 { + font-size: 1em; + font-weight: bold; + margin-bottom: 1.50em; +} +/* line 58, ../../../../../Library/Ruby/Gems/1.8/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ +body.bp h6 { + font-size: 1em; + font-weight: bold; +} +/* line 59, ../../../../../Library/Ruby/Gems/1.8/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ +body.bp p { + margin: 0 0 1.5em; +} +/* line 60, ../../../../../Library/Ruby/Gems/1.8/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ +body.bp p .left { + display: inline; + float: left; + margin: 1.5em 1.5em 1.5em 0; + padding: 0; +} +/* line 61, ../../../../../Library/Ruby/Gems/1.8/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ +body.bp p .right { + display: inline; + float: right; + margin: 1.5em 0 1.5em 1.5em; + padding: 0; +} +/* line 62, ../../../../../Library/Ruby/Gems/1.8/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ +body.bp a { + text-decoration: underline; + color: #0066cc; +} +/* line 18, ../../../../../Library/Ruby/Gems/1.8/gems/compass-0.11.1/frameworks/compass/stylesheets/compass/typography/links/_link-colors.scss */ +body.bp a:visited { + color: #004c99; +} +/* line 21, ../../../../../Library/Ruby/Gems/1.8/gems/compass-0.11.1/frameworks/compass/stylesheets/compass/typography/links/_link-colors.scss */ +body.bp a:focus { + color: #0099ff; +} +/* line 24, ../../../../../Library/Ruby/Gems/1.8/gems/compass-0.11.1/frameworks/compass/stylesheets/compass/typography/links/_link-colors.scss */ +body.bp a:hover { + color: #0099ff; +} +/* line 27, ../../../../../Library/Ruby/Gems/1.8/gems/compass-0.11.1/frameworks/compass/stylesheets/compass/typography/links/_link-colors.scss */ +body.bp a:active { + color: #bf00ff; +} +/* line 63, ../../../../../Library/Ruby/Gems/1.8/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ +body.bp blockquote { + margin: 1.5em; + color: #666666; + font-style: italic; +} +/* line 64, ../../../../../Library/Ruby/Gems/1.8/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ +body.bp strong, body.bp dfn { + font-weight: bold; +} +/* line 65, ../../../../../Library/Ruby/Gems/1.8/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ +body.bp em, body.bp dfn { + font-style: italic; +} +/* line 66, ../../../../../Library/Ruby/Gems/1.8/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ +body.bp sup, body.bp sub { + line-height: 0; +} +/* line 67, ../../../../../Library/Ruby/Gems/1.8/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ +body.bp abbr, body.bp acronym { + border-bottom: 1px dotted #666666; +} +/* line 68, ../../../../../Library/Ruby/Gems/1.8/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ +body.bp address { + margin: 0 0 1.5em; + font-style: italic; +} +/* line 69, ../../../../../Library/Ruby/Gems/1.8/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ +body.bp del { + color: #666666; +} +/* line 70, ../../../../../Library/Ruby/Gems/1.8/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ +body.bp pre { + margin: 1.5em 0; + white-space: pre; +} +/* line 71, ../../../../../Library/Ruby/Gems/1.8/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ +body.bp pre, body.bp code, body.bp tt { + font: 1em "andale mono", "lucida console", monospace; + line-height: 1.5; +} +/* line 72, ../../../../../Library/Ruby/Gems/1.8/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ +body.bp li ul, body.bp li ol { + margin: 0; +} +/* line 73, ../../../../../Library/Ruby/Gems/1.8/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ +body.bp ul, body.bp ol { + margin: 0 1.5em 1.5em 0; + padding-left: 1.5em; +} +/* line 74, ../../../../../Library/Ruby/Gems/1.8/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ +body.bp ul { + list-style-type: disc; +} +/* line 75, ../../../../../Library/Ruby/Gems/1.8/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ +body.bp ol { + list-style-type: decimal; +} +/* line 76, ../../../../../Library/Ruby/Gems/1.8/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ +body.bp dl { + margin: 0 0 1.5em 0; +} +/* line 77, ../../../../../Library/Ruby/Gems/1.8/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ +body.bp dl dt { + font-weight: bold; +} +/* line 78, ../../../../../Library/Ruby/Gems/1.8/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ +body.bp dd { + margin-left: 1.5em; +} +/* line 79, ../../../../../Library/Ruby/Gems/1.8/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ +body.bp table { + margin-bottom: 1.4em; + width: 100%; +} +/* line 80, ../../../../../Library/Ruby/Gems/1.8/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ +body.bp th { + font-weight: bold; +} +/* line 81, ../../../../../Library/Ruby/Gems/1.8/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ +body.bp thead th { + background: #c3d9ff; +} +/* line 82, ../../../../../Library/Ruby/Gems/1.8/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ +body.bp th, body.bp td, body.bp caption { + padding: 4px 10px 4px 5px; +} +/* line 85, ../../../../../Library/Ruby/Gems/1.8/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ +body.bp table.striped tr:nth-child(even) td, +body.bp table tr.even td { + background: #e5ecf9; +} +/* line 86, ../../../../../Library/Ruby/Gems/1.8/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ +body.bp tfoot { + font-style: italic; +} +/* line 87, ../../../../../Library/Ruby/Gems/1.8/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ +body.bp caption { + background: #eeeeee; +} +/* line 88, ../../../../../Library/Ruby/Gems/1.8/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ +body.bp .quiet { + color: #666666; +} +/* line 89, ../../../../../Library/Ruby/Gems/1.8/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ +body.bp .loud { + color: #111111; +} +/* line 9, ../../../../../Library/Ruby/Gems/1.8/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/_utilities.scss */ +body.bp .clear { + clear: both; +} +/* line 12, ../../../../../Library/Ruby/Gems/1.8/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/_utilities.scss */ +body.bp .nowrap { + white-space: nowrap; +} +/* line 16, ../../../../../Library/Ruby/Gems/1.8/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/_utilities.scss */ +body.bp .clearfix { + overflow: hidden; + *zoom: 1; +} +/* line 18, ../../../../../Library/Ruby/Gems/1.8/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/_utilities.scss */ +body.bp .small { + font-size: 0.8em; + margin-bottom: 1.875em; + line-height: 1.875em; +} +/* line 22, ../../../../../Library/Ruby/Gems/1.8/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/_utilities.scss */ +body.bp .large { + font-size: 1.2em; + line-height: 2.5em; + margin-bottom: 1.25em; +} +/* line 26, ../../../../../Library/Ruby/Gems/1.8/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/_utilities.scss */ +body.bp .first { + margin-left: 0; + padding-left: 0; +} +/* line 29, ../../../../../Library/Ruby/Gems/1.8/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/_utilities.scss */ +body.bp .last { + margin-right: 0; + padding-right: 0; +} +/* line 32, ../../../../../Library/Ruby/Gems/1.8/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/_utilities.scss */ +body.bp .top { + margin-top: 0; + padding-top: 0; +} +/* line 35, ../../../../../Library/Ruby/Gems/1.8/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/_utilities.scss */ +body.bp .bottom { + margin-bottom: 0; + padding-bottom: 0; +} +/* line 25, ../../../../../Library/Ruby/Gems/1.8/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/_debug.scss */ +body.bp .showgrid { + background-image: -webkit-gradient(linear, 50% 100%, 50% 0%, color-stop(5%, rgba(0, 0, 0, 0.5)), color-stop(5%, rgba(0, 0, 0, 0))), -webkit-gradient(linear, 0% 50%, 944 50%, color-stop(0%, rgba(0, 0, 0, 0)), color-stop(0%, rgba(100, 100, 225, 0.25)), color-stop(7.458%, rgba(100, 100, 225, 0.25)), color-stop(7.458%, rgba(0, 0, 0, 0)), color-stop(10%, rgba(0, 0, 0, 0)), color-stop(10%, rgba(100, 100, 225, 0.25)), color-stop(17.458%, rgba(100, 100, 225, 0.25)), color-stop(17.458%, rgba(0, 0, 0, 0)), color-stop(20%, rgba(0, 0, 0, 0)), color-stop(20%, rgba(100, 100, 225, 0.25)), color-stop(27.458%, rgba(100, 100, 225, 0.25)), color-stop(27.458%, rgba(0, 0, 0, 0)), color-stop(30.0%, rgba(0, 0, 0, 0)), color-stop(30.0%, rgba(100, 100, 225, 0.25)), color-stop(37.458%, rgba(100, 100, 225, 0.25)), color-stop(37.458%, rgba(0, 0, 0, 0)), color-stop(40%, rgba(0, 0, 0, 0)), color-stop(40%, rgba(100, 100, 225, 0.25)), color-stop(47.458%, rgba(100, 100, 225, 0.25)), color-stop(47.458%, rgba(0, 0, 0, 0)), color-stop(50%, rgba(0, 0, 0, 0)), color-stop(50%, rgba(100, 100, 225, 0.25)), color-stop(57.458%, rgba(100, 100, 225, 0.25)), color-stop(57.458%, rgba(0, 0, 0, 0)), color-stop(60%, rgba(0, 0, 0, 0)), color-stop(60.0%, rgba(100, 100, 225, 0.25)), color-stop(67.458%, rgba(100, 100, 225, 0.25)), color-stop(67.458%, rgba(0, 0, 0, 0)), color-stop(70%, rgba(0, 0, 0, 0)), color-stop(70%, rgba(100, 100, 225, 0.25)), color-stop(77.458%, rgba(100, 100, 225, 0.25)), color-stop(77.458%, rgba(0, 0, 0, 0)), color-stop(80%, rgba(0, 0, 0, 0)), color-stop(80%, rgba(100, 100, 225, 0.25)), color-stop(87.458%, rgba(100, 100, 225, 0.25)), color-stop(87.458%, rgba(0, 0, 0, 0)), color-stop(90%, rgba(0, 0, 0, 0)), color-stop(90%, rgba(100, 100, 225, 0.25)), color-stop(97.458%, rgba(100, 100, 225, 0.25)), color-stop(97.458%, rgba(0, 0, 0, 0)), color-stop(100%, rgba(0, 0, 0, 0))); + background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5) 5%, rgba(0, 0, 0, 0) 5%), -webkit-linear-gradient(left, rgba(0, 0, 0, 0) 0px, rgba(100, 100, 225, 0.25) 0px, rgba(100, 100, 225, 0.25) 70.4px, rgba(0, 0, 0, 0) 70.4px, rgba(0, 0, 0, 0) 94.4px, rgba(100, 100, 225, 0.25) 94.4px, rgba(100, 100, 225, 0.25) 164.8px, rgba(0, 0, 0, 0) 164.8px, rgba(0, 0, 0, 0) 188.8px, rgba(100, 100, 225, 0.25) 188.8px, rgba(100, 100, 225, 0.25) 259.2px, rgba(0, 0, 0, 0) 259.2px, rgba(0, 0, 0, 0) 283.2px, rgba(100, 100, 225, 0.25) 283.2px, rgba(100, 100, 225, 0.25) 353.6px, rgba(0, 0, 0, 0) 353.6px, rgba(0, 0, 0, 0) 377.6px, rgba(100, 100, 225, 0.25) 377.6px, rgba(100, 100, 225, 0.25) 448px, rgba(0, 0, 0, 0) 448px, rgba(0, 0, 0, 0) 472px, rgba(100, 100, 225, 0.25) 472px, rgba(100, 100, 225, 0.25) 542.4px, rgba(0, 0, 0, 0) 542.4px, rgba(0, 0, 0, 0) 566.4px, rgba(100, 100, 225, 0.25) 566.4px, rgba(100, 100, 225, 0.25) 636.8px, rgba(0, 0, 0, 0) 636.8px, rgba(0, 0, 0, 0) 660.8px, rgba(100, 100, 225, 0.25) 660.8px, rgba(100, 100, 225, 0.25) 731.2px, rgba(0, 0, 0, 0) 731.2px, rgba(0, 0, 0, 0) 755.2px, rgba(100, 100, 225, 0.25) 755.2px, rgba(100, 100, 225, 0.25) 825.6px, rgba(0, 0, 0, 0) 825.6px, rgba(0, 0, 0, 0) 849.6px, rgba(100, 100, 225, 0.25) 849.6px, rgba(100, 100, 225, 0.25) 920px, rgba(0, 0, 0, 0) 920px, rgba(0, 0, 0, 0) 944px); + background-image: -moz-linear-gradient(bottom, rgba(0, 0, 0, 0.5) 5%, rgba(0, 0, 0, 0) 5%), -moz-linear-gradient(left, rgba(0, 0, 0, 0) 0px, rgba(100, 100, 225, 0.25) 0px, rgba(100, 100, 225, 0.25) 70.4px, rgba(0, 0, 0, 0) 70.4px, rgba(0, 0, 0, 0) 94.4px, rgba(100, 100, 225, 0.25) 94.4px, rgba(100, 100, 225, 0.25) 164.8px, rgba(0, 0, 0, 0) 164.8px, rgba(0, 0, 0, 0) 188.8px, rgba(100, 100, 225, 0.25) 188.8px, rgba(100, 100, 225, 0.25) 259.2px, rgba(0, 0, 0, 0) 259.2px, rgba(0, 0, 0, 0) 283.2px, rgba(100, 100, 225, 0.25) 283.2px, rgba(100, 100, 225, 0.25) 353.6px, rgba(0, 0, 0, 0) 353.6px, rgba(0, 0, 0, 0) 377.6px, rgba(100, 100, 225, 0.25) 377.6px, rgba(100, 100, 225, 0.25) 448px, rgba(0, 0, 0, 0) 448px, rgba(0, 0, 0, 0) 472px, rgba(100, 100, 225, 0.25) 472px, rgba(100, 100, 225, 0.25) 542.4px, rgba(0, 0, 0, 0) 542.4px, rgba(0, 0, 0, 0) 566.4px, rgba(100, 100, 225, 0.25) 566.4px, rgba(100, 100, 225, 0.25) 636.8px, rgba(0, 0, 0, 0) 636.8px, rgba(0, 0, 0, 0) 660.8px, rgba(100, 100, 225, 0.25) 660.8px, rgba(100, 100, 225, 0.25) 731.2px, rgba(0, 0, 0, 0) 731.2px, rgba(0, 0, 0, 0) 755.2px, rgba(100, 100, 225, 0.25) 755.2px, rgba(100, 100, 225, 0.25) 825.6px, rgba(0, 0, 0, 0) 825.6px, rgba(0, 0, 0, 0) 849.6px, rgba(100, 100, 225, 0.25) 849.6px, rgba(100, 100, 225, 0.25) 920px, rgba(0, 0, 0, 0) 920px, rgba(0, 0, 0, 0) 944px); + background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5) 5%, rgba(0, 0, 0, 0) 5%), -o-linear-gradient(left, rgba(0, 0, 0, 0) 0px, rgba(100, 100, 225, 0.25) 0px, rgba(100, 100, 225, 0.25) 70.4px, rgba(0, 0, 0, 0) 70.4px, rgba(0, 0, 0, 0) 94.4px, rgba(100, 100, 225, 0.25) 94.4px, rgba(100, 100, 225, 0.25) 164.8px, rgba(0, 0, 0, 0) 164.8px, rgba(0, 0, 0, 0) 188.8px, rgba(100, 100, 225, 0.25) 188.8px, rgba(100, 100, 225, 0.25) 259.2px, rgba(0, 0, 0, 0) 259.2px, rgba(0, 0, 0, 0) 283.2px, rgba(100, 100, 225, 0.25) 283.2px, rgba(100, 100, 225, 0.25) 353.6px, rgba(0, 0, 0, 0) 353.6px, rgba(0, 0, 0, 0) 377.6px, rgba(100, 100, 225, 0.25) 377.6px, rgba(100, 100, 225, 0.25) 448px, rgba(0, 0, 0, 0) 448px, rgba(0, 0, 0, 0) 472px, rgba(100, 100, 225, 0.25) 472px, rgba(100, 100, 225, 0.25) 542.4px, rgba(0, 0, 0, 0) 542.4px, rgba(0, 0, 0, 0) 566.4px, rgba(100, 100, 225, 0.25) 566.4px, rgba(100, 100, 225, 0.25) 636.8px, rgba(0, 0, 0, 0) 636.8px, rgba(0, 0, 0, 0) 660.8px, rgba(100, 100, 225, 0.25) 660.8px, rgba(100, 100, 225, 0.25) 731.2px, rgba(0, 0, 0, 0) 731.2px, rgba(0, 0, 0, 0) 755.2px, rgba(100, 100, 225, 0.25) 755.2px, rgba(100, 100, 225, 0.25) 825.6px, rgba(0, 0, 0, 0) 825.6px, rgba(0, 0, 0, 0) 849.6px, rgba(100, 100, 225, 0.25) 849.6px, rgba(100, 100, 225, 0.25) 920px, rgba(0, 0, 0, 0) 920px, rgba(0, 0, 0, 0) 944px); + background-image: linear-gradient(bottom, rgba(0, 0, 0, 0.5) 5%, rgba(0, 0, 0, 0) 5%), linear-gradient(left, rgba(0, 0, 0, 0) 0px, rgba(100, 100, 225, 0.25) 0px, rgba(100, 100, 225, 0.25) 70.4px, rgba(0, 0, 0, 0) 70.4px, rgba(0, 0, 0, 0) 94.4px, rgba(100, 100, 225, 0.25) 94.4px, rgba(100, 100, 225, 0.25) 164.8px, rgba(0, 0, 0, 0) 164.8px, rgba(0, 0, 0, 0) 188.8px, rgba(100, 100, 225, 0.25) 188.8px, rgba(100, 100, 225, 0.25) 259.2px, rgba(0, 0, 0, 0) 259.2px, rgba(0, 0, 0, 0) 283.2px, rgba(100, 100, 225, 0.25) 283.2px, rgba(100, 100, 225, 0.25) 353.6px, rgba(0, 0, 0, 0) 353.6px, rgba(0, 0, 0, 0) 377.6px, rgba(100, 100, 225, 0.25) 377.6px, rgba(100, 100, 225, 0.25) 448px, rgba(0, 0, 0, 0) 448px, rgba(0, 0, 0, 0) 472px, rgba(100, 100, 225, 0.25) 472px, rgba(100, 100, 225, 0.25) 542.4px, rgba(0, 0, 0, 0) 542.4px, rgba(0, 0, 0, 0) 566.4px, rgba(100, 100, 225, 0.25) 566.4px, rgba(100, 100, 225, 0.25) 636.8px, rgba(0, 0, 0, 0) 636.8px, rgba(0, 0, 0, 0) 660.8px, rgba(100, 100, 225, 0.25) 660.8px, rgba(100, 100, 225, 0.25) 731.2px, rgba(0, 0, 0, 0) 731.2px, rgba(0, 0, 0, 0) 755.2px, rgba(100, 100, 225, 0.25) 755.2px, rgba(100, 100, 225, 0.25) 825.6px, rgba(0, 0, 0, 0) 825.6px, rgba(0, 0, 0, 0) 849.6px, rgba(100, 100, 225, 0.25) 849.6px, rgba(100, 100, 225, 0.25) 920px, rgba(0, 0, 0, 0) 920px, rgba(0, 0, 0, 0) 944px); + -moz-background-size: 100% 20px, auto; + -webkit-background-size: 100% 20px, auto; + -o-background-size: 100% 20px, auto; + background-size: 100% 20px, auto; + background-position: left top; +} +/* line 4, ../../../../../Library/Ruby/Gems/1.8/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/_interaction.scss */ +body.bp .feedback, body.bp .error, body.bp .alert, body.bp .notice, body.bp .success, body.bp .info { + padding: 0.8em; + margin-bottom: 1em; + border: 2px solid #dddddd; +} +/* line 5, ../../../../../Library/Ruby/Gems/1.8/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/_interaction.scss */ +body.bp .error, body.bp .alert { + background: #fbe3e4; + color: #8a1f11; + border-color: #fbc2c4; +} +/* line 27, ../../../../../Library/Ruby/Gems/1.8/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/_interaction.scss */ +body.bp .error a, body.bp .alert a { + color: #8a1f11; +} +/* line 7, ../../../../../Library/Ruby/Gems/1.8/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/_interaction.scss */ +body.bp .notice { + background: #fff6bf; + color: #514721; + border-color: #ffd324; +} +/* line 36, ../../../../../Library/Ruby/Gems/1.8/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/_interaction.scss */ +body.bp .notice a { + color: #514721; +} +/* line 8, ../../../../../Library/Ruby/Gems/1.8/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/_interaction.scss */ +body.bp .success { + background: #e6efc2; + color: #264409; + border-color: #c6d880; +} +/* line 45, ../../../../../Library/Ruby/Gems/1.8/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/_interaction.scss */ +body.bp .success a { + color: #264409; +} +/* line 9, ../../../../../Library/Ruby/Gems/1.8/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/_interaction.scss */ +body.bp .info { + background: #d5edf8; + color: #205791; + border-color: #92cae4; +} +/* line 54, ../../../../../Library/Ruby/Gems/1.8/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/_interaction.scss */ +body.bp .info a { + color: #205791; +} +/* line 10, ../../../../../Library/Ruby/Gems/1.8/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/_interaction.scss */ +body.bp .hide { + display: none; +} +/* line 11, ../../../../../Library/Ruby/Gems/1.8/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/_interaction.scss */ +body.bp .highlight { + background: yellow; +} +/* line 12, ../../../../../Library/Ruby/Gems/1.8/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/_interaction.scss */ +body.bp .added { + background: #006600; + color: white; +} +/* line 13, ../../../../../Library/Ruby/Gems/1.8/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/_interaction.scss */ +body.bp .removed { + background: #990000; + color: white; +} + +/* line 25, ../sass/screen.sass */ +.container { + width: 920px; + margin: 0 auto; + overflow: hidden; + *zoom: 1; + min-height: 500px; + padding-top: 100px; +} +/* line 31, ../sass/screen.sass */ +.container .title { + color: #cccccc; + font-size: 7em; + font-weight: bold; + line-height: 0.6em; + margin-bottom: 10px; + text-align: center; + text-transform: uppercase; + width: 100%; +} +/* line 41, ../sass/screen.sass */ +.container .sub-title { + color: #cccccc; + font-size: 4em; + margin-top: 0px; + text-align: center; + text-transform: uppercase; + width: 100%; +} + +/* line 49, ../sass/screen.sass */ +.progress-bar { + box-sizing: border-box; + border: 3px solid black; + display: inline; + float: left; + margin-right: 0; + width: 920px; + height: 300px; + margin-bottom: 10px; + position: relative; + z-index: 0; +} +/* line 147, ../../../../../Library/Ruby/Gems/1.8/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/_grid.scss */ +* html .progress-bar { + overflow-x: hidden; +} +/* line 58, ../sass/screen.sass */ +.progress-bar .progress-bar-inside { + background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #00c000), color-stop(100%, #008000)); + background: -webkit-linear-gradient(top, #00c000, #008000); + background: -moz-linear-gradient(top, #00c000, #008000); + background: -o-linear-gradient(top, #00c000, #008000); + background: linear-gradient(top, #00c000, #008000); + width: 100%; + height: 100%; + position: absolute; + top: 0; + left: 0; + z-index: 1; +} +/* line 67, ../sass/screen.sass */ +.progress-bar .timer-seconds { + display: inline; + float: left; + margin-right: 0; + width: 920px; + color: black; + font-size: 10em; + height: 1em; + left: 50%; + line-height: 1em; + margin-top: -0.5em; + margin-left: -0.75em; + position: absolute; + text-align: center; + top: 50%; + width: 1.5em; + z-index: 2; +} +/* line 147, ../../../../../Library/Ruby/Gems/1.8/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/_grid.scss */ +* html .progress-bar .timer-seconds { + overflow-x: hidden; +} + +/* line 82, ../sass/screen.sass */ +.club-number, .current-song { + color: #666666; + font-size: 2em; +} + +/* line 86, ../sass/screen.sass */ +.club-number { + float: left; +} + +/* line 89, ../sass/screen.sass */ +.current-song { + float: right; +}