blob: 673cd078ece5c43bf101783b3f335ad0619a7eb8 [file] [log] [blame]
madhusudancs@gmail.com2e1e54c2013-03-31 02:31:10 +00001body {
2 background: none repeat scroll 0 0 white;
3 color: #222222;
4 font-family: 'Bitter';
5 font-size: 14px;
6 line-height: 17px;
7 width: 100%;
8}
9
10.content {
11 margin-top: 70px;
12}
13
14label.query, label.result {
15 font-size: 24px;
16 padding-bottom: 10px;
17 font-weight: bold;
18}
19
20div.host {
21 float: left;
22 margin: 0 100px 0 10px;
23}
24
25div.port {
26}
27
28div.left {
29 float: left;
30 width: 320px;
31 padding: 0 20px 0 10px;
32}
33
34div.right {
35}
36
37button.btn {
38 clear: both;
39 float: left;
40 margin: 20px 0 0 10px;;
41}
42
43textarea.query {
44 -webkit-box-sizing: border-box;
45 -moz-box-sizing: border-box;
46 -ms-box-sizing: border-box;
47 box-sizing: border-box;
48 font-size: 16px;
49 line-height: 20px;
50 font-family: bitter, helvetica;
51 width: 100%;
52 padding: 10px;
53 color: #999;
54 resize: none;
55 border: 10px solid #eee;
56}
57
58textarea.query:focus {
59 outline: none;
60 color: #333;
61}
62
63label {
64 padding-top: 10px;
65}
66
67input[type=text] {
68 height: 20px;
69}
70
71pre {
72 overflow: auto;
73 white-space: pre;
74}
75
76div.output label.heading {
77 font-size: 24px;
78 margin-top: 2px;
79 padding-bottom: 10px;
80 font-weight: bold;
81}
82
83div.output .message {
84 -webkit-box-sizing: border-box;
85 -moz-box-sizing: border-box;
86 -ms-box-sizing: border-box;
87 box-sizing: border-box;
88 color: #000;
89 resize: none;
90}
91
92div.error label.heading {
93 color: #ff2020;
94 font-size: 24px;
95 margin-top: 2px;
96 padding-bottom: 10px;
97 font-weight: bold;
98}
99
100div.error .message {
101 -webkit-box-sizing: border-box;
102 -moz-box-sizing: border-box;
103 -ms-box-sizing: border-box;
104 box-sizing: border-box;
105 border-color: rgba(82, 168, 236, 0.8);
106 outline: 0;
107 outline: thin dotted 9;
108
109 -webkit-box-shadow: inset 0 1px 1px rgba(250, 0, 0, 0.075), 0 0 8px rgba(255, 0, 0, 0.8);
110 -moz-box-shadow: inset 0 1px 1px rgba(250, 0, 0, 0.075), 0 0 8px rgba(255, 0, 0, 1.0);
111 box-shadow: inset 0 1px 1px rgba(250, 0, 0, 0.075), 0 0 8px rgba(255, 0, 0, 1.0);
112 color: #000;
113 resize: none;
114 border: 1px solid #eee;
115 margin-top: 7px;
116 padding: 20px 20px 20px 20px;
117}
118
119.footer {
120 margin-top: 40px;
121}
122
123.footer .line {
124 border-top: 1px solid #EEEEEE;
125 bottom: 20px;
126 height: 10px;
127 left: 0;
128 position: fixed;
129 width: 100%;
130}
131
132.footer .content {
133 background: none repeat scroll 0 0 #FFFFFF;
134 bottom: 0;
135 color: #666666;
136 font-size: 12px;
137 height: 25px;
138 left: 0;
139 padding-top: 5px;
140 position: fixed;
141 width: 100%;
142}
143
144.footer .content .left {
145 padding-left: 20px;
146 float: left;
147}
148
149.footer .content .right {
150 padding-right: 20px;
151 float: right;
152}