forked from Soumyajit2825/Payment_Form
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle_form.css
More file actions
65 lines (56 loc) · 1.09 KB
/
style_form.css
File metadata and controls
65 lines (56 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
53
54
55
56
57
58
59
60
61
62
63
64
65
* {
box-sizing: border-box;
}
hr {
border: solid #1976d2;
}
body {
font-family: Verdana, Geneva, Tahoma, sans-serif;
margin: 15px 12%;
font-size: 15px;
padding: 8px;
background-color:rgb(142, 35, 85);
color: #f8c87a;
background-image: url("https://www.transparenttextures.com/patterns/gplay.png");
}
.container {
background-color:#27c819;
padding: 15px 50px 25px 50px;
border: seashell;
border-radius: 10px;
width: fit-content;
margin: auto;
display: flex;
opacity: 0.9;
}
input[type="text"],
input[type="email"],
input[type="number"],
input[type="password"],
input[type="date"],
select,
textarea{
background-color: #DBE9EE;
width: 100%;
padding: 12px;
margin:10px;
}
fieldset{
border: 2.5px solid #DBE9EE;
}
.main_heading {
text-align: center;
}
input[type="submit"]{
background-color:#c91e6e;
color:rgb(255, 255, 255);
padding: 12px 20px;
border: none;
border-radius: 4px;
cursor: pointer;
width: 100%;
}
input[type=submit]:hover{
background-color: #4A6FA5;
font-size: 120%;
}