Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HiveStatistics/sources/HeuristicLab.Services.Hive.Statistics/3.3/Content/Site.css @ 9625

Last change on this file since 9625 was 9625, checked in by pfleck, 11 years ago

#2063:
Insert charts on index page for CPU utilization, cores and memory usage.
Added html helper for generating chart javascript.
Added ChartDataController for generating JSON data for the charts.

File size: 2.7 KB
Line 
1body {
2  margin: 4px;
3  padding: 0;
4  background-color: #FAFAFA;
5  font-size: 62.5%;
6  font-family: Verdana, Helvetica, Sans-Serif;
7}
8
9img {
10  border: 0;
11}
12
13h1, h2, h3, h4, h5 {
14  margin: 0;
15  padding: 0;
16}
17
18h1 {
19  color: #F7921D;
20  border-bottom: 1px dotted #AAAAAA;
21  font-size: 1.5em;
22  padding-bottom: 2px;
23  margin-bottom: 4px;
24}
25
26h2 {
27  color: #333333;
28  border-bottom: 1px solid #EEEEEE;
29  font-size: 1.2em;
30  padding-bottom: 3px;
31}
32
33h3 {
34  color: #333333;
35  font-size: 1em;
36  padding-bottom: 6px;
37}
38
39body > div {
40  max-width: 1000px;
41  margin: 0 auto;
42  padding: 0;
43  border: gray solid 1px;
44  border-radius: 8px;
45  box-shadow: 1px 1px 5px 1px rgba(0, 0, 0, 0.35);
46}
47
48header > h1 {
49  background-color: #F7921D;
50  border: none;
51  font-size: 28px;
52  margin-top: 12px;
53  padding-left: 8px;
54  margin-bottom: 0;
55}
56
57header > h1 > a {
58  color: white;
59  text-decoration: none;
60  font-weight: normal;
61}
62
63#login {
64  display: block;
65  float: right;
66  margin: 10px;
67  margin-top: -24px;
68}
69
70#login a {
71  text-decoration: underline;
72  color: black;
73  text-align: right;
74}
75
76#login a:hover {
77  color: #333;
78}
79
80#login > a {
81  text-decoration: none;
82  font-size: 1.2em;
83  text-align: right;
84  color: white;
85  background-color: black;
86  border: 1px solid gray;
87  font-weight: bold;
88  padding: 4px 12px;
89}
90
91
92#login form {
93  display: inline;
94}
95
96nav {
97  background-color: #333;
98  color: white;
99  height: 28px;
100  font-size: 1.2em;
101  margin: 0;
102  text-align: left;
103  }
104
105nav > ul {
106  margin: 0;
107  padding: 0;
108  padding-left: 2px;
109}
110
111nav li {
112  display: inline-block;
113  list-style: none;
114}
115
116nav a {
117  color: white;
118  font-weight: bold;
119  text-decoration: none;
120  padding: 0 20px;
121  padding-top: 4px;
122  line-height: 2.5em;
123}
124
125nav a:hover {
126  color: gray;
127}
128
129nav li a.current {
130  color: #F7921D;
131  background-color: white;
132  padding-bottom: 8px;
133}
134
135footer {
136  padding: 6px;
137  border-top: grey 1px solid;
138  text-align: right;
139}
140
141#body {
142  padding: 5px;
143}
144
145hgroup.title {
146    margin-bottom: 10px;
147}
148
149hgroup.title h1, hgroup.title h2 {
150    display: inline;
151}
152
153hgroup.title h2 {
154    font-weight: normal;
155    margin-left: 3px;
156}
157
158.error {
159    color: #e80c4d;
160}
161
162fieldset {
163  margin: 1em 0;
164  padding: 1em;
165  border: 1px solid #CCC;
166}
167
168fieldset ol {
169  padding: 0;
170}
171
172fieldset li {
173  list-style: none;
174  margin: 0.5em 0;
175}
176
177legend {
178  font-size: 1.1em;
179  font-weight: 600;
180  padding: 2px 4px 8px 4px;
181}
182
183input[type="text"], input[type="password"] {
184  border: 1px solid #CCC;
185}
186
187.charts {
188  font-size: 1.5em;
189}
190
191.charts > div {
192  height: 300px;
193  margin-top: 15px;
194  margin-bottom: 5px;
195  margin-left: 10px;
196  margin-right: 20px;
197}
Note: See TracBrowser for help on using the repository browser.