2011-03-21 22:49:03 -04:00
|
|
|
/**
|
|
|
|
* ease.js color scheme
|
|
|
|
*
|
|
|
|
* Inspired by Tango Icon Theme
|
|
|
|
*/
|
|
|
|
|
2011-03-23 22:34:44 -04:00
|
|
|
html, body {
|
2011-11-06 00:27:17 -04:00
|
|
|
background-color: #eeeeec;
|
2011-03-23 22:34:44 -04:00
|
|
|
|
|
|
|
margin: 0px 0px 1.5em 0px;
|
|
|
|
padding: 0;
|
|
|
|
|
|
|
|
font-family: arial, serif;
|
|
|
|
font-size: 16px;
|
2011-03-21 22:49:03 -04:00
|
|
|
}
|
|
|
|
|
2011-03-23 22:34:44 -04:00
|
|
|
#header {
|
|
|
|
position: relative;
|
2011-03-21 22:49:03 -04:00
|
|
|
|
2011-03-23 22:34:44 -04:00
|
|
|
background-color: #2e3436;
|
2011-11-06 01:19:49 -04:00
|
|
|
color: #babdb6;
|
2011-03-23 22:34:44 -04:00
|
|
|
}
|
2011-03-23 01:01:57 -04:00
|
|
|
|
2011-11-06 00:27:17 -04:00
|
|
|
#header-content {
|
2011-11-06 01:19:49 -04:00
|
|
|
background-image: url('images/logo.png');
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-position: 0px 50px;
|
|
|
|
|
2011-11-06 00:27:17 -04:00
|
|
|
margin: 0px auto;
|
2011-11-06 01:19:49 -04:00
|
|
|
height: 150px;
|
2011-11-06 00:27:17 -04:00
|
|
|
width: 800px;
|
|
|
|
}
|
|
|
|
|
2011-03-23 22:34:44 -04:00
|
|
|
#header h1 {
|
2011-11-06 01:19:49 -04:00
|
|
|
display: none;
|
2011-11-06 00:27:17 -04:00
|
|
|
margin: 0.25em 0px 0px 0px;
|
|
|
|
|
|
|
|
font-size: 4.5em;
|
|
|
|
color: #619ddb;
|
|
|
|
}
|
|
|
|
|
|
|
|
#header h1 .suffix {
|
|
|
|
position: relative;
|
|
|
|
top: 0.15em;
|
|
|
|
|
|
|
|
font-size: 0.8em;
|
|
|
|
color: #ce5c00;
|
|
|
|
}
|
|
|
|
|
|
|
|
#header h2.desc {
|
2011-11-06 01:19:49 -04:00
|
|
|
display: none;
|
|
|
|
|
2011-11-06 00:27:17 -04:00
|
|
|
position: relative;
|
|
|
|
top: -1.50em;
|
|
|
|
left: 0.30em;
|
|
|
|
|
|
|
|
font-size: 0.6em;
|
|
|
|
font-weight: normal;
|
2011-03-23 22:34:44 -04:00
|
|
|
|
2011-11-06 00:27:17 -04:00
|
|
|
padding: 0px;
|
|
|
|
margin: 0px;
|
2011-03-21 22:49:03 -04:00
|
|
|
}
|
|
|
|
|
2011-03-23 01:01:57 -04:00
|
|
|
#content {
|
|
|
|
position: relative;
|
|
|
|
|
2011-03-23 22:34:44 -04:00
|
|
|
background-color: white;
|
2011-11-06 00:27:17 -04:00
|
|
|
background-image: -webkit-gradient(
|
|
|
|
linear,
|
|
|
|
left top,
|
|
|
|
left bottom,
|
|
|
|
color-stop(0, rgb(255,255,255)),
|
|
|
|
color-stop(1, rgb(238,238,236))
|
|
|
|
);
|
|
|
|
background-image: -moz-linear-gradient(
|
|
|
|
center top,
|
|
|
|
rgb(255,255,255) 0%,
|
|
|
|
rgb(238,238,236) 100%
|
|
|
|
);
|
2011-03-23 22:34:44 -04:00
|
|
|
|
|
|
|
margin: 0px auto;
|
|
|
|
padding: 0.5em 1em 1em 1em;
|
|
|
|
|
|
|
|
width: 800px;
|
2011-11-06 00:27:17 -04:00
|
|
|
|
|
|
|
font-size: 0.9em;
|
2011-03-23 00:47:12 -04:00
|
|
|
}
|
|
|
|
|
2011-03-23 22:34:44 -04:00
|
|
|
#menu {
|
2011-11-06 00:27:17 -04:00
|
|
|
background-color: #3465a4;
|
|
|
|
border-bottom: 4px solid #204a87;
|
2011-03-23 00:47:12 -04:00
|
|
|
}
|
|
|
|
|
2011-03-23 22:34:44 -04:00
|
|
|
#menu ul {
|
|
|
|
padding: 0px;
|
2011-11-06 00:27:17 -04:00
|
|
|
height: 3.5em;
|
2011-03-21 22:49:03 -04:00
|
|
|
|
2011-03-23 22:34:44 -04:00
|
|
|
margin: 0px auto;
|
|
|
|
width: 800px;
|
2011-03-21 22:49:03 -04:00
|
|
|
}
|
|
|
|
|
2011-03-23 22:34:44 -04:00
|
|
|
#menu ul li {
|
2011-03-23 00:47:12 -04:00
|
|
|
list-style: none;
|
2011-03-23 22:34:44 -04:00
|
|
|
padding: 0px;
|
2011-03-23 00:47:12 -04:00
|
|
|
|
|
|
|
float: left;
|
2011-11-06 00:27:17 -04:00
|
|
|
line-height: 3em;
|
2011-03-21 22:49:03 -04:00
|
|
|
}
|
|
|
|
|
2011-03-23 22:34:44 -04:00
|
|
|
#menu a, #menu a:link {
|
|
|
|
display: inline-block;
|
2011-11-23 22:53:28 -05:00
|
|
|
padding: 0.25em 1.25em;
|
2011-03-23 22:34:44 -04:00
|
|
|
|
|
|
|
color: #041c40;
|
|
|
|
text-decoration: none;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
2011-11-06 00:27:17 -04:00
|
|
|
#menu a:hover,
|
2011-11-23 22:49:59 -05:00
|
|
|
body.index #about a,
|
|
|
|
body.manual-select #manual a {
|
2011-11-06 00:27:17 -04:00
|
|
|
background-color: #204a87;
|
|
|
|
}
|
|
|
|
|
2011-11-23 22:49:59 -05:00
|
|
|
body.index #about a,
|
|
|
|
body.manual-select #manual a {
|
2011-11-06 00:27:17 -04:00
|
|
|
color: #f57900;
|
2011-03-23 22:34:44 -04:00
|
|
|
}
|
|
|
|
|
2011-03-21 22:49:03 -04:00
|
|
|
p.copyright {
|
2011-03-23 00:47:12 -04:00
|
|
|
position: fixed;
|
|
|
|
bottom: 0px;
|
2011-03-23 22:34:44 -04:00
|
|
|
left: 0px;
|
|
|
|
right: 0px;
|
|
|
|
|
|
|
|
margin: 0;
|
|
|
|
padding: 1em;
|
|
|
|
|
2011-11-06 00:27:17 -04:00
|
|
|
color: #2e3436;
|
2011-03-23 00:47:12 -04:00
|
|
|
|
|
|
|
font-size: 0.8em;
|
|
|
|
text-align: center;
|
2011-03-21 22:49:03 -04:00
|
|
|
}
|
|
|
|
|
2011-03-23 22:34:44 -04:00
|
|
|
p.copyright a, p.copyright a:link {
|
2011-11-06 00:27:17 -04:00
|
|
|
color: #2e3436;
|
2011-03-23 22:34:44 -04:00
|
|
|
}
|
|
|
|
|
2011-03-24 19:37:56 -04:00
|
|
|
@-webkit-keyframes pulse {
|
|
|
|
0% {
|
|
|
|
-webkit-box-shadow: 0 0 0px #ffffff;
|
|
|
|
}
|
|
|
|
100% {
|
|
|
|
-webkit-box-shadow: 0 0 5px #ffffff;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-03-24 22:22:31 -04:00
|
|
|
.btn {
|
|
|
|
display: inline-block;
|
2011-03-24 00:01:26 -04:00
|
|
|
|
|
|
|
background-color: #f57900;
|
2011-03-24 22:22:31 -04:00
|
|
|
color: white;
|
|
|
|
font-weight: bold;
|
|
|
|
cursor: pointer;
|
|
|
|
text-align: center;
|
2011-03-24 00:01:26 -04:00
|
|
|
|
|
|
|
padding: 0.25em 0.5em;
|
|
|
|
|
2011-03-24 22:22:31 -04:00
|
|
|
border: 1px solid #ce5c00;
|
|
|
|
border-radius: 0.25em;
|
2011-03-24 00:01:26 -04:00
|
|
|
-moz-border-radius: 0.25em;
|
|
|
|
|
|
|
|
background-image: -webkit-gradient(
|
|
|
|
linear,
|
|
|
|
left bottom,
|
|
|
|
left top,
|
|
|
|
color-stop(0, rgb(245,123,0)),
|
|
|
|
color-stop(1, rgb(206,93,0))
|
|
|
|
);
|
|
|
|
background-image: -moz-linear-gradient(
|
|
|
|
center bottom,
|
|
|
|
rgb(245,123,0) 0%,
|
|
|
|
rgb(206,93,0) 100%
|
|
|
|
);
|
2011-03-24 22:22:31 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.btn.green {
|
|
|
|
border: 1px solid #4e9a06;
|
|
|
|
|
|
|
|
background-image: -webkit-gradient(
|
|
|
|
linear,
|
|
|
|
left bottom,
|
|
|
|
left top,
|
|
|
|
color-stop(0, rgb(116,210,22)),
|
|
|
|
color-stop(1, rgb(139,226,52))
|
|
|
|
);
|
|
|
|
background-image: -moz-linear-gradient(
|
|
|
|
center bottom,
|
|
|
|
rgb(116,210,22) 0%,
|
|
|
|
rgb(139,226,52) 100%
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
.btn.med {
|
|
|
|
width: 75px;
|
2011-03-24 19:37:56 -04:00
|
|
|
|
2011-03-24 22:22:31 -04:00
|
|
|
font-size: 1.5em;
|
|
|
|
text-shadow: black 2px 2px 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.btn.large {
|
|
|
|
width: 100px;
|
|
|
|
|
|
|
|
font-size: 2em;
|
|
|
|
text-shadow: black 2px 2px 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.glow {
|
2011-03-24 19:37:56 -04:00
|
|
|
-webkit-box-shadow: 0 0 5px #ffffff;
|
2011-03-24 22:22:31 -04:00
|
|
|
-moz-box-shadow: 0 0 5px #ffffff;
|
|
|
|
box-shadow: 0 0 5px #ffffff;
|
2011-03-24 19:37:56 -04:00
|
|
|
|
2011-03-24 22:22:31 -04:00
|
|
|
-webkit-transition: -webkit-box-shadow 0.25s linear;
|
2011-03-24 19:37:56 -04:00
|
|
|
-moz-transition-property: -moz-box-shadow;
|
|
|
|
-moz-transition-duration: 0.25s;
|
|
|
|
|
2011-03-24 22:22:31 -04:00
|
|
|
-webkit-animation-name: pulse;
|
|
|
|
-webkit-animation-duration: 1s;
|
|
|
|
-webkit-animation-direction: alternate;
|
2011-03-24 19:37:56 -04:00
|
|
|
-webkit-animation-timing-function: ease-in-out;
|
|
|
|
-webkit-animation-iteration-count: 1;
|
|
|
|
}
|
|
|
|
|
2011-03-24 22:22:31 -04:00
|
|
|
.glow:hover {
|
|
|
|
-webkit-box-shadow: 0 0 10px #ffffff;
|
|
|
|
-moz-box-shadow: 0 0 10px #ffffff;
|
|
|
|
box-shadow: 0 0 10px #ffffff;
|
|
|
|
}
|
|
|
|
|
|
|
|
#try {
|
|
|
|
display: block;
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
margin: 0px auto;
|
2011-11-06 01:19:49 -04:00
|
|
|
top: 1.5em;
|
2011-03-24 00:01:26 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
#trybox {
|
2011-03-24 22:22:31 -04:00
|
|
|
position: relative;
|
|
|
|
|
|
|
|
border: 1px solid #eeeeec;
|
|
|
|
border-radius: 0.5em;
|
2011-03-24 00:01:26 -04:00
|
|
|
-moz-border-radius: 0.5em;
|
|
|
|
|
|
|
|
background-image: -webkit-gradient(
|
|
|
|
linear,
|
|
|
|
left bottom,
|
|
|
|
left top,
|
|
|
|
color-stop(0, rgb(186,189,182)),
|
|
|
|
color-stop(1, rgb(238,238,236))
|
|
|
|
);
|
|
|
|
background-image: -moz-linear-gradient(
|
|
|
|
center bottom,
|
|
|
|
rgb(186,189,182) 0%,
|
|
|
|
rgb(238,238,236) 100%
|
|
|
|
);
|
|
|
|
|
2011-03-24 22:22:31 -04:00
|
|
|
padding: 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
#trybox h2 {
|
2011-03-24 23:54:08 -04:00
|
|
|
margin: 0px;
|
2011-03-24 22:22:31 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
#trybox textarea {
|
|
|
|
width: 100%;
|
|
|
|
height: 20em;
|
|
|
|
}
|
|
|
|
|
|
|
|
#trybox #trybtns {
|
|
|
|
text-align: right;
|
2011-03-24 00:01:26 -04:00
|
|
|
}
|
|
|
|
|
2011-03-24 23:45:33 -04:00
|
|
|
#try-console {
|
|
|
|
width: 99%;
|
|
|
|
height: 10em;
|
|
|
|
|
|
|
|
font-size: 0.8em;
|
|
|
|
font-family: monospace;
|
|
|
|
}
|
|
|
|
|