forked from biratdatta/Webpage-Maker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpaymentform.css
More file actions
52 lines (47 loc) · 1.09 KB
/
paymentform.css
File metadata and controls
52 lines (47 loc) · 1.09 KB
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
*{
box-sizing: border-box;
}
body{
font-family:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
margin: 15px 30px;
font-size: 17px;
padding: 8px;
}
.container{
background-color: rgba(233, 235, 251, 0.669);
padding: 5px 20px 15px 20px;
border: 4px solid rgb(92, 166, 245);
border-radius: 6px;
}
input[type="text"],
input[type="email"],
input[type="number"],
input[type="password"],
input[type="date"],
select,
textarea{
width: 100%;
padding: 12px;
border: 1px solid rgb(71, 47, 138);
border-radius: 5px;
margin: 10px;
}
fieldset{
background-color: rgb(255, 255, 255);
border: 1px solid rgb(154, 140, 193);
}
.main_heading{
text-align: center;
}
input[type="submit"]{
background-color:rgb(56, 145, 116) ;
color: white;
padding: 12px 20px;
border: none;
border-radius: 4px;
cursor: pointer;
width: 100%;
}
input[type="submit"]:hover{
background-color:rgb(80, 175, 82) ;
}