forked from jgthms/css-reference
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathshare.html
More file actions
36 lines (36 loc) · 1.01 KB
/
Copy pathshare.html
File metadata and controls
36 lines (36 loc) · 1.01 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
<div id="modal-share" class="modal">
<div class="modal-box">
<p class="modal-title">Share this CSS property</p>
<p class="modal-url">
<input
id="modal-input"
class="input"
type="text"
value="{{site.url}}/"
readonly
/>
<button
id="modal-copy"
class="button is-primary"
data-clipboard-target="#modal-input"
>
Copy
</button>
</p>
<p class="modal-social">
<a
id="modal-twitter"
class="button is-twitter"
href="https://twitter.com/intent/tweet?url=http%3A%2F%2Fbgooonz-blog.github.io&text=CSS%20Reference%3A%20a%20visual%20guide%20to%20the%20most%20popular%20%23CSS%20properties"
>Share on Twitter</a
>
<a
id="modal-facebook"
class="button is-facebook"
href="https://www.facebook.com/sharer.php?u=http%3A%2F%2Fbgooonz-blog.github.io"
>Share on Facebook</a
>
</p>
<a id="modal-close" class="modal-close"></a>
</div>
</div>