-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
169 lines (143 loc) · 5.2 KB
/
index.html
File metadata and controls
169 lines (143 loc) · 5.2 KB
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Open Graph meta tags for social sharing -->
<meta property="og:title" content="Ez Share - Simplify Social Media Sharing">
<meta property="og:description"
content="Share your favorite articles, images, and quotes with ease using ezShare. Simplify social media sharing for your audience.">
<meta property="og:image" content="https://i.pinimg.com/originals/62/f0/84/62f084621324c4f3aad1b2bd17fe4f72.jpg">
<meta property="og:url" content="https://github.com/shakilahmed0369/ez-share">
<meta property="og:type" content="website">
<title>Ez Share</title>
<style>
body {
background: url('https://media.giphy.com/media/v1.Y2lkPTc5MGI3NjExYnBvZXNjNTZxNXNjNzJ5YWUwdnBkb2k5NzAxNTl5eGd3bmVzYjBvZyZlcD12MV9pbnRlcm5hbF9naWZfYnlfaWQmY3Q9Zw/Basrh159dGwKY/giphy.gif') no-repeat;
background-attachemnt: fixed;
background-size: cover;
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
}
.glass {
position: relative;
background: inherit;
overflow: hidden;
width: 70%;
height: 70%;
border-radius: 16px;
box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3),
0 6px 20px rgba(0, 0, 0, 0.15);
z-index: 1;
}
.glass:before {
content: '';
position: absolute;
background: inherit;
top: 0;
left: 0;
right: 0;
bottom: 0;
margin: -20px;
box-shadow: inset 0 0 500px rgba(255, 255, 255, .4);
filter: blur(10px);
z-index: -1;
}
.info-container {
text-align: center;
}
.info-container h1 {
color: white;
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
.info-container p {
color: white;
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
font-weight: 100;
padding-left: 100px;
padding-right: 100px;
}
.buttons-container {
text-align: center;
margin-top: 60px;
}
.buttons-container a {
text-decoration: none;
padding: 20px;
color: white;
background: #000000ab;
display: inline-block;
margin: 5px;
border-radius: 12px;
font-family: system-ui;
cursor: pointer;
}
@media only screen and (max-width: 768px) {
body {
background-size: cover;
}
.glass {
width: 90% !important;
height: 90% !important;
}
.info-container p {
padding-left: 20px;
padding-right: 20px;
}
.buttons-container {
margin-top: 30px;
}
.buttons-container a {
padding: 15px;
margin: 3px;
}
}
@media only screen and (max-width: 480px) {
/* Adjustments for even smaller screens */
.info-container h1 {
font-size: 24px;
}
.info-container p {
font-size: 14px;
}
.buttons-container {
margin-top: 20px;
}
.buttons-container a {
padding: 12px;
margin: 2px;
}
}
</style>
</head>
<body>
<div class="glass">
<div class="info-container">
<h1>ezShare.js</h1>
<p>ezShare is a lightweight JavaScript plugin that enables easy sharing of content on various social media
platforms.</p>
</div>
<div class="buttons-container">
<a href="#" class="button ez-facebook" data-hashtags="awesome,news">Share on Facebook</a>
<a href="#" class="button ez-linkedin">Share on LinkedIn</a>
<a href="#" class="button ez-pinterest" data-description="Check out this amazing photo!"
data-media="https://picsum.photos/200/300">Pin on Pinterest</a>
<a href="#" class="button ez-pocket">Save to Pocket</a>
<a href="#" class="button ez-reddit" data-title="Interesting article you must read!">Post on Reddit</a>
<a href="#" class="button ez-telegram" data-text="Check out this awesome website!">Share on Telegram</a>
<a href="#" class="button ez-x" data-text="Exciting news!" data-via="shakilahmed"
data-hashtags="awesome,news">Tweet on X</a>
</div>
<p>
</p>
</div>
<script src="https://cdn.jsdelivr.net/gh/shakilahmed0369/ez-share/dist/ez-share.min.js"></script>
<script>
document.addEventListener("DOMContentLoaded", function () {
ezShare.execute();
})
</script>
</body>
</html>