Challenges on 2023

This commit is contained in:
2023-09-18 15:28:15 +03:00
commit edaa753596
96 changed files with 1287 additions and 0 deletions

BIN
r3 easy/assets/.DS_Store vendored Normal file

Binary file not shown.

BIN
r3 easy/assets/box.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 28 KiB

View File

@@ -0,0 +1,32 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
body {
background: white;
}
</style>
</head>
<body>
<pre>
--- Правила ---
1) Никаких превью и предпросмотров результатов
2) Из редактора уходить нельзя, переключаться на другие окна и тд
3) Никаких измерительных приборов (линеек, циркулей и тд)
4) Убираем руки от клавиатуры когда закончится время
5) В конце нажимаем Finish и вводим yes
Удачи и получай удовольствие от процесса!
--- Assets ---
./box.gif (700x235)
./mario.gif (614x600)
Background color: #2196F3
</pre>
</body>
</html>

BIN
r3 easy/assets/mario.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 154 KiB

BIN
r3 easy/assets/page.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

View File

@@ -0,0 +1,19 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
</head>
<body>
<script>
window.addEventListener('message', function(e) {
if (
window.location.origin === 'file://' ||
window.location.origin === (e.origin || e.originalEvent.origin)
) {
document.documentElement.innerHTML = e.data
}
})
</script>
</body>
</html>