Skip to content

Commit

Permalink
moving results to separate page & custom css
Browse files Browse the repository at this point in the history
  • Loading branch information
bedardk committed Oct 16, 2023
1 parent aa1e881 commit e4f6c40
Show file tree
Hide file tree
Showing 15 changed files with 4,610 additions and 0 deletions.
18 changes: 18 additions & 0 deletions css/custom.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
h1 span.stacked {
display: flex;
flex-direction: column-reverse;
margin-left: -9999px
}

h1 span.stacked span:nth-child(1) {
margin-top: -1.1em;
margin-left: 9999px
}

h1 span.stacked span:nth-child(2) {
margin-left: 9999px;
font-size: 26px;
color: #555;
font-weight: 500;
margin-bottom: .17em
}

Large diffs are not rendered by default.

Large diffs are not rendered by default.

370 changes: 370 additions & 0 deletions karine/sign-in-proto/en/applicants/results/ircc-portal.html

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

400 changes: 400 additions & 0 deletions karine/sign-in-proto/en/applicants/results/ircc-secure-account.html

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

360 changes: 360 additions & 0 deletions karine/sign-in-proto/en/applicants/results/pay-fees.html

Large diffs are not rendered by default.

Large diffs are not rendered by default.

390 changes: 390 additions & 0 deletions karine/sign-in-proto/en/applicants/results/pr-portal.html

Large diffs are not rendered by default.

361 changes: 361 additions & 0 deletions karine/sign-in-proto/en/applicants/results/tr-pr-portal.html

Large diffs are not rendered by default.

14 changes: 14 additions & 0 deletions karine/sign-in-proto/en/js/sign-in-script.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
const btnBack = document.getElementById('btnBack');
const ref = document.referrer;

if (ref.indexOf("/sign-in-proto/") === -1) btnBack.remove();

btnBack.onclick = function () {
history.back();
};

window.onpageshow = function (event) {
if (event.persisted) {
window.location.reload();
}
};

0 comments on commit e4f6c40

Please sign in to comment.