-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmix_match.html
74 lines (71 loc) · 4.13 KB
/
mix_match.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
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<head>
<meta http-equiv='refresh' content='2; URL=mix_match2.html'>
</head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/full.css" rel="stylesheet" type="text/css" />
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdn.tailgrids.com/tailgrids-fallback.css" />
<Style>
@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
body{
font-family: 'Raleway', sans-serif;
}
:root, [data-theme] {
background-color: #ffffff !important ;
/* color: hsla(var(--bc)/var(--tw-text-opacity,1)); */
}
html[data-theme='light'] {
--background-color: #fff;
--text-color: #121416d8;
--link-color: #543fd7;
}
</Style>
</head>
<body class="bg-gradient-to-b from-blue-100 to white overflow-x-hidden" style="background-color: #ffffff !important;" id="body">
<header>
<nav class="fixed w-full relative">
<div class="container m-auto px-6 md:px-12 lg:px-6">
<div class="flex flex-wrap items-center justify-between py-6 gap-6 md:py-4 md:gap-0">
<div class="w-full flex justify-between lg:w-auto"><a href="index.html" aria-label="logo"><img src="logo.png" class="w-24" alt="mixeo logo" width="144" height="48"></a>
<button aria-label="hamburger" id="hamburger" class="w-10 h-10 mr-2 block md:hidden">
<div aria-hidden="true" id="line" class="inset-0 w-6 h-0.5 mt-2 m-auto rounded bg-gray-500 transtion duration-300"></div>
<div aria-hidden="true" id="line2" class="inset-0 w-6 h-0.5 mt-2 m-auto rounded bg-gray-500 transtion duration-300"></div>
</button></div>
<div id="menu" class="w-full md:flex md:items-center md:w-auto md:space-y-0 md:p-0 md:flex-nowrap hidden">
<div class="block w-full lg:items-center lg:flex ">
<ul class="space-y-6 pb-6 tracking-wide font-medium text-gray-600 lg:pb-0 lg:pr-6 lg:items-center lg:flex lg:space-y-0">
<li><a href="index.html" class="block md:px-3"><span>Home</span></a></li>
<li><a href="about.html" class="block md:px-3" id="link"><span>About Us</span></a></li>
<li><a href="how.html" class="block md:px-3"><span>How it works</span></a></li>
</ul>
<ul class="border-t space-y-2 pt-2 lg:space-y-0 lg:space-x-2 lg:pt-0 lg:pl-2 lg:border-t-0 lg:border-l lg:items-center lg:flex">
<li><a href="sign.html"><button type="button" title="Start buying" class="w-full py-3 px-6 rounded-full text-center transition focus:bg-sky-100 sm:w-max"><span class="block text-cyan-600 font-semibold"> Sign in </span></button></a></li>
<li><a href="DASHBOARD.html"><button type="button" title="Start buying" class="w-full py-3 px-6 rounded-full text-center transition bg-cyan-500 hover:bg-cyan-600 hover:border-cyan-900 hover:border-10 focus:bg-sky-600 sm:w-max"><span class="block text-white font-semibold"> Try it Now </span></button></a></li>
</ul>
</div>
</div>
</div>
</div>
</nav>
</header>
<div class="px-8 py-2 text-gray-800">
<div class="flex items-center mx-auto container justify-center md:justify-between py-2">
<div>
<span>Fetching Clothes from virtual wardrobe </span>
</div>
<div class=" bg-blue-100 ">
<button type="button" class="grid grid-cols-3 bg-indigo-400 w-40 h-11 rounded-lg text-white font-bold hover:bg-indigo-300 hover:cursor-not-allowed duration-[500ms,800ms]" disabled>
<div class="grid-1 my-auto h-5 w-5 mx-3 border-t-transparent border-solid animate-spin rounded-full border-white border-4"></div>
<div class="grid-2 my-auto -mx-1"> Processing... <div>
</button>
</div>
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>