-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
52 lines (50 loc) · 1.64 KB
/
index.html
File metadata and controls
52 lines (50 loc) · 1.64 KB
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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/png" href="/favicon.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>LeetCode 136: 只出现一次的数字</title>
<style>
/* 强制移除所有链接下划线 */
a, a:link, a:visited, a:hover, a:active, a:focus {
text-decoration: none !important;
border-bottom: none !important;
box-shadow: none !important;
-webkit-box-shadow: none !important;
outline: none !important;
color: inherit;
}
/* 特别针对标题中的链接 */
.main-title a,
.main-title a:link,
.main-title a:visited,
.main-title a:hover,
.main-title a:active,
.main-title a:focus,
.no-underline-link {
text-decoration: none !important;
border-bottom: none !important;
box-shadow: none !important;
-webkit-box-shadow: none !important;
outline: none !important;
-webkit-text-decoration: none !important;
border-bottom-color: transparent !important;
border-bottom-style: none !important;
border-bottom-width: 0 !important;
}
/* 针对github识别的链接样式覆盖 */
[href^="https://leetcode.cn"],
[href^="https://github.com"] {
text-decoration: none !important;
border-bottom: none !important;
box-shadow: none !important;
outline: none !important;
}
</style>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>