-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpopup.html
64 lines (57 loc) · 2.27 KB
/
popup.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="all.min.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Epilogue:wght@400;600;900&display=swap" rel="stylesheet">
</head>
<body>
<main>
<div class="py-container">
<h1>CodePen is <strong>Lava</strong></h1>
<div class="py-technos">
<div>
<span class="py-title">HTML</span>
<div class="py-actions">
<label>
<input type="checkbox" class="js-checkbox-html">
<i class="fas fa-fw fa-2x fa-eye eye show"></i>
<i class="fas fa-fw fa-2x fa-eye-slash eye hide"></i>
</label>
<i class="far fa-fw fa-2x fa-trash-alt js-clear-html"></i>
</div>
</div>
<div>
<span class="py-title">CSS</span>
<div class="py-actions">
<label>
<input type="checkbox" class="js-checkbox-css">
<i class="fas fa-fw fa-2x fa-eye eye show"></i>
<i class="fas fa-fw fa-2x fa-eye-slash eye hide"></i>
</label>
<i class="far fa-fw fa-2x fa-trash-alt js-clear-css"></i>
</div>
</div>
<div>
<span class="py-title">JS</span>
<div class="py-actions">
<label>
<input type="checkbox" class="js-checkbox-js">
<i class="fas fa-fw fa-2x fa-eye eye show"></i>
<i class="fas fa-fw fa-2x fa-eye-slash eye hide"></i>
</label>
<i class="far fa-fw fa-2x fa-trash-alt js-clear-js"></i>
</div>
</div>
</div>
<div class="py-footer">
<p>Produced with ♥️ by <a href="https://twitter.com/benjamincodeYT" target="_blank">BenjaminCode</a>.</p>
</div>
<span id="extErrorMessage" class="py-error" style="color:red"></span>
</div>
</main>
<script src="popup.js"></script>
</body>
</html>