Use jinja2 as the templating system
[cascardo/ipsilon.git] / ui / ipsilon.css
1 /* Intentionally shocking, for development purpose */
2
3 html {
4     height: 100%;
5 }
6
7 body {
8     overflow: auto;
9     position: relative;
10     background-color: #DEAD42;
11     border-width: 0;
12     font-family: "Liberation Sans",Arial,Sans;
13     font-size: 14px;
14     margin: 0;
15     padding: 0;
16     height: 100%;
17 }
18
19 textarea[readonly] {
20     color: Gray;
21 }
22
23 /* ---- Container ---- */
24
25 #container {
26     position: absolute;
27     top: 0;
28     left: 0;
29     right: 0;
30     bottom: 0;
31     margin: 0 auto 0;
32 }
33
34 /* ---- Content ---- */
35 #content {
36     position: absolute;
37     top: 42%;
38     left: 42%;
39     right: 42%;
40     bottom: 42%;
41 }
42