-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
60 lines (51 loc) · 1.06 KB
/
style.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
*{
box-sizing: border-box;
}
body{
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
}
.box{
background: white;
padding: 40px 60px;
border-radius: 16px;
position: relative;
background-image: linear-gradient(to right, #52B6FE, #6154FE);
width: 295px;
height: 174px;
}
.box h3{
color: whitesmoke;
position: absolute;
top: 5px;
padding: 1px;
left: 20px;
font-weight: normal;
font-size: 1rem;
text-decoration: none;
}
.btn.visa{
font-size: 2rem;
color: white;
position: absolute;
left: 15rem;
top: 1rem;
cursor: default;
}
.box .ccname{
color: white;
opacity: 0.7;
position: absolute;
left: 1.4rem;
top: 5rem;
font-size: 14px;
}
.box .ccnum{
color: white;
position: absolute;
left: 1.4rem;
bottom: 1rem;
}