-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpayment.css
89 lines (85 loc) · 1.6 KB
/
payment.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
*{
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
body>img {
margin: auto;
}
.container{
/* border: 2px solid red; */
box-shadow: 0 0.4rem 0.9rem rgb(0 0 0 / 15%);
margin: auto;
margin-top: 0px;
margin-bottom: 80px;
max-width: 25rem;
padding: 10px;
}
.container form{
max-width: 90%;
}
.inputBox{
text-align: left;
width: 100%;
border: none;
border-bottom: 2px solid #202124;
outline: none;
font-weight: bold;
font-size: 15px;
line-height: 24px;
letter-spacing: -0.1px;
color: #202124;
padding: 12px;
padding-bottom: 0.6%;
margin-bottom: 7%;
/* position: relative; */
}
.inputBox input{
background: transparent;
border: none;
font-size: 14px;
color: black;
}
.inputBox input:focus{
outline: none;
}
.inputBox input::placeholder{
font-size: 14px;
color: black;
}
.submit-btn{
height: 33px;
padding: 10px 35px;
color: black;
font-size: 15px;
background-color: white;
border: none;
outline: 2px solid black;
border-radius: 200px;
cursor: pointer;
margin-bottom: 7%;
}
.month-input, .year-input{
outline: none;
border: none;
font-size: 15px;
}
#warning1, #warning2 ,#warning3{
font-size: 12px;
color: #e4002b;
font-weight: bold;
padding: 0px;
margin: 0px;
}
@media only screen and (max-width: 1000px) {
/* Medium Screen */
.container{
max-width: 95%;
box-shadow: none;
margin: auto;
}
.submit-btn{
width: 80%;
}
.container form{
max-width: 90%;
}
}