-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdelivery.php
58 lines (54 loc) · 1.01 KB
/
delivery.php
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
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>Delivery status</title>
<style>
body {
background-image: url(assets/delivery.jpg);/* source: https://www.cafe-future.ru/upload/medialibrary/9bd/9bd1d9a03a5fd96a71b425818a78b1ba.jpg */
background-blend-mode: multiply;
background-color: #2e3a44;
background-size: cover;
}
#top {
width: 100%;
text-align: center;
color: #fff;
}
@media (min-width: 1001px) {
#top {
font-size: 3em;
height: 1000px;
}
}
@media (max-width: 1070px) and (min-width: 651px) {
#top {
font-size: 2em;
height: 600px;
}
}
@media (max-width: 650px) {
#top {
font-size: 1.3em;
padding-top: 50%;
height: 500px;
}
}
@media (max-width: 450px) {
#top {
font-size: 0.9em;
}
}
#top h1 {
padding-top: 15%;
color: #cfe;
}
</style>
</head>
<body>
<div id="top">
<h1>Your shopping cart has been successfully paid, please wait for the courier.</h1>
<h3> <em><a href="cart.php">Go back</a></em> </h3>
</div>
</body>
</html>