-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path8e.html
More file actions
78 lines (76 loc) · 2.1 KB
/
8e.html
File metadata and controls
78 lines (76 loc) · 2.1 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
.head{
font-size: 28px;
font-family: arial;
}
.pickup{
padding-left: 10px;
padding-right: 100px;
padding-top: 12px;
padding-bottom: 12px;
margin-bottom: 8px;
background-color: rgba(239, 239, 239, 0.848);
border:none;
cursor: pointer;
}
.destination{
padding-left: 10px;
padding-right: 100px;
padding-top: 12px;
padding-bottom: 12px;
margin-bottom: 8px;
background-color: rgba(239, 239, 239, 0.848);
border:none;
cursor: pointer;
}
.later{
padding-left: 10px;
padding-right: 20px;
padding-top: 12px;
padding-bottom: 12px;
margin-bottom: 8px;
margin-left: 30px;
margin-top: 20px;
background-color: rgba(239, 239, 239, 0.848);
border:none;
cursor: pointer;
transition: background-color 0.2s;
}
.later:hover{
background-color: rgb(206, 205, 205);
}
.now{
padding-left: 10px;
padding-right: 30px;
padding-top: 12px;
padding-bottom: 12px;
margin-bottom: 8px;
background-color: black;
color: white;
border:none;
cursor: pointer;
transition: opacity 0.2s;
}
.now:hover{
opacity:0.4;
}
</style>
</head>
<body>
<P class="head">Request a ride now</P>
<div>
<input class="pickup" type="text" placeholder="Enter pickup location">
</div>
<div>
<input class="destination" type="text" placeholder="Enter destination">
</div>
<button class="now">Request now</butoon>
<button class="later">Shedule for later</button>
</body>
</html>