-
Notifications
You must be signed in to change notification settings - Fork 0
/
card.css
71 lines (70 loc) · 1.14 KB
/
card.css
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
#card::before {
content: '\a';
white-space: pre;
line-height: 40px;
}
#card::before {
font-size: 16px;
content: 'Card Details';
color: rgba(0, 0, 0, 0.5);
}
#pan::before {
content: '\a';
white-space: pre;
line-height: 20px;
}
#pan::before {
font-size: 12px;
font-weight: bold;
color: rgba(0, 0, 0, 0.5);
content: 'Card Number\a';
}
#pan {
font-size: 13px;
font-style: normal;
font-weight: normal;
line-height: 17px;
}
.pan-separator {
display: inline-block;
padding-left: 5px;
}
#expiry::before {
content: '\a';
white-space: pre;
line-height: 30px;
}
#expiry::before {
font-size: 12px;
font-weight: bold;
color: rgba(0, 0, 0, 0.5);
content: 'Exp\a';
}
#expiry {
font-size: 12px;
font-style: normal;
font-weight: normal;
line-height: 12px;
}
#cvv::before {
content: '\a';
white-space: pre;
line-height: 30px;
}
#cvv::before {
font-size: 12px;
font-weight: bold;
color: rgba(0, 0, 0, 0.5);
content: 'CVC\a';
}
#cvv {
padding-top: 2px;
font-size: 13px;
font-style: normal;
font-weight: normal;
line-height: 12px;
}
#expiry #separator {
max-width: 3px;
display: inline-block;
}