part 4
This commit is contained in:
parent
93590a206c
commit
c72a9072eb
2 changed files with 8 additions and 8 deletions
|
@ -10,7 +10,7 @@
|
|||
<body>
|
||||
<input id="txtUrl" style="width:72%;" placeholder="Put the website here" name="url" type="text" onkeypress="clickPress(event)" />
|
||||
<button onclick="go(); return false;" id="goBtn">✅</button> <button onclick="back(); return false;" id="backBtn">⬅️</button> <button onclick="forward(); return false;" id="forwardBtn">➡️</button>
|
||||
<tab-group new-tab-button="true" sortable="true"><webview id="foo" style="width:100%; height:90vh;user-select: none;" disablewebsecurity></webview></tab-group>
|
||||
<tab-group new-tab-button="true" sortable="true"><webview id="foo" style="width:100%; height:90vh" disablewebsecurity></webview></tab-group>
|
||||
<script src="node_modules/electron-tabs/dist/electron-tabs.js"></script>
|
||||
<script type="text/javascript" src="./extension/extensionList.js"></script>
|
||||
<script type="text/javascript" src="./config.js"></script>
|
||||
|
|
14
styles.css
14
styles.css
|
@ -10,8 +10,7 @@
|
|||
text-align: center;
|
||||
text-decoration: none;
|
||||
display: inline-block;
|
||||
font-size: 3rem;
|
||||
user-select: none;
|
||||
font-size: 1.25rem;
|
||||
}
|
||||
|
||||
#backBtn {
|
||||
|
@ -22,8 +21,7 @@
|
|||
text-align: center;
|
||||
text-decoration: none;
|
||||
display: inline-block;
|
||||
font-size: 3rem;
|
||||
user-select: none;
|
||||
font-size: 1.25rem;
|
||||
}
|
||||
|
||||
#forwardBtn {
|
||||
|
@ -34,8 +32,7 @@
|
|||
text-align: center;
|
||||
text-decoration: none;
|
||||
display: inline-block;
|
||||
font-size: 3rem;
|
||||
user-select: none;
|
||||
font-size: 1.25rem;
|
||||
}
|
||||
|
||||
#txtUrl {
|
||||
|
@ -44,6 +41,9 @@
|
|||
text-align: center;
|
||||
text-decoration: none;
|
||||
display: inline-block;
|
||||
font-size: 3rem;
|
||||
font-size: 1.25rem;
|
||||
}
|
||||
|
||||
body {
|
||||
user-select: none;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue