-
Notifications
You must be signed in to change notification settings - Fork 433
/
add-address.css
46 lines (39 loc) · 1.09 KB
/
add-address.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
body {
background-color: #f0f0f0; /* Change background color of the page */
font-family: "Baloo Bhai", cursive;
}
.main-container {
padding: 2vw;
background-color: rgb(221, 160, 138);
}
.form-container {
max-width: 800px;
margin: auto;
background: url("https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQ8U0rDtyI121wfvf1T10w87IJzGU8zbCxA5Q&s")
no-repeat center center; /* Add form background image */
background-size: cover;
padding: 20px;
border-radius: 8px;
border: 2px solid black;
transition: transform 0.3s ease-in-out; /* Add transition */
}
.form-container:hover {
transform: scale(1.02); /* Add a scaling effect on hover */
box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
}
.form-container form {
margin: 0 auto;
width: 30vw;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}
.form-floating input {
transition: background-color 0.3s ease-in-out;
border: 2px solid black;
}
.form-floating input:focus {
background-color: rgba(255, 255, 255, 0.8);
}