forked from NikHarshal/updated-project-unit2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
payment.css
51 lines (46 loc) · 1023 Bytes
/
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
form {
margin: 0 auto;
margin-top: 50px;
width: 30%;
box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
padding: 30px;
box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
background-color: rgb(180, 176, 244);
}
label {
font-size: 20px;
font-family: Arial, Helvetica, sans-serif;
}
input[type="submit"] {
background-color: #b8f06a;
color: rgb(7, 6, 6);
padding: 12px 20px;
border: none;
border-radius: 20px;
cursor: pointer;
width: 100%;
font-size: 20px;
}
input[type="submit"]:hover {
background-color: #3973b6;
}
input[type="text"],
input[type="number"],
select,
textarea {
width: 100%;
padding: 12px;
border: 1px solid #ccc;
border-radius: 4px;
box-sizing: border-box;
margin-top: 6px;
margin-bottom: 16px;
resize: vertical;
}
div{
text-align: center;
font-size: 38px;
font-family: Arial, Helvetica, sans-serif;
color: rgb(227, 158, 134);
box-shadow: rgba(173, 101, 101, 0.35) 0px 5px 15px;
}