forked from JesusCalatayud/CSS_Challenge
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
122 lines (103 loc) · 4.57 KB
/
index.html
File metadata and controls
122 lines (103 loc) · 4.57 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
112
113
114
115
116
117
118
119
120
121
122
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- displays site properly based on user's device -->
<link rel="icon" type="image/png" sizes="32x32" href="./images/favicon-32x32.png">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<script src="https://kit.fontawesome.com/0f1a972779.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="main.css">
<title>Frontend Mentor | [Challenge Name Here]</title>
</head>
<body>
<div id="global_container">
<div>
<div id="purple_thing"></div>
<div id="iPhone">
<div id="screen">
<div id="contact_square">
<div id="notch"></div>
<div style="display: flex; align-items: center; padding-left: 15px; padding-bottom: 7px;">
<i class="fas fa-angle-left" style="color: white;"></i>
<div style="padding-left: 5px;">
<div id="profile_picture">
</div>
</div>
<div style="display: inline;">
<span style="font-size: 0.7rem;
font-family: Arial, Helvetica, sans-serif;
font-weight: bold; color: white; padding-bottom:7px; padding-left: 7px;">
Samuel
Green</span>
<p style="font-size: 0.5rem;
font-family: Arial, Helvetica, sans-serif;
font-weight: lighter; color: white; margin: 0px; padding-left: 7px;">
Available to Walk</p>
</div>
<span style="color:white; position: absolute; right: 15px;">⋮</span>
</div>
</div>
<div class="regular_message">
<p style="margin: 0;">That sounds great. I’d be<br> happy with that.</p>
</div>
<div class="regular_message">
<p style="margin: 0;">Could you send over some pictures of your dog, please?</p>
</div>
<div style="display: flex; justify-content: flex-end">
<img class="dog_picture" src="/images/dog-image-1.jpg" alt="dog 1">
<img class="dog_picture" src="/images/dog-image-2.jpg" alt="dog 2">
<img class="dog_picture" src="/images/dog-image-3.jpg" alt="dog 3">
</div>
<div style="display: flex; justify-content: flex-end;">
<div class="reply_message">
<p style="margin: 0;">Here are a few pictures. She’s a happy girl!</p>
</div>
</div>
<div style="display: flex; justify-content: flex-end;">
<div class="reply_message" style="width: auto;">
<p style="margin: 0;">Can you make it?</p>
</div>
</div>
<div class="regular_message">
<p style="margin: 0;">She looks so happy! The time we discussed works. How<br> long shall I take her out
for?
</p>
</div>
<div class="price_message">
<div class="empty_circle">
</div>
<span
style="font-size: 0.5rem; color: white; font-family: Arial, Helvetica, sans-serif; font-weight: lighter;">30
minute walk</span>
<span
style="font-size: 0.8rem; color: white; font-family: Arial, Helvetica, sans-serif; font-weight: bold; position: absolute; right: 20px;">$29</span>
</div>
<div class="price_message">
<div class="empty_circle">
</div>
<span
style="font-size: 0.5rem; color: white; font-family: Arial, Helvetica, sans-serif; font-weight: lighter;">1
hour walk</span>
<span
style="font-size: 0.8rem; color: white; font-family: Arial, Helvetica, sans-serif; font-weight: bold; position: absolute; right: 20px;">$49</span>
</div>
<div id="message_input">
<p>Type a message...</p>
<i style="position: absolute; right: 3px; color: rgb(46, 45, 45); font-size: 25px;"
class="fas fa-chevron-circle-right"></i>
</div>
</div>
</div>
</div>
<div id="text_container">
<p id="title">Simple booking</p>
<p id="text"> Stay in touch with our dog walkers through the chat interface. This makes it easy to
discuss arrangements and make bookings. Once the walk has been completed you can rate
your walker and book again all through the chat.
</p>
<div id="transparent_purple_thing"></div>
</div>
</div>
</body>
</html>