-
Notifications
You must be signed in to change notification settings - Fork 7
/
index.html
156 lines (155 loc) · 5 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Checkbox Radio | Tuds</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="This is checkbox & radio, easy way to add checkbox-radio to your site or blog, all you need to do is add css class into your html tag, checkbox-radio do not used jQuery or javascript, It's used CSS3">
<meta name="keywords" content="HTML, CSS, XML, JavaScript, CSS3, ES6, Npm, tuds, Crazychicken, checkbox_radio, checkbox_radio_bootstrap, checkbox_radio_font, checkbox_radio_img_sprite">
<meta name="author" content="Tuds - Crazychicken">
<meta name="robots" content="noodp,index,follow" />
<meta name='revisit-after' content='1 days' />
<meta http-equiv="content-language" content="en" />
<meta content='http://tuds.ninja/checkbox-radio/images/ms-icon-310x310.png' property='og:image'/>
<link rel="icon shortcut" type="image/png" sizes="16x16" href="http://t-scroll.com/theme/images/favicon.png">
<link href="https://fonts.googleapis.com/css?family=Open+Sans:400" rel="stylesheet">
<style type="text/css">
* {
margin: 0;
}
body {
font-family: 'Open Sans';
}
.banner {
width: 100%;
height: 280px;
display: inline-block;
background: url('./images/banner.png') center center no-repeat;
background-size: cover;
}
img {
max-width: 100%;
}
.container {
width: 600px;
margin: 0 auto;
text-align: center;
}
.container a {
display: block;
color: #4b4b4b;
padding: 20px;
margin: 20px 0;
text-decoration: none;
box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.container a:hover {
transition: box-shadow;
transition-duration: 500ms;
box-shadow: 0 2px 5px rgba(0,0,0,0.15);
}
.tuds-seo {
display: none;
}
.footer {
float: left;
width: 100%;
text-align: center;
font-size: 13px;
margin-top: 50px;
padding-bottom: 15px;
}
.footer small {
font-size: 11px;
}
.footer p {
margin: 5px 0;
}
.btn {
border: none;
background: none;
color: #fff;
font-size: 12px;
border-radius: 3px;
background-color: #1a8bb6;
padding: 5px 8px;
outline: none;
text-decoration: none;
}
.btn:hover {
color: #fff;
background-color: #316d84;
}
.group-social {
position: absolute;
right: 15px;
top: 15px;
text-align: center;
}
.group-social small {
font-size: 12px;
}
.group-social .btn {
float: left;
margin: 0 5px;
}
@media (max-width: 767px) {
.container {
width: 90%;
padding: 0 5%;
}
.banner {
width: 100%;
height: 150px;
display: inline-block;
background: url('./images/banner.png') center center no-repeat;
background-size: cover;
}
.group-social {
right: 5%;
}
}
</style>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-46711522-2', 'auto');
ga('send', 'pageview');
</script>
</head>
<body>
<h1 class="banner">
<img class="tuds-seo" src="./images/about-checkbox-radio.png" alt="tuds crazychicken checkbox radio">
</h1>
<div class="group-social">
<a href="https://github.com/crazychicken/checkbox-radio" class="btn">Github</a>
<a href="https://twitter.com/mtu_truong" class="btn">Twitter</a>
<!-- <br>
<small>Currently v1.0.6</small> -->
</div>
<div class="container">
<small>Currently v1.1.0</small>
<br>
<a target="_blank" href="dist/checkbox_radio.html">
Checkbox & Radio custom style CSS
</a>
<a target="_blank" href="dist/checkbox_radio_bootstrap.html">
Checkbox & Radio custom style Bootstrap
</a>
<a target="_blank" href="dist/checkbox_radio_font.html">
Checkbox & Radio custom style CSS Font
</a>
<a target="_blank" href="dist/checkbox_radio_img_sprite.html">
Checkbox & Radio custom style CSS Sprite
</a>
</div>
<footer class="footer">
Another thing from <a href="http://tuds.ninja">Tuds - Crazychicken.</a>
<p>
<small>Code and documentation copyright 2016, MIT license.</small>
</p>
</footer>
</body>
</html>