-
Notifications
You must be signed in to change notification settings - Fork 10
/
index.html
42 lines (35 loc) · 1.75 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Facebook Reactions only CSS</title>
<link rel="stylesheet" href="app/css/base.css">
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
<meta property="og:type" content="website"/>
<meta property="og:locale" content="en" />
<meta property="og:title" content="Facebook Reactions only CSS" />
<meta property="og:site_name" content="Facebook Reactions only CSS"/>
<meta property="og:description" content="Facebook Reactions developed only with HTML and CSS by Deivid Marques"/>
<meta property="og:url" content="http://deividmarques.github.io/facebook-reactions-css/"/>
<meta property="og:image" content="http://deividmarques.github.io/facebook-reactions-css/assets/images/thumb.jpg" />
<!-- inject:css -->
<link rel="stylesheet" href="assets/css/base.css">
<!-- endinject -->
</head>
<body>
<h1 class="main-title">Facebook Reactions only CSS</h1>
<div class="box">
<input type="checkbox" id="like" class="field-reactions">
<label for="like" class="label-reactions">Like</label>
<span class="text-desc">Press space and after tab key to navigation</span>
<div class="toolbox"></div>
<label class="overlay" for="like"></label>
<button class="reaction-like"><span class="legend-reaction">Like</span></button>
<button class="reaction-love"><span class="legend-reaction">Love</span></button>
<button class="reaction-haha"><span class="legend-reaction">Haha</span></button>
<button class="reaction-wow"><span class="legend-reaction">Wow</span></button>
<button class="reaction-sad"><span class="legend-reaction">Sad</span></button>
<button class="reaction-angry"><span class="legend-reaction">Angry</span></button>
</div>
</body>
</html>