Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 52a2e41e05 | |||
| 17ab288b63 | |||
| f607034a33 | |||
| a934d5537b |
+2
-2
@@ -28,8 +28,8 @@ cvs.classList.add('progressBar');
|
|||||||
cvs.classList.add('hiddenBottom');
|
cvs.classList.add('hiddenBottom');
|
||||||
|
|
||||||
const bar=new ProgressBar(assetSpecs.length*2+tasks.reduce((a, t) => a+t.steps, 0));
|
const bar=new ProgressBar(assetSpecs.length*2+tasks.reduce((a, t) => a+t.steps, 0));
|
||||||
bar.addUpdateListener(() => bar.draw(cvs));
|
bar.addUpdateListener(() => bar.draw(cvs, '#930a16', '#23090d'));
|
||||||
bar.draw(cvs);
|
bar.draw(cvs, '#930a16', '#23090d');
|
||||||
|
|
||||||
document.body.appendChild(cvs);
|
document.body.appendChild(cvs);
|
||||||
setTimeout(() => cvs.classList.remove('hiddenBottom'), 0);
|
setTimeout(() => cvs.classList.remove('hiddenBottom'), 0);
|
||||||
|
|||||||
@@ -108,10 +108,20 @@
|
|||||||
background: @accentbg;
|
background: @accentbg;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
|
|
||||||
|
cursor: pointer;
|
||||||
|
|
||||||
border-radius: 1rem;
|
border-radius: 1rem;
|
||||||
border: 0;
|
border: 0;
|
||||||
padding: 2rem;
|
padding: 2rem;
|
||||||
margin: 1rem;
|
margin: 1rem;
|
||||||
|
|
||||||
|
transition: box-shadow .5s;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
color: @fg;
|
||||||
|
text-decoration: underline;
|
||||||
|
box-shadow: black 0 0 2rem;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -40,6 +40,11 @@ a {
|
|||||||
display: contents;
|
display: contents;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
a:hover {
|
||||||
|
color: @fg;
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
|
||||||
em {
|
em {
|
||||||
font-style: italic;
|
font-style: italic;
|
||||||
}
|
}
|
||||||
@@ -71,6 +76,9 @@ header img, footer img {
|
|||||||
}
|
}
|
||||||
header img {
|
header img {
|
||||||
height: 8rem;
|
height: 8rem;
|
||||||
|
&:hover {
|
||||||
|
border-color: @fg;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
footer img {
|
footer img {
|
||||||
height: 4rem;
|
height: 4rem;
|
||||||
@@ -86,6 +94,10 @@ header ul {
|
|||||||
|
|
||||||
a {
|
a {
|
||||||
color: @fg;
|
color: @fg;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
color: @accentfg;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user