-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
44 lines (38 loc) · 830 Bytes
/
Copy pathstyle.css
File metadata and controls
44 lines (38 loc) · 830 Bytes
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
*{
padding: 0;
margin: 0;
font-family: 'Montserrat', sans-serif;
}
body{
background-image: url('background.jpg');
}
.heading{
margin-top: 20px;
}
.input-field{
width: 300px;
}
label{
font-size: 20px;
}
/*Disable the Increase/Decrease arrows from Phone No. field*/
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
-webkit-appearance: none; /*for Chrome and Safari*/
-moz-appearance: none; /*for Firefox*/
appearance: none;
margin: 0;
}
form{
border: 2px solid grey;
width: max-content;
padding: 20px;
border-radius: 20px;
margin: 20px 0px;
background-color: whitesmoke;
}
.form-container{
display: flex;
justify-content: center;
align-items: center;
}