update gui
[matches/MCTX3420.git] / testing / MCTXWeb / public_html / static / style.css
1 /** Custom fonts **/
2 @font-face {
3   font-family: "Open Sans";
4   src: url("OpenSans.ttf"),
5     url("OpenSans.eot");
6 }
7
8 /** Limit max width and auto-center content **/
9 html  {
10   max-width: 1280px;
11   margin: 0 auto;
12 }
13
14 body {
15   font-family: "Open Sans", "Lucida Grande","Lucida Sans",Verdana,Arial;
16   font-size: 13px;
17   background-color: #F5F5F5;
18 }
19
20 hr {
21   border: 0;
22   border-bottom: 1px solid gray;
23 }
24
25 form.controls {
26   background-color: #F9F9F9;
27   border: 1px solid #808080;
28   padding: 1em;
29   margin: 1em auto;
30 }
31
32 div.centre {
33   text-align: center;
34 }
35
36 .bold {
37   font-weight: bold;
38 }
39
40 table {
41   border: none;
42 }
43
44 table.centre {
45   margin: auto;
46   text-align: center;
47 }
48
49 table.status, table.status tr, table.status td {
50     padding: 0.2em 0.75em;
51 }
52
53 td {
54   padding: 0 0.5em;
55 }
56
57 th {
58   padding: inherit;
59   border-bottom: 1px solid gray;
60 }
61
62 img.centre {
63   display: block;
64   margin: auto;
65 }
66
67 input[type="button"], input[type="submit"] {
68   background-color: #F5F5F5;
69   border: 1px solid #A2A2A2;
70   border-radius: 3px;
71   box-shadow: 1px 1px 1px #BBBBBB;
72   transition: all 0.13s ease 0s;
73   padding: 0 0.5em;
74   min-width: 55px;
75   margin: 0.4em 0.1em;
76 }
77
78 input[type="button"]:active, input[type="submit"]:active {
79   background-color: #E8E8E8;
80 }
81
82 /* IE8 width bugfix */
83 input[type="text"], input[type="password"] {
84   width: 100%;
85 }
86
87 #header {
88   background-color: #2a2a2a;
89   color: #f2f2f2;
90   padding: 1.5em 2em;
91   margin-top: -1em;
92   margin-bottom: 1em;
93   box-shadow: 0 0 0.5em #444444;
94   border-radius: 4px;
95   transition: all 0.2s ease 0s;
96 }
97
98 #header #title {
99   font-family: "Open Sans", Arial;
100   font-size: 30px;
101 }
102
103 #header #rightnav {
104   float: right;
105   padding-top: 0.5em;
106 }
107
108 #header #menu-container {
109   margin-right: 1.5em;
110   font-size: 15px;
111   display: inline-block;
112 }
113
114 #header #date {
115   padding-top: 1em;
116   font-size: 12px;
117 }
118
119 #content  {
120   padding: 1em 2em;
121 }
122
123 #sidebar{
124   float: right;
125   max-width: 26%;
126 }
127
128 #sidebar .title {
129   font-size: 20px;
130   font-weight: bold;
131 }
132
133 #sidebar .item {
134   padding: 0.2em;
135   margin-bottom: 0.5em;
136 }
137
138 #main {
139   overflow: auto;
140   margin-right: 25%;
141   padding-right: 2em;
142   min-width: 400px;
143 }
144
145 #main .title {
146   font-size: 24px;
147   font-weight: bold;
148   margin-bottom: 0.5em;
149 }
150
151 #main .sub-title {
152   font-size: 18px;
153   font-weight: bold;
154   margin-bottom: 0.25em;
155 }
156
157 .graph {
158   width: 100%;
159   height: 200px;
160 }
161
162 .widget {
163   background-color: #ffffff;
164   margin: 0.25em 0.25em 1.5em;
165   padding: 1em 1.25em;
166   box-shadow: 0 0 3px #CCCCCC;
167   transition: all 0.2s ease 0s;
168   overflow: auto;
169 }
170
171 .widget:hover {
172   box-shadow: 0 0 0.25em #AAAAAA;
173 }
174
175 /** Hack **/
176 .clear {
177   clear: both;
178 }
179
180 #errorlog {
181   overflow: auto;
182   max-width: 100%;
183   width: 100%;
184   height: 6em;
185 }

UCC git Repository :: git.ucc.asn.au