86 lines
1.7 KiB
Plaintext
86 lines
1.7 KiB
Plaintext
/* Copyright (c) Paul Tagliamonte <paultag@debian.org> 2013 under the
|
|
* terms and conditions of Hy it's self. */
|
|
|
|
.sans-serif {
|
|
font-family: cantarell, tahoma, sans-serif;
|
|
}
|
|
|
|
.reset {
|
|
padding: 0px;
|
|
margin: 0px;
|
|
}
|
|
|
|
body, html {
|
|
height: 100%;
|
|
color: #000000;
|
|
font-family: monospace;
|
|
.reset;
|
|
}
|
|
|
|
a {
|
|
color: #DCDCDC;
|
|
}
|
|
|
|
h1 {
|
|
text-align: center;
|
|
.reset;
|
|
}
|
|
|
|
.repl {
|
|
width: 49.9%;
|
|
height: 90%;
|
|
.reset;
|
|
}
|
|
|
|
.border {
|
|
outline: 0;
|
|
outline: thin dotted \9;
|
|
}
|
|
|
|
.ok {
|
|
border-color: rgba(82, 168, 236, 0.8);
|
|
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
|
|
.border;
|
|
}
|
|
|
|
.error {
|
|
border-color: rgba(236, 103, 82, 0.8);
|
|
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(236, 103, 82, 0.6);
|
|
.border;
|
|
}
|
|
|
|
.repl-root {
|
|
margin-top: 2%;
|
|
width: 90%;
|
|
height: 90%;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
}
|
|
|
|
#python-repl {
|
|
.repl;
|
|
float: right;
|
|
}
|
|
|
|
#hython-repl {
|
|
.repl;
|
|
float: left;
|
|
border-right: 1px solid rgba(82, 168, 236, 0.2);
|
|
}
|
|
|
|
#hython-target {
|
|
display: none;
|
|
}
|
|
|
|
.clear {
|
|
clear: both;
|
|
}
|
|
|
|
#build-msgs {
|
|
border-top: 1px solid rgba(82, 168, 236, 0.2);
|
|
height: 8%;
|
|
padding: 5px;
|
|
color: #777777;
|
|
overflow: hidden;
|
|
}
|