Merge pull request #3465 from solgenomics/topic/fix_nirs_download
[sgn.git] / static / css / debugscreen.css
blobd9a11ef7f4012009c8b7a306d440c3a30284ff80
1 body {
2 font-family: "Bitstream Vera Sans", "Trebuchet MS", Verdana,
3 Tahoma, Arial, helvetica, sans-serif;
4 color: #000;
5 background-color: #fff;
6 margin: 0px;
7 padding: 0px;
9 :link, :link:hover, :visited, :visited:hover {
10 color: #333;
12 div#page {
13 position: relative;
14 background-color: #fff;
15 border: 1px solid #600;
16 padding: 10px;
17 margin: 10px;
18 -moz-border-radius: 10px;
20 div.navi {
21 color: #333;
22 padding: 0 4px;
24 div.box {
25 background-color: #fff;
26 border: 3px solid #fc9;
27 padding: 8px;
28 margin: 4px;
29 margin-bottom: 10px;
30 -moz-border-radius: 10px;
32 h1 {
33 margin: 0;
34 color: #666;
36 h2 {
37 margin-top: 0;
38 margin-bottom: 10px;
39 font-size: medium;
40 font-weight: bold;
41 text-decoration: underline;
43 table.code {
44 font-size: .8em;
45 line-height: 120%;
46 font-family: 'Courier New', Courier, monospace;
47 background-color: #fc9;
48 color: #333;
49 border: 1px dotted #600;
50 margin: 8px;
51 width: 90%;
52 border-collapse: collapse;
54 table.code tr.hit {
55 font-weight: bold;
56 color: #000;
57 background-color: #f90;
59 table.code td {
60 padding-left: 1em;
61 line-height: 130%;
63 table.code td.num {
64 width: 4em;
65 text-align:right
67 table.watch {
68 line-height: 120%;
70 table.watch th {
71 font-weight: normal;
72 color: #000;
73 background-color: #fc9;
74 padding: 0 1em;
76 table.watch td {
77 line-height: 130%;
78 padding: 2px;
80 div.scrollable {
81 font-size: .8em;
82 overflow: auto;
83 margin-left: 1em;
85 pre.raw_error {
86 background-color: #fff;
87 border: 3px solid #fc9;
88 padding: 8px;
89 margin: 4px;
90 margin-bottom: 10px;
91 -moz-border-radius: 10px;
92 font-size: .8em;
93 line-height: 120%;
94 font-family: 'Courier New', Courier, monospace;
95 overflow: auto;
97 ul#stacktraces, ul#traces, ul#modules ul#watch {
98 margin: 1em 1em;
99 padding: 0 1em;
101 table#environment {
102 margin: 0 1em;
104 p.footer {
105 margin: 0 1em;
106 font-size: .8em;
107 text-align:right;