forked from vineethtrv/css-toggles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
106 lines (87 loc) · 4.58 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
<!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">
<!-- Browser Icons -->
<link rel="apple-touch-icon" sizes="180x180" href="./assets/images/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="./assets/images/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="./assets/images/favicon-16x16.png">
<link rel="manifest" href="./site.webmanifest">
<link rel="mask-icon" href="./safari-pinned-tab.svg" color="#5bbad5">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="theme-color" content="#ffffff">
<title>CSS Toggles and Switches</title>
<!-- Search Engine -->
<meta name="title" content="CSS Toggles and Switches">
<meta name="description"
content="CSS Toggle is a collection of different types of toggles, switches and their source code. There are no javascript dependencies in this. It's is done using pure CSS. Hence it is easily customization too.">
<meta name="keywords" content="css, toggle, switches , checkbox , radiobutton, radio button, HTML, CSS3">
<meta name="author" content="Vineeth TR">
<!-- Schema.org for Google -->
<meta itemprop="name" content="CSS Toggles and Switches">
<meta itemprop="description"
content="CSS Toggle is a collection of different types of toggles, switches and their source code. There are no javascript dependencies in this. It's is done using pure CSS. Hence it is easily customization too.">
<meta name="image" content="https://csstoggles.github.io/assets/images/css-toggle.png">
<!-- Open Graph general (Facebook, Pinterest & Google+) -->
<meta name="og:title" content="CSS Toggles and Switches">
<meta name="og:description"
content="CSS Toggle is a collection of different types of toggles, switches and their source code. There are no javascript dependencies in this. It's is done using pure CSS. Hence it is easily customization too.">
<meta name="og:image" content="https://csstoggles.github.io/assets/images/css-toggle.png">
<meta name="og:url" content="https://csstoggles.github.io/">
<meta name="og:site_name" content="CSS Toggles and Switches">
<meta name="fb:admins" content="https://www.facebook.com/vinithtrv">
<meta name="og:type" content="website">
<!-- Twitter -->
<meta name="twitter:card" content="summary">
<meta name="twitter:title" content="CSS Toggles and Switches">
<meta name="twitter:description"
content="CSS Toggle is a collection of different types of toggles, switches and their source code. There are no javascript dependencies in this. It's is done using pure CSS. Hence it is easily customization too.">
<meta property="twitter:url" content="https://csstoggles.github.io/">
<meta name="twitter:creator" content="@vineethtrv">
<meta name="twitter:image:src" content="https://csstoggles.github.io/assets/images/css-toggle.png">
<!-- Styles -->
<link rel="stylesheet" href="./assets/css/styles.css">
</head>
<body>
<header class="app-header">
<h1 class="brand">CSS Toggle</h1>
<nav>
<a class="nav-btn codepen" title="View in CodePen" target="_blank" href="https://codepen.io/vineethtrv/pen/MWGzaMO"></a>
<a class="nav-btn git" target="_blank" title="Fork Github" href="https://github.com/vineethtrv/css-toggles"></a>
</nav>
</header>
<main class="container" id="app"></main>
<div class="overlay">
<div class="popup">
<button class="btn-close">×</button>
<div class="showcase"></div>
<div class="code-content">
<div class="code-area">
<div class="code-header">
HTML
<button class="copy" data-id="markup">Copy</button>
</div>
<code id="markup"></code>
</div>
<div class="code-area">
<div class="code-header">
CSS
<button class="copy" data-id="css">Copy</button>
</div>
<code id='css'></code>
</div>
</div>
</div>
</div>
<!-- Footer -->
<footer>
<a href="https://vineethtrv.github.io/" target="_blank">
<span>👨‍💻</span>
Vineeth TR
</a>
</footer>
<script type="module" src="./assets/js/app.js"></script>
</body>
</html>