mirror of
https://github.com/michivonah/click-guide.git
synced 2025-12-22 22:16:28 +01:00
improve popup ui
This commit is contained in:
parent
a84d0a512e
commit
b1c9b26e23
2 changed files with 64 additions and 6 deletions
|
|
@ -9,7 +9,7 @@ Similar to tango.us/dubble.so/folge.me/magichow.co but all local - no data leave
|
||||||
- [x] ability to save multiple steps
|
- [x] ability to save multiple steps
|
||||||
- [x] export guide as json file
|
- [x] export guide as json file
|
||||||
- [ ] add recording start/stop functionality
|
- [ ] add recording start/stop functionality
|
||||||
- [ ] create basic popup UI
|
- [x] create basic popup UI
|
||||||
|
|
||||||
### Additional nice to have:
|
### Additional nice to have:
|
||||||
- [ ] Viewer for Guide JSON
|
- [ ] Viewer for Guide JSON
|
||||||
|
|
|
||||||
|
|
@ -2,14 +2,72 @@
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<style>
|
<style>
|
||||||
body { font-family: Arial, sans-serif; }
|
body {
|
||||||
button { width: 100%; padding: 10px; margin-top: 10px; }
|
font-family: Arial, sans-serif;
|
||||||
|
background: #D6AFF2;
|
||||||
|
color: #000;
|
||||||
|
width: auto;
|
||||||
|
min-width: 120px;
|
||||||
|
height: auto;
|
||||||
|
--light: #D6AFF2;
|
||||||
|
--dark: #c791ed;
|
||||||
|
--accent: #b065e6;
|
||||||
|
}
|
||||||
|
|
||||||
|
button {
|
||||||
|
width: 100%; padding: 10px; margin-top: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.content{
|
||||||
|
padding: 0 20px;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
justify-content: center;
|
||||||
|
align-content: baseline;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.logo{
|
||||||
|
margin: 20px 0;
|
||||||
|
width: 64px;
|
||||||
|
height: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
button{
|
||||||
|
margin: 5px 0;
|
||||||
|
background: var(--dark);
|
||||||
|
color: #fff;
|
||||||
|
border: 2px solid;
|
||||||
|
transition: 0.2s all;
|
||||||
|
}
|
||||||
|
|
||||||
|
button:hover{
|
||||||
|
background: var(--accent);
|
||||||
|
}
|
||||||
|
|
||||||
|
a{
|
||||||
|
margin: 10px 0;
|
||||||
|
color: #000;
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
|
||||||
|
a:hover{
|
||||||
|
color: var(--accent);
|
||||||
|
}
|
||||||
|
|
||||||
|
p{
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<h3>Cl1ck Gu1de</h3>
|
<div class="content">
|
||||||
|
<img class="logo" src="assets/logo/white/logo128x128.png" alt="Cl1ck Gu1de">
|
||||||
<button id="toggleRecording">Start Recording</button>
|
<button id="toggleRecording">Start Recording</button>
|
||||||
<button id="exportBtn">Export JSON</button>
|
<button id="exportBtn">Export JSON</button>
|
||||||
|
<a href="https://github.com/michivonah/click-guide/issues" target="_blank" alt="Report Bug">Report bug</a>
|
||||||
|
<p>© 2024</p>
|
||||||
|
</div>
|
||||||
<script src="popup.js"></script>
|
<script src="popup.js"></script>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue