-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
63 lines (63 loc) · 1.8 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<!DOCTYPE html>
<html>
<head>
<title>Cell to Web</title>
<link href="https://fonts.googleapis.com/css?family=Roboto:400,500&display=swap" rel="stylesheet"> <!-- Google Font -->
<style>
body {
font-family: 'Roboto', sans-serif; /* Updated font-family */
margin: 0;
text-align: center;font-weight:200;
width: 300px;
}
#header {
font-size: 24px;
margin-bottom: 10px; margin-top: 10px;
color: #544caf;
}
#instructions {
margin-bottom: 20px;
color: #555;
}
#excelData {
width: 90%;
height: 100px;
margin: 0 auto 20px auto;
display: block;
}
#googleBtn {
padding: 10px 20px;
background-color: #544caf;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
width: 90%;
display: block;
margin: 0 auto;
}
#googleBtn:hover {
background-color: #544caf;
}
#infoLink {
display: block;
margin-top: 20px; margin-bottom: 10px;
color: #008CBA;
text-decoration: none;
}
#infoLink:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<div id="header">Cell to Web</div>
<div id="instructions">Paste your Excel column here:</div>
<textarea id="excelData"></textarea>
<button id="googleBtn">Send to Google</button>
<a href="https://github.com/soliverc/Cell-to-Web/tree/main" id="infoLink" target="_blank">
<img src="icons/info.png" alt="Info" style="width:20px;height:20px;"/>
</a>
<script src="popup.js"></script>
</body>
</html>