7ca9f526909795e135880fbc85918b6c3969d5bc
[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   margin-left: 50px;
102 }
103
104 #header #rightnav {
105   float: right;
106   padding-top: 0.5em;
107 }
108
109 #header #menu-container {
110   margin-right: 1.5em;
111   font-size: 15px;
112   display: inline-block;
113 }
114
115 #header #date {
116   padding-top: 1em;
117   font-size: 12px;
118 }
119
120 #content  {
121   padding: 1em 2em;
122 }
123
124 #sidebar{
125   float: right;
126   max-width: 26%;
127 }
128
129 #sidebar .title {
130   font-size: 20px;
131   font-weight: bold;
132 }
133
134 #sidebar .item {
135   padding: 0.2em;
136   margin-bottom: 0.5em;
137 }
138
139 #main {
140   overflow: auto;
141   margin-right: 25%;
142   padding-right: 2em;
143   min-width: 400px;
144 }
145
146 #main .title {
147   font-size: 24px;
148   font-weight: bold;
149   margin-bottom: 0.5em;
150 }
151
152 #main .sub-title {
153   font-size: 18px;
154   font-weight: bold;
155   margin-bottom: 0.25em;
156 }
157
158 .graph {
159   width: 100%;
160   height: 200px;
161 }
162
163 .widget {
164   background-color: #ffffff;
165   margin: 0.25em 0.25em 1.5em;
166   padding: 1em 1.25em;
167   box-shadow: 0 0 3px #CCCCCC;
168   transition: all 0.2s ease 0s;
169   overflow: auto;
170 }
171
172 .widget:hover {
173   box-shadow: 0 0 0.25em #AAAAAA;
174 }
175
176 /** Hack **/
177 .clear {
178   clear: both;
179 }
180
181 #errorlog {
182   overflow: auto;
183   max-width: 100%;
184   width: 100%;
185   height: 6em;
186 }

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