rebuild GUI structure(only changed modules' name)
[vnfsdk/refrepo.git] / performance / src / main / webapp / performance / css / performanceChart.css
1 /**
2  * Copyright 2016-2017, CMCC Technologies Co., Ltd.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *         http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 .reveal-modal-bg {
17     position: fixed;
18     height: 100%;
19     width: 100%;
20     background: #000;
21     background: rgba(0,0,0,.8);
22     z-index: 100;
23     display: none;
24     top: 0;
25     left: 0;
26 }
27
28 .reveal-modal {
29     visibility: hidden;
30     top: 100px;
31     left: 200px;
32     width: 1200px;
33     background: #eee url(modal-gloss.png) no-repeat -200px -80px;
34     position: fixed;
35     z-index: 101;
36     padding: 30px 40px 34px;
37     -moz-border-radius: 5px;
38     -webkit-border-radius: 5px;
39     border-radius: 5px;
40     -moz-box-shadow: 0 0 10px rgba(0,0,0,.4);
41     -webkit-box-shadow: 0 0 10px rgba(0,0,0,.4);
42     -box-shadow: 0 0 10px rgba(0,0,0,.4);
43 }
44
45 .reveal-modal.small {width: 200px; margin-left: -140px;}
46 .reveal-modal.medium {width: 400px; margin-left: -240px;}
47 .reveal-modal.large {width: 600px; margin-left: -340px;}
48 .reveal-modal.xlarge {width: 800px; margin-left: -440px;}
49
50 .reveal-modal .close-reveal-modal {
51     font-size: 22px;
52     line-height: .5;
53     position: absolute;
54     top: 8px;
55     right: 11px;
56     color: #aaa;
57     text-shadow: 0 -1px 1px rbga(0,0,0,.6);
58     font-weight: bold;
59     cursor: pointer;
60 }