Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump loader-utils from 1.4.0 to 1.4.2 in /quiz/code #42

Open
wants to merge 34 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
9eb8f2b
Adaptive design
sivukhin Nov 16, 2016
6d7dfdd
Refactore sources of adaptive_design
sivukhin Nov 16, 2016
b87ec4e
Refactor quiz code
sivukhin Nov 17, 2016
00dd7a0
Change style of gallery scroll
sivukhin Nov 17, 2016
a5f4422
Add prob theory hw
sivukhin Dec 19, 2016
9013345
Calendar
sivukhin Feb 3, 2017
555b616
Fix bug and add field for custom date
sivukhin Feb 3, 2017
6feeabc
Add events
sivukhin Feb 3, 2017
25ae02f
Remove exclamation sign in caption div
sivukhin Feb 4, 2017
8e38694
New Prob HW
sivukhin Feb 22, 2017
4a7740c
Small fix in Home work and fix calendar
sivukhin Feb 24, 2017
82f77e0
New prob theory HW
sivukhin Mar 1, 2017
d592c3f
Prob HW
sivukhin Mar 29, 2017
ac0f1b1
Fix bug in prob_theory4 solution
sivukhin Mar 29, 2017
51454c5
Add edi-calendar static files and React sources
sivukhin Sep 16, 2018
d764ae9
Fix css in edi-calendar a little
sivukhin Sep 17, 2018
4182f8e
Adjust date in edi-calendar
Umqra Dec 11, 2019
0cca2fc
Adjust date in the minified javascript
Umqra Dec 11, 2019
772da2b
Rename main.4ba9e5f9.js to main.4ba9e5f9_2.js
Umqra Dec 11, 2019
bc3f5ef
Update index.html
Umqra Dec 11, 2019
28f25de
Add garland
sivukhin Dec 13, 2019
680da89
Add string compression slides
sivukhin Sep 6, 2020
ef746b8
Update talk slides
sivukhin Sep 9, 2020
36d9e1d
Add simple quiz
sivukhin Dec 23, 2020
4a41022
Add sources for quiz
sivukhin Dec 23, 2020
55da575
Update code
sivukhin Dec 23, 2020
51af443
Update game data and production bundle
sivukhin Dec 23, 2020
b0e4c39
Update code
sivukhin Dec 24, 2020
c9102bb
Update bundle.js
sivukhin Dec 24, 2020
07c032d
Adjust layout
sivukhin Dec 24, 2020
0292d1f
Update bundle.js
sivukhin Dec 24, 2020
78825c0
update code
sivukhin Dec 25, 2020
9c57195
Update bundle
sivukhin Dec 25, 2020
39af843
Bump loader-utils from 1.4.0 to 1.4.2 in /quiz/code
dependabot[bot] Nov 14, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Add garland
  • Loading branch information
sivukhin committed Dec 13, 2019
commit 28f25de01928762219502c720baf777643f38789
41 changes: 41 additions & 0 deletions garland/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>New Year Garland</title>
</head>
<body>
<style>
.garland-track {
width: 100%;
height: 800px;
position: fixed;
z-index: -1;
}
.garland-draw-1 {
width: 100%;
height: 800px;
position: fixed;
z-index: 1;
pointer-events: none;
}
.garland-draw-2 {
width: 100%;
height: 800px;
position: fixed;
z-index: 2;
pointer-events: none;
}
.garland-draw-3 {
width: 100%;
height: 800px;
position: fixed;
z-index: 3;
pointer-events: none;
} </style>
<div id="root">
</div>
<script type="text/javascript" src="main.min.js"></script>
</html>
Loading