Reorganize dashboard into subfolders
[portal/ric-dashboard.git] / dashboard / webapp-frontend / src / app / ui / catalog-card / catalog-card.component.scss
1 /*-
2  * ========================LICENSE_START=================================
3  * O-RAN-SC
4  * %%
5  * Copyright (C) 2019 AT&T Intellectual Property
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 .home_bg_image{
21     height:40em; 
22     background-size:cover;
23     width:auto;
24     background-image:url('../../../assets/intelligence.png');
25     background-position:50% 50%;
26 }
27
28 .add__card {
29   background-color: #ffffff;
30   box-shadow: 0 0 2rem rgba(0, 0, 255, 0.1);
31   display: grid;
32   grid-template-columns: 1fr;
33   grid-template-rows: 1fr 1fr;
34   padding: 2rem;
35   margin: 2rem;
36   width: 19rem;
37   height: 30rem;
38   justify-items: center;
39   cursor: pointer;
40   border-radius: 1.75rem;
41   animation: fadein 1.25s ease-in-out 0ms 1;
42   color: #443282;
43 }
44
45 .add__card-dark {
46   background: linear-gradient(to bottom, #711B86, #00057A);
47   color: white;
48 }
49
50 .card__title {
51   text-transform: uppercase;
52   letter-spacing: 0.1rem;
53 }
54
55 .body__container {
56   align-self: end;
57   display: flex;
58   justify-content: space-between;
59   align-items: center;
60   flex-flow: column;
61 }
62
63 .add__icon {
64   width: 10rem;
65   margin-bottom: 1.15rem;
66 }
67
68 .card_item  {
69   font-size: 1em;
70 }
71
72 img {
73   width: 250px;
74 }