Fix mod ui build issues
[dcaegen2/platform.git] / mod2 / ui / src / app / comp-spec-validation / comp-spec-validation.component.css
1 /* 
2  *  # ============LICENSE_START=======================================================
3  *  # Copyright (c) 2020 AT&T Intellectual Property. All rights reserved.
4  *  # ================================================================================
5  *  # Licensed under the Apache License, Version 2.0 (the "License");
6  *  # you may not use this file except in compliance with the License.
7  *  # You may obtain a copy of the License at
8  *  #
9  *  #      http://www.apache.org/licenses/LICENSE-2.0
10  *  #
11  *  # Unless required by applicable law or agreed to in writing, software
12  *  # distributed under the License is distributed on an "AS IS" BASIS,
13  *  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  *  # See the License for the specific language governing permissions and
15  *  # limitations under the License.
16  *  # ============LICENSE_END=========================================================
17  */
18
19 .validator-input-card{
20     width: 40%;
21     min-width: 430px;
22     min-height: 100%;
23     border: 2px solid slategray;
24     border-radius: 5px;
25     background-color: white;
26     padding: 1%;
27 }
28 .validator-output-card{
29     width: 58%;
30     border: 2px solid slategray;
31     margin-left: 2%; 
32     min-height: 100%;
33     border-radius: 5px;
34     background-color: white;
35     padding: 1%;
36 }
37
38 .input-section-card{
39     font-size: 14px; 
40     border: solid slategray; 
41     border-style: double;
42     margin-top: 7px
43 }
44
45 .validateSpec{
46     margin-top: 10px;
47 }
48 .downloadSchema{
49     margin-top: 80px;
50 }
51
52 .type-selection{
53     position: absolute; 
54     background-color: rgba(128, 128, 128, 0.15); 
55     width: 190px; 
56     height: 40px; 
57     display: inline-flex; 
58     align-items: center; 
59     margin-left: 150px;
60 }
61
62 .greenOutput{
63     background-color: rgba(0, 255, 0, 0.205);
64     height: 40px;
65     padding: 3px;
66     border: 2px solid rgba(0, 66, 0, 0.747);
67 }
68 .redOutput{
69     background-color: rgba(255, 0, 0, 0.267);
70     height: 87%;
71     padding: 10px;
72     border: 2px solid rgba(65, 0, 0, 0.712);
73 }