-
Notifications
You must be signed in to change notification settings - Fork 0
/
mysearches.html
89 lines (83 loc) · 2.45 KB
/
mysearches.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Searches</title>
<script
src="https://kit.fontawesome.com/24c494a6b6.js"
crossorigin="anonymous"
></script>
<style>
#main{
width: 70%;
margin: auto;
}
p{
text-align: center;
font-family: "Suisse Intl", "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 15px;
line-height: 21px;
font-style: normal;
font-weight: 300;
}
#main>#cont{
background-color: black;
color: white;
text-align: center;
padding: 10px 0px 10px 0px ;
font-size: 18px;
font-weight: 700;
font-style: normal;
line-height: 25px;
font-family: "Suisse Intl", "Helvetica Neue", Helvetica, Arial, sans-serif;;
}
h2{
font-family: "Suisse Intl", "Helvetica Neue", Helvetica, Arial, sans-serif;
font-style: normal;
font-weight: 700;
font-size: 27px;
line-height: 35px;
}
#button{
text-align: center;
}
button{
padding: 10px 20px 10px 20px;
background-color: white;
font-family:"Suisse Intl", "Helvetica Neue", Helvetica, Arial, sans-serif;
font-style: normal;
font-weight: 400;
line-break: 14px;
font-size: 15px;
}
button:hover{
cursor: pointer;
background-color: black;
color: white;
}
</style>
</head>
<body>
<div id="main">
<h2>Saved searches</h2>
<div id="cont">
<i class="fa-solid fa-heart-crack"></i>
<br>
<h3>You haven't saved any searches</h3>
</div>
<p>
Take the hassle out of following your favorite fashion.
<br>
We can scan over 5 million products daily so you'll always be up-to-date.
<br>
<br>
Enter your criteria and you'll be the first to know when we detect new items for your searches.
</p>
<div id="button">
<button>+ Create a new search</button>
</div>
</div>
</body>
</html>