mirror of
https://github.com/zyqunix/tools.git
synced 2025-07-06 14:30:31 +02:00
remake entire wakatime
Some checks failed
Deploy static content to Pages / deploy (push) Failing after 4s
Some checks failed
Deploy static content to Pages / deploy (push) Failing after 4s
This commit is contained in:
parent
28da635859
commit
de5a113001
4 changed files with 243 additions and 11 deletions
|
@ -582,7 +582,7 @@ div[class="cards sitemap shadow"] > h4 {
|
|||
top: 50%;
|
||||
left: 50%;
|
||||
transform: translate(-50%, -50%);
|
||||
background-color: var(--surface0)ee;
|
||||
background-color: rgba(49, 50, 68, 0.8);
|
||||
width: 600px;
|
||||
padding: 20px;
|
||||
border-radius: 10px;
|
||||
|
@ -695,8 +695,37 @@ div[class="cards sitemap shadow"] > h4 {
|
|||
position: fixed;
|
||||
left: 0;
|
||||
top: 0;
|
||||
backdrop-filter: blur(10px);
|
||||
backdrop-filter: blur(20px);
|
||||
opacity: 0;
|
||||
visibility: hidden;
|
||||
transition: 0.3s;
|
||||
}
|
||||
|
||||
summary {
|
||||
font-size: large;
|
||||
user-select: none;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
details > summary {
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
details > summary::-webkit-details-marker {
|
||||
display: none;
|
||||
}
|
||||
|
||||
details > summary::before {
|
||||
content: "➤";
|
||||
display: inline-block;
|
||||
margin-right: 6px;
|
||||
transition: transform 0.2s ease;
|
||||
}
|
||||
|
||||
details[open] > summary::before {
|
||||
transform: rotate(90deg);
|
||||
}
|
||||
|
||||
br {
|
||||
margin: 4px 0;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue