-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCheckout.css
More file actions
58 lines (47 loc) · 874 Bytes
/
Checkout.css
File metadata and controls
58 lines (47 loc) · 874 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
46
47
48
49
50
51
52
53
54
55
56
57
58
.main-checkout-python {
background-color: #1e1e1e;
color: #fff;
text-align: center;
height: 100vh;
}
.form{
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
margin: auto;
width: 40%;
}
.modal-content input {
width: 100%;
padding: 10px;
margin: 10px 0;
border: 1px solid #38b6ff;
border-radius: 5px;
background-color: #282828;
color: #fff;
}
.modal-content input::placeholder {
color: #bbb;
}
.modal-content input::placeholder {
color: #bbb;
}
.btn-modal {
padding: 20px 30px;
color: #38b6ff;
display: block;
text-decoration: none;
font-weight: 400;
transition: .3s ease-in-out;
}
@media screen and (max-width: 480px) {
.form{
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
margin: auto;
width: 80%;
}
}