-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathinstall.html
95 lines (87 loc) · 2.83 KB
/
install.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
<style>
.chrome{
color: white;
text-decoration: none;
display: flex;
align-items: center;
gap: 1rem;
background-image: linear-gradient(to top right, rgb(253 224 71),rgb(21 128 61));
padding: 1rem;
border-radius: 0.25rem;
width: 250px;
}
.edge{
color: white;
text-decoration: none;
display: flex;
align-items: center;
gap: 1rem;
background-image: linear-gradient(to top right, rgb(29 78 216),rgb(21 128 61));
padding: 1rem;
border-radius: 0.25rem;
width: 250px;
}
.firefox{
color: white;
text-decoration: none;
display: flex;
align-items: center;
gap: 1rem;
background-image: linear-gradient(to top right, rgb(194 65 12),rgb(161 98 7));
padding: 1rem;
border-radius: 0.25rem;
width: 250px;
}
.img{
width: 3rem;
height: 3rem;
}
.text{
font-size: 0.875rem; /* 14px */
line-height: 1.25rem; /* 20px */
}
</style>
<html>
<!-- <a target="_blank" class="firefox" href="https://addons.mozilla.org/zh-CN/firefox/addon/notepal/">
<img src="firefox.svg" class="img" alt="">
<div>
<div>适用于 Mozilla Firefox</div>
<div class="text">从 Firefox 商店安装</div>
</div>
</a> -->
<a target="_blank" class="firefox" href="https://addons.mozilla.org/zh-CN/firefox/addon/notepal/">
<img src="firefox.svg" class="img" alt="">
<div>
<div>Applies to Mozilla Firefox</div>
<div class="text">Install from Firefox store</div>
</div>
</a>
<a target="_blank" class="edge" href="https://addons.mozilla.org/zh-CN/firefox/addon/notepal/">
<img src="edge.svg" class="img" alt="">
<div>
<div>适用于 to Edge</div>
<div class="text">从 Edge 商店安装</div>
</div>
</a>
<a target="_blank" class="edge" href="https://addons.mozilla.org/zh-CN/firefox/addon/notepal/">
<img src="edge.svg" class="img" alt="">
<div>
<div>Applies to Edge</div>
<div class="text">Install from Edge store</div>
</div>
</a>
<a target="_blank" class="chrome" href="https://addons.mozilla.org/zh-CN/firefox/addon/notepal/">
<img src="chrome.svg" class="img" alt="">
<div>
<div>Applies to Chrome</div>
<div class="text">Install from Chrome store</div>
</div>
</a>
<a target="_blank" class="chrome" href="https://addons.mozilla.org/zh-CN/firefox/addon/notepal/">
<img src="chrome.svg" class="img" alt="">
<div>
<div>适用于 to Chrome</div>
<div class="text">从 Chrome 商店安装</div>
</div>
</a>
</html>