-
Notifications
You must be signed in to change notification settings - Fork 0
/
payment_form.css
49 lines (44 loc) · 1.06 KB
/
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
body{
margin: 30px;
padding: 10px;
background-color: rgba(233, 197, 164, 0.842);
font-size: medium;
font-family: Verdana, Geneva, Tahoma, sans-serif;
font-weight: bold;
}
.heading{
padding: 10px;
margin: 10px;
border: 2px solid whitesmoke;
border-radius: 4px;
text-align: center;
color: teal;
}
input[type="text"],input[type="date"],input[type="email"],input[type="password"],input[type="number"],select,textarea,input[type="radio"]{
padding: 10px;
margin: 10px;
border: 1px solid rgb(243, 35, 35);
border-radius: 4px;
text-align: center;
}
.container{
background-color: burlywood;
padding: 10px 15px 10px 15px;
margin: 10px;
border-radius: 4px;
}
fieldset{
border: 2px solid rgb(233, 110, 110);
border-radius: 4px;
}
input[type="submit"]{
background-color: seagreen;
border: none;
border-radius: 4px;
padding: 12px 8px;
cursor: pointer;
width: 100%;
}
input[type="submit"]:hover{
background-color: tomato;
}