Skip to content

Commit 07b0ac1

Browse files
authored
Codeit 1.0.4
Dev
2 parents 1f9147f + e55cee7 commit 07b0ac1

File tree

18 files changed

+839
-567
lines changed

18 files changed

+839
-567
lines changed

.tags

Lines changed: 0 additions & 124 deletions
This file was deleted.

404.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,3 +42,4 @@
4242
">- Bill Wurtz</a><br><br>404 not found</p>
4343
</body>
4444
</html>
45+

bottomfloat.js

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -51,18 +51,19 @@ sidebarOpen.addEventListener('click', () => {
5151
})
5252

5353

54-
function playPushAnimation(element) {
54+
const pushAnimDuration = 0.85; // s
55+
const endAnimDuration = 0.18; // s
56+
const checkDelay = (2 - endAnimDuration) * 1000; // ms
5557

56-
const endAnimDuration = 0.18; // s
57-
const checkDelay = 2 - endAnimDuration;
58+
function playPushAnimation(element) {
5859

5960
element.classList.add('checked');
6061

6162
window.setTimeout(() => {
6263

6364
element.classList.remove('checked');
6465

65-
}, (checkDelay * 1000));
66+
}, checkDelay);
6667

6768
}
6869

dark-theme.css

Lines changed: 4 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -231,22 +231,12 @@ cd-el {
231231
cursor: unset;
232232
}
233233

234-
.token.url-link {
234+
.token.url-link,
235+
.token.email-link,
236+
.token.md-link {
235237
color: inherit;
236238
caret-color: #fff;
237-
text-decoration: none;
238-
position: relative;
239-
}
240-
241-
.token.url-link::before {
242-
content: '';
243-
position: absolute;
244-
bottom: 0;
245-
left: 0;
246-
right: 0;
247-
height: 2px;
248-
background: #313744;
249-
box-shadow: inset 0 -1px 0 0;
239+
text-decoration: underline;
250240
}
251241

252242

0 commit comments

Comments
 (0)