-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
85 lines (75 loc) · 1.53 KB
/
index.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
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
body {
background-color: rgb(243, 188, 188);
margin: 0;
font-family: Arial, sans-serif;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
}
.input_journey {
display: flex;
justify-content: center;
align-items: center;
width: 100%;
height: 100vh;
background-color: rgba(255, 255, 255, 0.8);
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
#input_form {
background: white;
border: 1px solid blue;
box-shadow: 0px 2px 12px rgb(103, 244, 3);
padding: 40px;
border-radius: 8px;
transition: all 0.3s ease-in-out;
}
#output {
background-color: aqua;
color: blue;
display: flex;
justify-content: center;
align-items: center;
padding: 20px;
border-radius: 8px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
form {
display: flex;
flex-direction: column;
gap: 15px;
}
label {
font-weight: bold;
margin-bottom: 5px;
}
input[type="text"] {
padding: 10px;
border: 1px solid #ddd;
border-radius: 4px;
font-size: 16px;
transition: border-color 0.3s;
}
input[type="text"]:focus {
border-color: #007bff;
}
button[type="submit"] {
padding: 10px;
background-color: #007bff;
color: white;
border: none;
border-radius: 4px;
cursor: pointer;
font-size: 16px;
transition: 0.3s;
}
button[type="submit"]:hover {
background-color: #0056b3;
}
#map {
line-height:100%;
height: 400%;
width: 100%;
border-color:3px solid blue;
}