type/css/main.css

74 lines
956 B
CSS
Raw Normal View History

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 {
2016-10-02 14:50:15 +00:00
margin-top: 33px;
}
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
}