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
|
|
@ -2,14 +2,72 @@
|
|||
<html>
|
||||
<head>
|
||||
<style>
|
||||
body { font-family: Arial, sans-serif; }
|
||||
button { width: 100%; padding: 10px; margin-top: 10px; }
|
||||
body {
|
||||
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>
|
||||
</head>
|
||||
<body>
|
||||
<h3>Cl1ck Gu1de</h3>
|
||||
<button id="toggleRecording">Start Recording</button>
|
||||
<button id="exportBtn">Export JSON</button>
|
||||
<div class="content">
|
||||
<img class="logo" src="assets/logo/white/logo128x128.png" alt="Cl1ck Gu1de">
|
||||
<button id="toggleRecording">Start Recording</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>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue