mirror of https://github.com/svaarala/duktape.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
69 lines
981 B
69 lines
981 B
body {
|
|
padding: 20px;
|
|
}
|
|
|
|
h1 {
|
|
font-family: sans-serif;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
#dukweb-intro {
|
|
width: 100%;
|
|
color: #aaaaaa;
|
|
font-style: italic;
|
|
margin: 3ex 0 0 0;
|
|
padding: 0;
|
|
}
|
|
|
|
#dukweb-input-wrapper {
|
|
height: 20em;
|
|
border: 2px solid #cccccc;
|
|
border-radius: 5px;
|
|
margin: 3ex 0 0 0;
|
|
padding: 6px;
|
|
}
|
|
#dukweb-input {
|
|
border: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
overflow: auto;
|
|
}
|
|
|
|
#dukweb-output {
|
|
height: 20em;
|
|
border: 2px solid #cccccc;
|
|
border-radius: 5px;
|
|
margin: 0;
|
|
padding: 6px;
|
|
overflow: auto;
|
|
}
|
|
#dukweb-output.error {
|
|
color: #ff0000;
|
|
font-weight: bold;
|
|
}
|
|
|
|
#dukweb-evaluate-wrapper {
|
|
margin: 3ex 0 3ex 0;
|
|
padding: 0;
|
|
width: 100%;
|
|
text-align: center;
|
|
}
|
|
#dukweb-evaluate {
|
|
color: #333333;
|
|
background: #eeeeff;
|
|
font-family: sans-serif;
|
|
font-size: 200%;
|
|
border: 2px solid #ccccff;
|
|
border-radius: 5px;
|
|
padding: 8px;
|
|
margin: 0;
|
|
}
|
|
#dukweb-evaluate:hover {
|
|
background: #f8f8ff;
|
|
cursor: pointer;
|
|
}
|
|
#dukweb-evaluate span {
|
|
}
|
|
|