-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathextension.html
52 lines (48 loc) · 1.08 KB
/
extension.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
<!DOCTYPE html>
<html>
<head>
<style>
.options-container {
display: grid;
grid-template-columns: repeat(2, 1fr);
grid-gap: 10px;
}
.option {
display: flex;
}
.option a {
flex: 1;
padding: 10px 20px;
background-color: #337ab7;
color: #fff;
text-decoration: none;
border-radius: 5px;
}
.option a:hover {
background-color: #23527c;
}
.rcodenow {
grid-column: 1 / span 2;
}
</style>
</head>
<body>
<div class="options-container">
<div class="option rcodenow">
<a href="https://ext.rc.40code.com/">rCodenow</a>
</div>
<div class="option">
<a href="https://extensions.turbowarp.org/">Turbowarp</a>
</div>
<div class="option">
<a href="https://extensions.turbowarp.cn/zh-cn/">TurbowarpCN</a>
</div>
<div class="option">
<a href="http://www.better-extension.com/gallery/">BetterExtension</a>
</div>
<div class="option">
<a href="https://codingclip.com/extension/?community=1#/">ClipCC</a>
</div>
</div>
</body>
</html>