2016-10-02 14:34:57 +00:00
|
|
|
/* General */
|
|
|
|
.error {
|
|
|
|
border: 1px solid red;
|
|
|
|
border-radius: 3px;
|
|
|
|
background-color: rgba(255, 0, 0, 0.5);
|
|
|
|
padding: 5px;
|
|
|
|
font-size: 2em;
|
|
|
|
font-family: "Helvetica", Arial, sans-serif;
|
|
|
|
}
|
|
|
|
|
2016-10-02 14:50:15 +00:00
|
|
|
/* Type */
|
2016-09-28 22:33:02 +00:00
|
|
|
.invalid {
|
|
|
|
background-color: red;
|
|
|
|
color: white !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.incomplete {
|
|
|
|
color: gray !important;
|
2016-09-29 16:24:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#editor {
|
|
|
|
display: none;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
}
|
2016-10-01 15:26:48 +00:00
|
|
|
|
2016-10-02 14:50:15 +00:00
|
|
|
#toolbar {
|
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
|
|
|
top: 0;
|
|
|
|
width: 100%;
|
|
|
|
padding: 7px;
|
|
|
|
height: 20px;
|
|
|
|
}
|
|
|
|
|
2016-10-02 22:01:26 +00:00
|
|
|
#toolbar > #info {
|
|
|
|
float: right;
|
|
|
|
margin-right: 14px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#toolbar > #info > #paused {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
2016-10-02 15:10:08 +00:00
|
|
|
#content {
|
2017-06-04 10:03:46 +00:00
|
|
|
margin-top: 50px;
|
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
|
|
|
width: 80%;
|
|
|
|
border: 1px solid;
|
2016-10-02 14:50:15 +00:00
|
|
|
}
|
|
|
|
|
2017-06-04 10:03:46 +00:00
|
|
|
button {
|
|
|
|
background-color:#4a6ca8;
|
|
|
|
-moz-border-radius:7px;
|
|
|
|
-webkit-border-radius:7px;
|
|
|
|
border-radius:7px;
|
|
|
|
border:1px solid #4e6096;
|
|
|
|
display:inline-block;
|
|
|
|
cursor:pointer;
|
|
|
|
color:#ffffff;
|
|
|
|
font-family:Arial;
|
|
|
|
font-size:17px;
|
|
|
|
padding:6px 16px;
|
|
|
|
text-decoration:none;
|
|
|
|
text-shadow:0px 1px 0px #283966;
|
|
|
|
}
|
|
|
|
button:hover {
|
|
|
|
background-color:#476e9e;
|
|
|
|
}
|
|
|
|
button:active {
|
|
|
|
position:relative;
|
|
|
|
top:1px;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2016-10-02 22:01:26 +00:00
|
|
|
#content.paused > .CodeMirror {
|
|
|
|
opacity: 0.5;
|
|
|
|
}
|
|
|
|
|
2016-10-02 14:34:57 +00:00
|
|
|
/* Index */
|
|
|
|
.prev-list {
|
|
|
|
padding: 0px;
|
|
|
|
margin: 0px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.prev-list > li {
|
|
|
|
display: inline-block;
|
2016-10-02 14:40:52 +00:00
|
|
|
width: 48%;
|
2016-10-02 14:34:57 +00:00
|
|
|
list-style: none;
|
|
|
|
margin: 5px;
|
2016-10-01 15:26:48 +00:00
|
|
|
padding: 5px;
|
2016-10-02 14:34:57 +00:00
|
|
|
border: #CCC 1px solid;
|
|
|
|
border-radius: 3px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.prev-list > li > a,
|
|
|
|
.prev-list > li > a:visited {
|
|
|
|
text-decoration: none;
|
|
|
|
color: blue;
|
2016-10-01 15:26:48 +00:00
|
|
|
}
|
2017-06-04 10:03:46 +00:00
|
|
|
|
|
|
|
body {
|
|
|
|
font-family: "Open Sans";
|
|
|
|
}
|