credit.scss
945 Bytes
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
.credit_container {
padding: 10px;
}
.credit_wrap {
position: relative;
padding: 20px;
background: url("../images/mine/credit-bg.png") top center no-repeat;
color: #ffffff;
font-size: 17px;
border-radius: 10px;
margin-bottom: 10px;
.product_name {
position: absolute;
top: 20px;
right: 20px;
border: 1px #FFFFFF solid;
padding: 0px 10px;
border-radius: 10px;
background: rgba(200, 200, 200, 0.45);
font-size: 15px;
}
.available_amount {
font-size: 28px;
padding: 25px 0px;
}
.apply_amount {
display: flex;
justify-content: space-between;
margin-bottom: 30px;
align-items: center;
.add_amount {
background: linear-gradient(180deg, #FA6D2D, #FA2D3B);
padding: 3px 10px;
border-radius: 20px;
font-size: 14px;
color: #ffffff;
}
}
.primary-btn {
width: 80%;
margin: 0 auto;
display: block;
height: 40px;
}
}