forked from tiigsi-bootcamp/learning-git
-
Notifications
You must be signed in to change notification settings - Fork 0
/
components.html
63 lines (49 loc) · 2.13 KB
/
components.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
<!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>TailwindCSS Components</title>
<link rel="stylesheet" href="tailwind.min.css">
</head>
<body class="bg-gray-300">
<div class="container mx-auto">
<div class="bg-white rounded h-52 md:h-16 flex-row flex flex-col md:flex-row justify-between items-center p-5">
<h4 class="text-green-600 text-2xl tracking-wide cursor-pointer font-semibold">CompanyX</h4>
<nav class="md:block flex space-x-2 justify-center items-center">
<a href="#!" class="py-5 px-3 transition hover:text-green-500 hover:bg-gray-200">Home</a>
<a href="#!" class="py-5 px-3 transition hover:text-green-500 hover:bg-gray-200">About</a>
<a href="#!" class="py-5 px-3 transition hover:text-green-500 hover:bg-gray-200">Contact</a>
</nav>
<button type="button"
class="bg-green-500 flex gap-x-1 text-white py-3 px-5 rounded shadow-lg transition hover:shadow-2xl">
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6" fill="none" viewBox="0 0 24 24"
stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M11 16l-4-4m0 0l4-4m-4 4h14m-5 4v1a3 3 0 01-3 3H6a3 3 0 01-3-3V7a3 3 0 013-3h7a3 3 0 013 3v1" />
</svg>
Sign In
</button>
</div>
</div>
<div class="my-6"></div>
<div
class="bg-white max-w-md md:max-w-2xl rounded-xl mx-auto shadow-lg hover:shadow-2xl overflow-hidden transition">
<div class="md:flex">
<div>
<img src="01.jpg" alt="No image!" class="w-full h-full">
</div>
<div class="p-8">
<h4 class="text-sm font-semibold uppercase text-blue-700">Things</h4>
<a href="#!" class="mt-1 block text-2xl capitalize hover:underline">Some things</a>
<p class="mt-2 text-gray-600">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Adipisci, nemo harum! Molestiae sit laborum
voluptatum expedita alias atque dolorem aperiam nemo molestias eius commodi possimus quaerat est,
natus voluptate dolorum.
</p>
</div>
</div>
</div>
</body>
</html>