summaryrefslogtreecommitdiffstats
path: root/usecaseui-portal/src/app/components/details/details.component.less
blob: a27357efea4f2f3a94f3e54a15d0c031ad5b60c7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
/*
    Copyright (C) 2019 CMCC, Inc. and others. All rights reserved.

    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
    You may obtain a copy of the License at

            http://www.apache.org/licenses/LICENSE-2.0

    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
*/
.content {
    .header {
        background-color: #fff;
        border-radius: 5px;
        padding: 30px 28px 0;
        position: relative;
        margin-bottom: 30px;
        border: 1px solid #e4e4e4;
        hr {
            margin: 0;
            border: none;
            height: 1px;
            background-color: #e4e4e4;
        }
        h2 {
            font: 700 24px/18px 'Times New Roman';
            color: #3fa8eb;
            text-align: center;
            margin-bottom: 27px;
        }
        span.tildeimg {
            position: absolute;
            left: 50%;
            top: 71px;
            width: 60px;
            height: 10px;
            transform: translate(-30px,0);
            background: url(../../../assets/images/tildeimg.png) no-repeat center center;
            background-color: #fff;
        }
        .headerlist {
            display: flex;
            div {
                width: 100%;
                p {
                    font: 400 14px 'Arial';
                    color: #323437;
                    white-space: nowrap;
                    overflow: hidden;
                    text-overflow: ellipsis;
                    margin: 18px 0 15px;
                    span {
                        display: inline-block;
                        width: 50%;
                        text-align: right;
                        font: 700 14px 'Arial';
                        color: #3fa8eb;
                    }
                }
            }
        }
    }
    hr {
        margin: 0;
        border: none;
        height: 1px;
        background-color: #e4e4e4;
    }
    button {
        width: 88px;
        height: 22px;
        position: absolute;
        left: 50%;
        transform: translate(-44px,0);
        border: none;
        outline: none;
        cursor: pointer;
        background-color: #fff;
        background: url(../../../assets/images/open-close2.png) no-repeat center -22px;
        &:hover {
            background: url(../../../assets/images/open-close2.png) no-repeat center -66px;
        }
    }
    .buttonActive {
        transform: translate(-44px,-22px);
        background: url(../../../assets/images/open-close2.png) no-repeat center -0px;
        &:hover {
            background: url(../../../assets/images/open-close2.png) no-repeat center -44px;
        }
    }
    h2.detailtitle {
        font: 700 24px/18px 'Times New Roman';
        color: #3fa8eb;
        text-align: center;
        margin-bottom: 15px;
        padding-top: 25px; 
    }
    .detailInformatioin {
        // transition: all 0.3s linear;
        overflow: hidden;
    }
    .detailshow {

    }
}