source: ether_statistics/web/resources/css/statistics.css @ 589

Last change on this file since 589 was 589, checked in by vmipsl, 12 years ago

interface _ cloud

File size: 3.7 KB
Line 
1/** ***************************************************** **/
2/** ************************ TITLES ********************* **/
3/** ***************************************************** **/
4.title1 {
5    color: #165076;
6    font-weight: bold;
7    font-size: 15px;
8}
9
10.title2 {
11    color: #165076;
12    font-weight: bold;
13}
14
15/** ***************************************************** **/
16/** ********************** CONTAINER ******************** **/
17/** ***************************************************** **/
18#containerMiddle {
19    position: relative;
20}
21
22.containerStatistics {
23    -moz-border-radius: 4px 4px 4px 4px;
24    -moz-box-shadow: 0 0 4px rgba(101, 152, 30, 1);
25    -webkit-border-radius: 4px 4px 4px 4px;
26    -webkit-box-shadow: 0 0 4px rgba(101, 152, 30, 1);
27    box-shadow: 0 0 4px rgba(101, 152, 30, 1);
28    position: absolute;
29    background-color: rgba(101, 152, 30, 0.1);
30    margin-right: 10px;
31}
32
33.containerStatisticsTitle {
34    background: -moz-linear-gradient(#65981E, #E6EFC2) repeat scroll 0 0 transparent;
35    background: -ms-linear-gradient(#65981E, #E6EFC2) repeat scroll 0 0 transparent; /*For IE10*/
36    background: -webkit-linear-gradient(#65981E, #E6EFC2) repeat scroll 0 0 transparent; /*For IE10*/
37    filter: progid:DXImageTransform.Microsoft.gradient(GradientType = 0, startColorstr = '#65981E', endColorstr = 'E6EFC2'); /*For IE7-8-9*/
38    background-color: #65981E;
39    -moz-border-radius: 4px 4px 4px 4px;
40    -moz-box-shadow: 0 0 4px rgba(101, 152, 30, 1);
41    -webkit-border-radius: 4px 4px 4px 4px;
42    -webkit-box-shadow: 0 0 4px rgba(101, 152, 30, 1);
43    box-shadow: 0 0 4px rgba(101, 152, 30, 1);
44    height: 25px;
45    font-weight: bold;
46    padding-left: 7px;
47}
48
49.containerStatisticsContent {
50    padding: 5px;
51}
52
53.containerTop {
54    width: 840px;
55}
56
57.containerTitle {
58    float: left;
59    margin: 15px 100px 0 60px;
60    color: #65981e;
61    font-weight: bold;
62    font-size: 20px;
63}
64
65.containerCloud {
66    float: left;
67    margin-right: 15px;
68}
69
70.containerErrors, #errors {
71    background: #FEF1EC;
72    -moz-border-radius: 4px 4px 4px 4px;
73    -webkit-border-radius: 4px 4px 4px 4px;
74    border: 1px solid #CD0A0A;
75    color: #CD0A0A;
76    padding: 10px;
77    margin: 10px;
78}
79
80.containerErrors {
81    display: none;
82}
83
84.disable {
85    background-color: #f5f5f5;
86    border: 1px solid #565656;
87    color: #565656;
88}
89
90/** ***************************************************** **/
91/** ************************ OTHER ********************** **/
92/** ***************************************************** **/
93.cloud {
94    background-image: url("../images/cloud_small.png");
95    background-repeat: repeat-x;
96    height: 60px;
97    width: 78px;
98    padding: 23px 0 0 12px;
99}
100
101#home, #mail, #login {
102    padding: 15px 0 0 23px;
103    width: 67px;
104}
105
106#language {
107    padding: 21px 0 0 28px;
108    width: 62px;
109}
110
111#copy {
112    position: absolute;
113    top: 492px;
114    left: 1115px;
115}
116
117#copy1 {
118    font-size: 7px;
119    font-weight: none;
120    margin: -5px 0 0 4px;
121}
122
123#copy2 {
124    font-size: 7px;
125    font-weight: none;
126    margin: -11px 0 0 14px;
127}
128
129#login {
130    position: relative;
131    float: left;
132    margin-right: 10px;
133}
134
135#login_bg {
136    position: absolute;
137    top: 0;
138    left: 0;
139    z-index: 1;
140}
141
142#login_button {
143    position: absolute;
144    top: 21px;
145    left: 25px;
146    z-index: 2;
147}
148
149#login_text {
150    visibility: hidden;
151    position: absolute;
152    z-index: 2;
153}
154
155#login_text_title {
156    position: absolute;
157    top: 76px;
158    left: 171px;
159    font-weight: bold;
160}
161
162#login_text_content {
163    position: absolute;
164    top: 163px;
165    left: 80px;
166    width: 273px;
167}
168
169/* ****************** LOADINGS ************************* */
170.loadingPlot {
171    margin: auto;
172    height: 15px;
173    width: 128px;
174    margin-top: 50px;
175}
176
177.loadingForParameters_meta, .loadingForPlateforms_meta {
178    margin: auto;
179}
Note: See TracBrowser for help on using the repository browser.