Create feature module for Enrichment coordinator
[portal/nonrtric-controlpanel.git] / webapp-frontend / src / app / ui / ei-card / ei-card.component.scss
1 /*-
2  * ========================LICENSE_START=================================
3  * O-RAN-SC
4  * %%
5  * Copyright (C) 2019 Nordix Foundation
6  * %%
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ========================LICENSE_END===================================
19  */
20 .ei__card {
21   background-color: #ffffff;
22   box-shadow: 0 0 2rem rgba(0, 0, 255, 0.1);
23   display: grid;
24   grid-template-columns: 1fr;
25   grid-template-rows: 1fr 1fr;
26   padding: 2rem;
27   margin: 2rem;
28   width: 19rem;
29   height: 30rem;
30   justify-items: center;
31   cursor: pointer;
32   border-radius: 1.75rem;
33   animation: fadein 1.25s ease-in-out 0ms 1;
34   color: #443282;
35 }
36
37 .add__card-dark {
38   background: linear-gradient(to bottom, rgb(78, 78, 129), rgb(45, 44, 61));
39   color: white;
40 }
41
42 .card__title {
43   text-transform: uppercase;
44   letter-spacing: 0.1rem;
45 }
46
47 .body__container {
48   align-self: end;
49   display: flex;
50   justify-content: space-between;
51   align-items: center;
52   flex-flow: column;
53 }
54
55 .add__icon {
56   width: 10rem;
57   margin-bottom: 1.15rem;
58 }