-
Notifications
You must be signed in to change notification settings - Fork 0
/
connectiondetails.css
149 lines (148 loc) · 2.91 KB
/
connectiondetails.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
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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Inter", sans-serif;
}
.heading{
width: 450px;
height: 100px;
font-size: 35px;
font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
body {
display: grid;
place-items: center;
min-height: 100vh;
background-color: #f7f8fb;
}
.wrapper {
display: flex;
align-items: center;
gap: 27px;
}
/* left */
.left {
width: 350px;
height: 315px;
background-color: #fff;
padding: 8px 8px 24px 8px;
border-radius: 16px;
box-shadow: 0 0 1px rgba(12, 26, 75, 24%), 0 3px 8px -1px rgba(50, 50, 71, 5%);
}
.left-header {
position: relative;
}
.cart-img {
padding: 14px;
width: 46px;
height: 46px;
border-radius: 50%;
background-color: #fff;
position: absolute;
right: 16px;
top: 16px;
box-shadow: 0 1px 3px rgba(50, 50, 71, 10%), 0 0 1px rgba(12, 26, 75, 20%);
cursor: pointer;
}
.main {
margin-top: 24px;
margin-left: 16px;
display: flex;
flex-direction: column;
gap: 8px;
}
.main :nth-child(1) {
color: #425466;
font-size: 14px;
font-weight: 800;
}
.main :nth-child(2) {
color: #27272e;
font-size: 20px;
font-weight: 800;
}
/* right */
.right {
width: 350px;
height: 346px;
background-color: #fff;
box-shadow: 0 0 1px rgba(12, 26, 75, 24%), 0 3px 8px -1px rgba(50, 50, 71, 5%);
border-radius: 16px;
padding: 24px 24px 11px 24px;
}
.right-header {
display: flex;
align-items: center;
justify-content: space-between;
}
.right-header :nth-child(1) {
font-size: 16px;
font-weight: 800;
color: #000;
}
a {
text-decoration: none;
}
.right-header :nth-child(2) {
font-size: 12px;
font-weight: bold;
color: #4c6fff;
}
.right-body {
margin-top: 20px;
display: flex;
flex-direction: column;
gap: 16px;
}
.mastercard {
width: 302px;
height: 90px;
background-color: #fff;
box-shadow: 0 0 1px rgba(12, 26, 75, 24%), 0 3px 8px -1px rgba(50, 50, 71, 5%);
border-radius: 16px;
padding: 16px 0 16px 16px;
}
.mastercard-container {
display: flex;
gap: 16px;
align-items: center;
}
.master-card-detail {
display: flex;
flex-direction: column;
gap: 3px;
}
.card-id {
font-size: 16px;
font-weight: 100;
color: #27272e;
}
.card-date {
font-size: 16px;
font-weight: 100;
color: #425466;
}
.card-number {
font-size: 14px;
color: #1a202c;
font-weight: 800;
}
/* footer */
footer {
margin-top: 24px;
}
footer button {
padding: 16px 113px;
background-color: #4c6fff;
color: #fff;
border-radius: 8px;
border: 0;
outline: 0;
cursor: pointer;
}
#connecimg{
height: 150px;
margin-left: 80px;
margin-top: 50px;
}