-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
111 lines (98 loc) · 2.24 KB
/
styles.css
File metadata and controls
111 lines (98 loc) · 2.24 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
* {
box-sizing: border-box;
margin: 0;
padding: 0;
color: white;
}
body {
font-family: 'Arial', sans-serif;
background-image: url('img2.jpg');
/* URL to the background image */
background-size: cover;
/* Scale the image to cover the entire body */
background-position: center;
/* Center the image */
background-repeat: no-repeat;
/* Prevent the image from repeating */ display: flex;
justify-content: center;
align-items: center;
height: 100vh;
padding: 20px;
}
.container {
padding: 40px;
max-width: 500px;
width: 100%;
border-radius: 10px;
background: rgba(255, 255, 255, 0.1); /* Semi-transparent background */
backdrop-filter: blur(10px);
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
h2 {
text-align: center;
margin-bottom: 20px;
color: rgba(255, 255, 255, 0.3);
}
form label {
font-weight: bold;
margin-bottom: 8px;
}
form input, form select {
width: 100%;
padding: 10px;
margin-bottom: 15px;
border: 0px solid #ccc;
border-bottom: 2px solid white;
font-size: 16px;
outline: none;
background: rgba(255, 255, 255, 0);
}
form input:focus, form select:focus {
outline: none;
}
button {
width: 100%;
padding: 10px;
background: rgba(255, 255, 255, 0.3);
color: white;
border: none;
border-radius: 5px;
font-size: 16px;
cursor: pointer;
transition: background-color 0.3s ease;
}
button:hover {
background-color: #8dbff5;
}
input[type="range"] {
width: 100%;
-webkit-appearance: none;
appearance: none;
height: 5px;
background: #ddd;
border-radius: 5px;
outline: none;
transition: background 0.3s ease;
}
input[type="range"]::-webkit-slider-thumb {
-webkit-appearance: none;
appearance: none;
width: 15px;
height: 15px;
border-radius: 50%;
background: #ffffff;
cursor: pointer;
transition: background 0.3s ease;
}
input[type="range"]:hover::-webkit-slider-thumb {
background: #0056b3;
}
#budgetValue {
font-weight: bold;
color: white;
margin-left: 10px;
}
.dates {
display: flex;
gap: 6px;
}