-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpayment_form.css
53 lines (45 loc) · 964 Bytes
/
payment_form.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
*{
box-sizing: border-box;
}
body{
font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
padding: 10px;
margin: 10px;
font-size: 20px;
background-color: #D4E4FB;
}
.container{
background-color: rgb(243, 243, 243);
border:2px solid lightgray;
padding: 13px 20px 10px 20px;
border-radius: 5px;
}
input[type="text"],
input[type="email"],
input[type="number"],
input[type="date"],
input[type="password"]{
width: 100%;
border: 1px solid silver;
padding: 5px;
border-radius: 4px;
}
fieldset{
border: 1px solid silver;
margin: 10px;
border-radius: 10px;
font-size: 30px;
}
.main_header{
text-align: center;
}
input[type="submit"],
input[type="reset"]{
background-color: rgb(15, 188, 207);
border:none;
padding: 10px 20px;
margin: 20px;
text-align: center;
cursor: pointer;
width: 90%;
}