Created
July 7, 2013 15:38
-
-
Save thomasdegry/5943848 to your computer and use it in GitHub Desktop.
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
/* line 1, ../sass/modules/_console.scss */ | |
#graphic-output { | |
-webkit-transition-property: all; | |
-moz-transition-property: all; | |
-o-transition-property: all; | |
transition-property: all; | |
-webkit-transition-duration: 0.3s; | |
-moz-transition-duration: 0.3s; | |
-o-transition-duration: 0.3s; | |
transition-duration: 0.3s; | |
-webkit-transition-timing-function: ease-in; | |
-moz-transition-timing-function: ease-in; | |
-o-transition-timing-function: ease-in; | |
transition-timing-function: ease-in; | |
display: none; | |
position: absolute; | |
top: 80px; | |
left: 50%; | |
width: 56%; | |
margin-left: -28%; | |
} | |
/* line 10, ../sass/modules/_console.scss */ | |
#graphic-output img { | |
-webkit-border-radius: 4px; | |
-moz-border-radius: 4px; | |
-ms-border-radius: 4px; | |
-o-border-radius: 4px; | |
border-radius: 4px; | |
width: 100%; | |
} | |
/* line 16, ../sass/modules/_console.scss */ | |
#discover { | |
-webkit-transition-property: all; | |
-moz-transition-property: all; | |
-o-transition-property: all; | |
transition-property: all; | |
-webkit-transition-duration: 0.3s; | |
-moz-transition-duration: 0.3s; | |
-o-transition-duration: 0.3s; | |
transition-duration: 0.3s; | |
-webkit-transition-timing-function: ease-in; | |
-moz-transition-timing-function: ease-in; | |
-o-transition-timing-function: ease-in; | |
transition-timing-function: ease-in; | |
position: absolute; | |
bottom: -80px; | |
left: 0; | |
width: 100%; | |
height: 65px; | |
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0); | |
opacity: 0; | |
background: #fa8248; | |
-webkit-border-radius: 4px; | |
-moz-border-radius: 4px; | |
-ms-border-radius: 4px; | |
-o-border-radius: 4px; | |
border-radius: 4px; | |
-webkit-box-sizing: border-box; | |
-moz-box-sizing: border-box; | |
box-sizing: border-box; | |
padding-left: 25px; | |
} | |
/* line 28, ../sass/modules/_console.scss */ | |
#discover span { | |
color: #ebf0f1; | |
font-family: "Proxima Nova Reg"; | |
font-size: 1.2em; | |
font-style: normal; | |
font-weight: normal; | |
line-height: 1.45; | |
line-height: 65px; | |
} | |
/* line 33, ../sass/modules/_console.scss */ | |
#discover a { | |
-webkit-transition-property: all; | |
-moz-transition-property: all; | |
-o-transition-property: all; | |
transition-property: all; | |
-webkit-transition-duration: 0.3s; | |
-moz-transition-duration: 0.3s; | |
-o-transition-duration: 0.3s; | |
transition-duration: 0.3s; | |
-webkit-transition-timing-function: ease-in; | |
-moz-transition-timing-function: ease-in; | |
-o-transition-timing-function: ease-in; | |
transition-timing-function: ease-in; | |
background: #ebf0f1; | |
-webkit-border-radius: 4px; | |
-moz-border-radius: 4px; | |
-ms-border-radius: 4px; | |
-o-border-radius: 4px; | |
border-radius: 4px; | |
color: #fa8248; | |
font-family: "Proxima Nova Reg"; | |
font-size: 1em; | |
font-style: normal; | |
font-weight: normal; | |
line-height: 1.45; | |
text-decoration: none; | |
position: absolute; | |
bottom: 13px; | |
right: 20px; | |
height: 38px; | |
line-height: 38px; | |
padding-left: 20px; | |
padding-right: 20px; | |
} | |
/* line 46, ../sass/modules/_console.scss */ | |
#discover a:hover { | |
background: #e4e9ea; | |
} | |
/* line 51, ../sass/modules/_console.scss */ | |
#discover.isVisible { | |
bottom: 0px; | |
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100); | |
opacity: 1; | |
} | |
/* line 57, ../sass/modules/_console.scss */ | |
#console-wrapper .jqconsole { | |
padding: 15px; | |
font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', 'Consolas', 'source-code-pro', monospace; | |
line-height: 1.3em; | |
font-size: 0.9em; | |
white-space: pre; | |
} | |
/* line 64, ../sass/modules/_console.scss */ | |
#console-wrapper .jqconsole mark { | |
-webkit-appearance: none; | |
-moz-appearance: none; | |
appearance: none; | |
background: none; | |
color: #fa8248; | |
} | |
/* line 71, ../sass/modules/_console.scss */ | |
#console-wrapper .jqconsole-cursor { | |
background-color: #fa8248; | |
-webkit-animation-name: blinker; | |
-moz-animation-name: blinker; | |
-ms-animation-name: blinker; | |
-o-animation-name: blinker; | |
-webkit-animation-iteration-count: infinite; | |
-moz-animation-iteration-count: infinite; | |
-ms-animation-iteration-count: infinite; | |
-o-animation-iteration-count: infinite; | |
-webkit-animation-timing-function: cubic-bezier(1, 0, 0, 1); | |
-ms-animation-timing-function: cubic-bezier(1, 0, 0, 1); | |
-o-animation-timing-function: cubic-bezier(1, 0, 0, 1); | |
-moz-animation-timing-function: cubic-bezier(1, 0, 0, 1); | |
-webkit-animation-duration: 1s; | |
-moz-animation-duration: 1s; | |
-o-animation-duration: 1s; | |
-ms-animation-duration: 1s; | |
} | |
@-webkit-keyframes blinker { | |
/* line 92, ../sass/modules/_console.scss */ | |
from { | |
opacity: 1.0; | |
} | |
/* line 93, ../sass/modules/_console.scss */ | |
to { | |
opacity: 0.0; | |
} | |
} | |
@-moz-keyframes blinker { | |
/* line 97, ../sass/modules/_console.scss */ | |
from { | |
opacity: 1.0; | |
} | |
/* line 98, ../sass/modules/_console.scss */ | |
to { | |
opacity: 0.0; | |
} | |
} | |
@-ms-keyframes blinker { | |
/* line 102, ../sass/modules/_console.scss */ | |
from { | |
opacity: 1.0; | |
} | |
/* line 103, ../sass/modules/_console.scss */ | |
to { | |
opacity: 0.0; | |
} | |
} | |
@-o-keyframes blinker { | |
/* line 107, ../sass/modules/_console.scss */ | |
from { | |
opacity: 1.0; | |
} | |
/* line 108, ../sass/modules/_console.scss */ | |
to { | |
opacity: 0.0; | |
} | |
} | |
/* line 111, ../sass/modules/_console.scss */ | |
#console-wrapper .jqconsole-blurred .jqconsole-cursor { | |
background-color: #666; | |
-webkit-animation-name: none; | |
-moz-animation-name: none; | |
-ms-animation-name: none; | |
-o-animation-name: none; | |
} | |
/* line 119, ../sass/modules/_console.scss */ | |
#console-wrapper .jqconsole-prompt { | |
word-wrap: break-word; | |
color: #333538; | |
} | |
/* line 124, ../sass/modules/_console.scss */ | |
#console-wrapper .jqconsole-old-prompt { | |
color: #333538; | |
word-wrap: break-word; | |
font-weight: normal; | |
} | |
/* line 130, ../sass/modules/_console.scss */ | |
#console-wrapper .jqconsole-input { | |
color: #fa8248; | |
} | |
/* line 134, ../sass/modules/_console.scss */ | |
#console-wrapper .jqconsole-old-input { | |
color: #bb0; | |
font-weight: normal; | |
} | |
/* line 139, ../sass/modules/_console.scss */ | |
#console-wrapper .jqconsole-output { | |
color: #fa8248; | |
} | |
/* line 143, ../sass/modules/_console.scss */ | |
#console-wrapper .jqconsole-output-cg { | |
margin-top: 10px; | |
margin-bottom: 10px; | |
} | |
/* line 149, ../sass/modules/_console.scss */ | |
#console-wrapper .jqconsole-output-error { | |
white-space: normal; | |
display: block; | |
color: rgba(213, 12, 12, 0.59); | |
} | |
/* line 155, ../sass/modules/_console.scss */ | |
#console-wrapper .jqconsole-output-smaller { | |
font-size: 0.8em; | |
word-wrap: break-all; | |
} | |
/* line 160, ../sass/modules/_console.scss */ | |
#console-wrapper .jqconsole-prompt { | |
color: #fa8248; | |
} | |
/* line 164, ../sass/modules/_console.scss */ | |
#console-wrapper .jqconsole-prompt span:nth-child(2) span:first-child { | |
padding-right: 10px; | |
} | |
/* line 169, ../sass/modules/_console.scss */ | |
#console-wrapper .jqconsole-output-cg, #console-wrapper span.jqconsole-header { | |
display: block; | |
white-space: normal; | |
-webkit-border-radius: 4px; | |
-moz-border-radius: 4px; | |
-ms-border-radius: 4px; | |
-o-border-radius: 4px; | |
border-radius: 4px; | |
-webkit-box-sizing: border-box; | |
-moz-box-sizing: border-box; | |
box-sizing: border-box; | |
padding: 8px; | |
background: #d8ddde; | |
} | |
/* line 177, ../sass/modules/_console.scss */ | |
#console-wrapper .jqconsole-output-cg span, #console-wrapper span.jqconsole-header span { | |
white-space: normal !important; | |
} | |
/* line 182, ../sass/modules/_console.scss */ | |
#console-wrapper span.jqconsole-header { | |
margin-bottom: 10px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment