-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
40 lines (40 loc) · 1.7 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>LeetSouls: Code Extractor</title>
<link href="https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css">
<link rel="stylesheet" href="popup.css">
</head>
<body>
<div class="container">
<!-- <img src="logo.png" alt="LeetSouls Logo" class="logo"> -->
<h1 class="title">LeetSouls: Code Extractor</h1>
<p class="description">Brave Tarnished, seek the LeetCode contest to use this extension.</p>
<div class="links">
<a href="https://www.linkedin.com/in/himanegi/" target="_blank" class="link" title="LinkedIn Dungeon">
<i class="fab fa-linkedin-in"></i>
</a>
<a href="https://github.com/himanegi" target="_blank" class="link" title="GitHub Realm">
<i class="fab fa-github"></i>
</a>
<a href="#" class="link" id="supportButton" title="Offer Runes">
<i class="fas fa-coins"></i>
</a>
</div>
<div class="qr-modal" id="qrModal">
<div class="qr-content">
<img src="./images/qr-code.png" alt="Support QR Code" class="qr-code">
<p>Scan to offer Runes</p>
<button class="close-btn link" id="closeModal">
<i class="fas fa-times"></i>
</button>
</div>
</div>
<div class="rune-circle"></div>
</div>
<script src="popup.js"></script>
</body>
</html>