-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
110 lines (104 loc) · 4.72 KB
/
index.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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
<!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" />
<link rel="stylesheet" href="css/style.css" />
<title>My Tailwind Components</title>
</head>
<body>
<!-- Container div -->
<div class="flex items-center justify-center bg-white h-full">
<!-- Flexbox Items Container -->
<div
class="flex flex-col p-4 space-y-6 my-12 md:flex-row md:space-y-0 md:space-x-6"
>
<!-- Flex Items -->
<!-- Email popup -->
<div
class="group mx-4 p-4 rounded-xl border border-lime-600 flex flex-col hover:bg-gradient-to-br from-lime-600 to-lime-700 hover:scale-105 duration-200"
>
<h3
class="text-lime-600 capitalize font-medium group-hover:text-white text-center max-w-[200px]"
>
ui design daily email popup tailwind
</h3>
<div
class="my-3 border-t border-lime-600 group-hover:border-white"
></div>
<p class="text-lime-600 max-w-[200px] text-center mx-auto group-hover:text-white">
An Implementation of a UI desgin daily Email Popup challenge done with Tailwind
</p>
<div class="flex mt-4 space-x-2">
<a
href="components/ui-design-daily-email-popup-tailwind/index.html"
class="mx-auto inline-block px-8 py-2 text-lime-600 text-center border border-lime-600 font-medium rounded-lg group-hover:bg-white"
>Link</a
>
<a
href="https://github.com/bolajiayeni/simple-tailwind-components/tree/master/components/ui-design-daily-email-popup-tailwind"
class="mx-auto inline-block px-8 py-2 text-lime-600 text-center border border-lime-600 font-medium rounded-lg group-hover:bg-white"
>GitHub</a
>
</div>
</div>
<!-- Pricing Grid Component -->
<div
class="group mx-4 p-4 rounded-xl border border-lime-600 flex flex-col hover:bg-gradient-to-br from-lime-600 to-lime-700 hover:scale-105 duration-200 "
>
<h3
class="text-lime-600 capitalize font-medium group-hover:text-white text-center max-w-[200px]"
>
ui design daily pricing card component
</h3>
<div
class="my-3 border-t border-lime-600 group-hover:border-white"
></div>
<p class="text-lime-600 mx-auto max-w-[200px] text-center group-hover:text-white">
An Implementation of a UI desgin daily Email pricing cards challenge done with Tailwind
</p>
<div class="flex mt-4 space-x-2">
<a
href="components/Ui-design-daily-Pricing-Cards-Ui-component/index.html"
class="mx-auto inline-block px-8 py-2 text-lime-600 text-center border border-lime-600 font-medium rounded-lg group-hover:bg-white"
>Link</a
>
<a
href="https://github.com/bolajiayeni/simple-tailwind-components/tree/master/components/Ui-design-daily-Pricing-Cards-Ui-component"
class="mx-auto inline-block px-8 py-2 text-lime-600 text-center border border-lime-600 font-medium rounded-lg group-hover:bg-white"
>GitHub</a
>
</div>
</div>
<!-- Product Modal -->
<div
class="group mx-4 p-4 rounded-xl border border-lime-600 flex flex-col hover:bg-gradient-to-br from-lime-600 to-lime-700 hover:scale-105 duration-200 "
>
<h3
class="text-lime-600 capitalize font-medium group-hover:text-white text-center max-w-[200px]"
>
ui design daily product modal
</h3>
<div
class="my-3 border-t border-lime-600 group-hover:border-white"
></div>
<p class="text-lime-600 mx-auto max-w-[200px] text-center group-hover:text-white">
An Implementation of a UI desgin daily product modal challenge done with Tailwind
</p>
<div class="flex mt-4 space-x-2">
<a
href="components/Ui-design-daily-product-modal/index.html"
class="mx-auto inline-block px-8 py-2 text-lime-600 text-center border border-lime-600 font-medium rounded-lg group-hover:bg-white"
>Link</a
>
<a
href="https://github.com/bolajiayeni/simple-tailwind-components/tree/master/components/Ui-design-daily-product-modal"
class="mx-auto inline-block px-8 py-2 text-lime-600 text-center border border-lime-600 font-medium rounded-lg group-hover:bg-white"
>GitHub</a
>
</div>
</div>
</div>
</body>
</html>