mirror of
https://codeberg.org/JasterV/MEMORY-CARD-GAME.git
synced 2026-04-26 18:20:03 +00:00
🐸🖖 Checkpoint
./style.css:18108127/93:18108132/56 ./script.js:18108127/792:18108380/257 ./.glitch-assets:18108127/1245
This commit is contained in:
parent
e039ac1ad1
commit
d1ea4dc995
3 changed files with 15 additions and 3 deletions
|
|
@ -78,3 +78,9 @@
|
|||
{"uuid":"i8jFZMyUSj3o5AE2","deleted":true}
|
||||
{"name":"hearts-9.svg","date":"2020-07-30T07:53:26.413Z","url":"https://cdn.glitch.com/56d96ce9-5171-477f-8560-558ec3af0051%2Fhearts-9.svg","type":"image/svg+xml","size":7091,"imageWidth":97,"imageHeight":150,"thumbnail":"https://cdn.glitch.com/56d96ce9-5171-477f-8560-558ec3af0051%2Fhearts-9.svg","thumbnailWidth":97,"thumbnailHeight":150,"uuid":"WM2AYo3N82FWjigI"}
|
||||
{"name":"pair-card.svg","date":"2020-07-30T08:05:18.024Z","url":"https://cdn.glitch.com/56d96ce9-5171-477f-8560-558ec3af0051%2Fpair-card.svg","type":"image/svg+xml","size":985,"imageWidth":106,"imageHeight":150,"thumbnail":"https://cdn.glitch.com/56d96ce9-5171-477f-8560-558ec3af0051%2Fpair-card.svg","thumbnailWidth":106,"thumbnailHeight":150,"uuid":"91BaSEf5MJzjp5qX"}
|
||||
{"uuid":"91BaSEf5MJzjp5qX","deleted":true}
|
||||
{"name":"pair-card.svg","date":"2020-07-30T08:10:30.452Z","url":"https://cdn.glitch.com/56d96ce9-5171-477f-8560-558ec3af0051%2Fpair-card.svg","type":"image/svg+xml","size":1137,"imageWidth":127,"imageHeight":150,"thumbnail":"https://cdn.glitch.com/56d96ce9-5171-477f-8560-558ec3af0051%2Fpair-card.svg","thumbnailWidth":127,"thumbnailHeight":150,"uuid":"Sw8KAw8kSDP6eBRt"}
|
||||
{"uuid":"Sw8KAw8kSDP6eBRt","deleted":true}
|
||||
{"name":"pair-card.svg","date":"2020-07-30T08:12:11.538Z","url":"https://cdn.glitch.com/56d96ce9-5171-477f-8560-558ec3af0051%2Fpair-card.svg","type":"image/svg+xml","size":1138,"imageWidth":127,"imageHeight":150,"thumbnail":"https://cdn.glitch.com/56d96ce9-5171-477f-8560-558ec3af0051%2Fpair-card.svg","thumbnailWidth":127,"thumbnailHeight":150,"uuid":"vKOLLBYmdmiASbki"}
|
||||
{"uuid":"vKOLLBYmdmiASbki","deleted":true}
|
||||
{"name":"pair-card.svg","date":"2020-07-30T08:15:14.492Z","url":"https://cdn.glitch.com/56d96ce9-5171-477f-8560-558ec3af0051%2Fpair-card.svg","type":"image/svg+xml","size":1138,"imageWidth":121,"imageHeight":150,"thumbnail":"https://cdn.glitch.com/56d96ce9-5171-477f-8560-558ec3af0051%2Fpair-card.svg","thumbnailWidth":121,"thumbnailHeight":150,"uuid":"LSgQf5itQcpE6kn4"}
|
||||
|
|
|
|||
|
|
@ -175,8 +175,8 @@ function scoreBarController(barId) {
|
|||
|
||||
setUserLost(username) {
|
||||
let userContainer = this.getUser(username);
|
||||
userContainer.lastElementChild.innerHTML = `Game Lost! Made <img class="card-pairs" src="https://cdn.glitch.com/56d96ce9-5171-477f-8560-558ec3af0051%2Fpair-card.svg?v=1596096318024"> ${tries -
|
||||
1} pairs`;
|
||||
userContainer.lastElementChild.innerHTML = `<p style="display:flex;align-items:center;justify-content:center">Lost! - ${tries -
|
||||
1} <img class="card-pairs" src="https://cdn.glitch.com/56d96ce9-5171-477f-8560-558ec3af0051%2Fpair-card.svg?v=1596096914492"> in a row! </p>`;
|
||||
}
|
||||
};
|
||||
}
|
||||
|
|
|
|||
|
|
@ -240,6 +240,7 @@ strong {
|
|||
|
||||
#user-scores {
|
||||
max-height: 85%;
|
||||
overflow-y: auto;
|
||||
}
|
||||
|
||||
.ribbon-tail {
|
||||
|
|
@ -274,6 +275,12 @@ strong {
|
|||
background: #479EEB;
|
||||
}
|
||||
|
||||
.card-pairs {
|
||||
width: 30px;
|
||||
margin-left: 6px;
|
||||
margin-right: 6px;
|
||||
}
|
||||
|
||||
@media (max-width: 980px) {
|
||||
body {
|
||||
padding: 0 90px;
|
||||
|
|
@ -335,7 +342,6 @@ strong {
|
|||
@media (max-width: 860px) {
|
||||
#user-scores {
|
||||
max-height: 73%;
|
||||
overflow-y: auto;
|
||||
}
|
||||
|
||||
.fa-trophy {
|
||||
|
|
|
|||
Loading…
Reference in a new issue