-
-
Notifications
You must be signed in to change notification settings - Fork 119
Expand file tree
/
Copy pathpopup.html
More file actions
35 lines (35 loc) · 1.18 KB
/
popup.html
File metadata and controls
35 lines (35 loc) · 1.18 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
<html>
<head>
<style>
body {
-webkit-touch-callout: none; /* iOS Safari */
-webkit-user-select: none; /* Safari */
-khtml-user-select: none; /* Konqueror HTML */
-moz-user-select: none; /* Old versions of Firefox */
-ms-user-select: none; /* Internet Explorer/Edge */
user-select: none;
}
.vp-no-colab-page {
width: 190px;
height: 50px;
grid-template-rows: 25px;
font-size: 11px;
padding: 5px;
}
.vp-no-colab-page div {
line-height: 25px;
text-align: left;
}
.vp-no-colab-title {
font-weight: bold;
font-size: 14px;
}
</style>
</head>
<body>
<div class="vp-no-colab-page">
<div class="vp-no-colab-title">Open Google Colab.</div>
<div>Visual Python works on <a href="https://colab.research.google.com/" target="_blank">Google Colab</a>.</div>
</div>
</body>
</html>