2013-07-25 18:57:57 +00:00
|
|
|
* {
|
2013-07-25 19:35:37 +00:00
|
|
|
-moz-box-sizing: border-box;
|
2013-07-25 18:57:57 +00:00
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
|
2012-05-30 20:03:20 +00:00
|
|
|
body {
|
2013-07-25 18:57:57 +00:00
|
|
|
color: #333;
|
2013-07-25 15:54:27 +00:00
|
|
|
font-family: Verdana, Arial, sans-serif;
|
|
|
|
font-size: 12px;
|
2013-07-25 18:57:57 +00:00
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
2013-07-25 19:09:49 +00:00
|
|
|
a {
|
|
|
|
color: #54b4e8;
|
|
|
|
}
|
|
|
|
|
|
|
|
a:hover {
|
|
|
|
color: #44a0d2;
|
|
|
|
}
|
|
|
|
|
2013-07-25 18:57:57 +00:00
|
|
|
label {
|
|
|
|
display: inline-block;
|
|
|
|
margin-right: 0.5rem;
|
|
|
|
text-align: right;
|
|
|
|
width: 3rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
label:after {
|
|
|
|
content: ':';
|
2012-05-30 20:03:20 +00:00
|
|
|
}
|
|
|
|
|
2013-07-25 18:57:57 +00:00
|
|
|
input,
|
|
|
|
select,
|
2012-05-30 20:03:20 +00:00
|
|
|
textarea {
|
2013-07-25 18:57:57 +00:00
|
|
|
border: 1px solid #ccc;
|
|
|
|
border-radius: 3px;
|
|
|
|
padding: .5em;
|
2013-07-25 15:54:27 +00:00
|
|
|
font-family: Inconsolata, Consolas, Monaco, monospace;
|
|
|
|
font-size: 1.2em;
|
2013-07-25 18:57:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
select {
|
|
|
|
height: 32px;
|
|
|
|
}
|
|
|
|
|
|
|
|
textarea {
|
2013-07-25 15:54:27 +00:00
|
|
|
white-space: pre;
|
|
|
|
word-wrap: normal;
|
|
|
|
height: 200px;
|
|
|
|
width: 100%;
|
2012-05-30 20:03:20 +00:00
|
|
|
}
|
|
|
|
|
2013-07-25 18:57:57 +00:00
|
|
|
input[type="submit"] {
|
|
|
|
background-color: #f8f8f8;
|
|
|
|
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f8f8f8), to(#eee));
|
|
|
|
background-image: -webkit-linear-gradient(top, #f8f8f8, #eee);
|
|
|
|
background-image: -o-linear-gradient(top, #f8f8f8, #eee);
|
|
|
|
background-image: linear-gradient(to bottom, #f8f8f8,#eee);
|
|
|
|
background-image: -moz-linear-gradient(top, #f8f8f8, #eee);
|
|
|
|
border: 1px solid #ccc;
|
|
|
|
color: #333;
|
|
|
|
cursor: pointer;
|
|
|
|
text-shadow: 1px 1px 0 rgba( 255, 255, 255, .8 );
|
|
|
|
}
|
|
|
|
|
|
|
|
h1 {
|
|
|
|
background: #f5f5f5;
|
|
|
|
border-bottom: 1px solid #eee;
|
|
|
|
color: #555;
|
|
|
|
margin: 0;
|
|
|
|
padding: 1rem;
|
|
|
|
text-shadow: 1px 1px 0 rgba( 255, 255, 255, .8 );
|
|
|
|
}
|
|
|
|
|
2012-05-30 20:03:20 +00:00
|
|
|
h2 {
|
2013-07-25 18:57:57 +00:00
|
|
|
border-bottom: 1px solid #f8f8f8;
|
|
|
|
color: #555;
|
2013-07-25 15:54:27 +00:00
|
|
|
clear: both;
|
2013-07-25 18:57:57 +00:00
|
|
|
letter-spacing: 0.05em;
|
|
|
|
padding: 0.5rem 0;
|
|
|
|
}
|
|
|
|
|
2013-07-25 19:09:49 +00:00
|
|
|
footer {
|
|
|
|
border-top: 1px solid #eee;
|
|
|
|
color: #ccc;
|
|
|
|
opacity: 0.5;
|
|
|
|
padding: 1rem;
|
|
|
|
}
|
|
|
|
|
2013-07-25 18:57:57 +00:00
|
|
|
.randomness,
|
|
|
|
.cols {
|
|
|
|
margin: 1rem;
|
|
|
|
overflow: hidden;
|
2012-05-30 20:03:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.col {
|
2013-07-25 18:57:57 +00:00
|
|
|
width: 50%;
|
2013-07-25 15:54:27 +00:00
|
|
|
float: left;
|
2013-07-25 18:57:57 +00:00
|
|
|
padding: 0.5rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.col:first-child {
|
|
|
|
padding-left: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.col:last-child {
|
|
|
|
padding-right: 0;
|
2012-05-30 20:03:20 +00:00
|
|
|
}
|
2012-07-10 14:25:18 +00:00
|
|
|
|
|
|
|
.randomness-box {
|
2013-07-25 15:54:27 +00:00
|
|
|
width: 30em;
|
2012-07-10 14:25:18 +00:00
|
|
|
}
|
2013-07-25 18:57:57 +00:00
|
|
|
|
|
|
|
.randomness ul {
|
|
|
|
list-style-type: none;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|