hy/site/less/layout.less

86 lines
1.7 KiB
Plaintext
Raw Normal View History

2013-03-19 03:41:03 +01:00
/* Copyright (c) Paul Tagliamonte <paultag@debian.org> 2013 under the
* terms and conditions of Hy it's self. */
2013-03-21 14:01:44 +01:00
.sans-serif {
font-family: cantarell, tahoma, sans-serif;
}
2013-03-19 03:41:03 +01:00
2013-03-12 03:02:30 +01:00
.reset {
padding: 0px;
margin: 0px;
}
body, html {
2013-03-12 03:02:30 +01:00
height: 100%;
2013-03-14 02:13:23 +01:00
color: #000000;
2013-03-12 03:02:30 +01:00
font-family: monospace;
.reset;
}
a {
color: #DCDCDC;
2013-03-10 20:30:49 +01:00
}
2013-03-12 03:02:30 +01:00
h1 {
text-align: center;
.reset;
}
2013-03-10 20:30:49 +01:00
.repl {
width: 49.9%;
height: 90%;
2013-03-12 03:02:30 +01:00
.reset;
2013-03-10 20:30:49 +01:00
}
2013-03-14 03:09:57 +01:00
.border {
2013-03-14 02:13:23 +01:00
outline: 0;
outline: thin dotted \9;
2013-03-14 03:09:57 +01:00
}
.ok {
border-color: rgba(82, 168, 236, 0.8);
2013-03-14 02:13:23 +01:00
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
2013-03-14 03:09:57 +01:00
.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;
2013-03-14 02:13:23 +01:00
}
.repl-root {
margin-top: 2%;
width: 90%;
height: 90%;
margin-left: auto;
margin-right: auto;
}
#python-repl {
.repl;
float: right;
2013-03-10 20:30:49 +01:00
}
#hython-repl {
.repl;
float: left;
2013-03-14 02:13:23 +01:00
border-right: 1px solid rgba(82, 168, 236, 0.2);
}
2013-03-12 03:02:30 +01:00
#hython-target {
display: none;
}
.clear {
clear: both;
}
#build-msgs {
2013-03-14 02:13:23 +01:00
border-top: 1px solid rgba(82, 168, 236, 0.2);
2013-03-22 00:27:34 +01:00
height: 8%;
2013-03-14 02:13:23 +01:00
padding: 5px;
color: #777777;
2013-03-22 00:27:34 +01:00
overflow: hidden;
2013-03-10 20:30:49 +01:00
}