yourails_sep_academy_web 0.82.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/css/styles-init.css +24 -0
- package/index.html +79 -0
- package/js/bundle.min.js +1164 -0
- package/js/bundle.min.js.gz +0 -0
- package/js/index.ae58153f53ca8c6fa345.js +992 -0
- package/js/index.ae58153f53ca8c6fa345.js.LICENSE.txt +110 -0
- package/manifest.json +4 -0
- package/package.json +110 -0
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
body {
|
|
2
|
+
margin: 0;
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
.SectionContentWrapper {
|
|
6
|
+
padding: 5vw;
|
|
7
|
+
background: rgb(32, 32, 32);
|
|
8
|
+
color: rgb(215, 215, 215);
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
.SectionContent {
|
|
12
|
+
opacity: 0.025;
|
|
13
|
+
animation-delay: 2.5s;
|
|
14
|
+
animation-duration: 1s;
|
|
15
|
+
animation-fill-mode: forwards;
|
|
16
|
+
animation-iteration-count: 1;
|
|
17
|
+
animation-name: delayChange;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
@keyframes delayChange {
|
|
21
|
+
to {
|
|
22
|
+
opacity: 1;
|
|
23
|
+
}
|
|
24
|
+
}
|
package/index.html
ADDED
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
<!doctype html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
|
|
4
|
+
<head>
|
|
5
|
+
<title>
|
|
6
|
+
YouRails - Teach curious; Learn from inspired
|
|
7
|
+
</title>
|
|
8
|
+
<link rel="canonical" href="https://yourails.com">
|
|
9
|
+
<meta name="viewport"
|
|
10
|
+
content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1.00001,viewport-fit=cover" />
|
|
11
|
+
<meta charset="utf-8">
|
|
12
|
+
<meta name="description"
|
|
13
|
+
content="Behind every great human achievement there are teachers who helped to get on top. Courses, tests, certificates">
|
|
14
|
+
<meta name="keywords" content="Learn, Maths, Mathmatics, Story, School, Homework, Learning, Education, fun" />
|
|
15
|
+
|
|
16
|
+
<link rel="shortcut icon" href="https://yourails.com/images/logoYouRails/logos_cap_2024-02-10/favicon.ico"
|
|
17
|
+
type="image/x-icon">
|
|
18
|
+
<link rel="icon" href="https://yourails.com/images/logoYouRails/logos_cap_2024-02-10/favicon-16x16.png" sizes="32x32">
|
|
19
|
+
<link rel="icon" href="https://yourails.com/images/logoYouRails/logos_cap_2024-02-10/favicon-32x32.png" sizes="32x32">
|
|
20
|
+
<link rel="icon" href="https://yourails.com/images/logoYouRails/logos_cap_2024-02-10/android-chrome-192x192.png"
|
|
21
|
+
sizes="192x192">
|
|
22
|
+
<link rel="icon" href="https://yourails.com/images/logoYouRails/logos_cap_2024-02-10/android-chrome-512x512.png"
|
|
23
|
+
sizes="512x512">
|
|
24
|
+
|
|
25
|
+
<meta property="og:site_name" content="YouRails" />
|
|
26
|
+
<meta property="og:url" content="https://yourails.com" />
|
|
27
|
+
<meta property="og:type" content="website" />
|
|
28
|
+
<meta property="og:title" content="YouRails - Teach curious; Learn from inspired" />
|
|
29
|
+
<meta property="og:image"
|
|
30
|
+
content="https://yourails.com/images/logoYouRails/logos_cap_2024-02-10/android-chrome-192x192.png" />
|
|
31
|
+
<meta property="og:description"
|
|
32
|
+
content="Behind every great human achievement there are teachers who helped to get on top. Courses, tests, certificates" />
|
|
33
|
+
<meta name="msapplication-TileColor" content="#f8f8ff" />
|
|
34
|
+
<meta name="theme-color" content="#f8f8ff" />
|
|
35
|
+
|
|
36
|
+
<meta name="twitter:card" content="summary" /> <!-- or summary_large_image -->
|
|
37
|
+
<meta name="twitter:title" content="YouRails - Teach curious; Learn from inspired" />
|
|
38
|
+
<meta name="twitter:title" content="<%= title %>" />
|
|
39
|
+
<meta name="twitter:description"
|
|
40
|
+
content="Behind every great human achievement there are teachers who helped to get on top. Courses, tests, certificates" />
|
|
41
|
+
<meta name="twitter:image"
|
|
42
|
+
content="https://yourails.com/images/logoYouRails/logos_cap_2024-02-10/android-chrome-192x192.png" />
|
|
43
|
+
|
|
44
|
+
<meta httpequiv="X-UA-Compatible" content="IE=edge" />
|
|
45
|
+
<meta name="mobile-web-app-capable" content="yes">
|
|
46
|
+
<meta name="apple-mobile-web-app-capable" content="yes">
|
|
47
|
+
<meta name="apple-touch-fullscreen" content="yes">
|
|
48
|
+
<meta name="apple-mobile-web-app-title" content="YouRails - Teach curious; Learn from inspired">
|
|
49
|
+
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
|
|
50
|
+
|
|
51
|
+
<link rel="manifest" href="https://cdn.jsdelivr.net/npm/yourails-assets-sep-academy-web@0.71.31/dist/manifest.json">
|
|
52
|
+
<link rel="stylesheet" type="text/css"
|
|
53
|
+
href="https://cdn.jsdelivr.net/npm/yourails-assets-sep-academy-web@0.71.31/dist/css/styles-loading-init.css">
|
|
54
|
+
</head>
|
|
55
|
+
|
|
56
|
+
<body><noscript>
|
|
57
|
+
<form action="" style="background-color:#fff;position:fixed;top:0;left:0;right:0;bottom:0;z-index:9999">
|
|
58
|
+
<div style="font-size:18px;font-family:Helvetica,sans-serif;line-height:24px;margin:10%;width:80%">
|
|
59
|
+
<p>Oh no! It looks like JavaScript is not enabled in your browser.</p>
|
|
60
|
+
<p style="margin:20px 0"><button type="submit"
|
|
61
|
+
style="background-color:#4630eb;border-radius:100px;border:none;box-shadow:none;color:#fff;cursor:pointer;font-weight:700;line-height:20px;padding:6px 16px">Reload</button>
|
|
62
|
+
</p>
|
|
63
|
+
</div>
|
|
64
|
+
</form>
|
|
65
|
+
</noscript>
|
|
66
|
+
<div id="root">
|
|
67
|
+
<div class="LoaderOverlay3Yrl LoaderOverlay3Yrl_show">
|
|
68
|
+
<div class="_spinner"></div>
|
|
69
|
+
</div>
|
|
70
|
+
</div>
|
|
71
|
+
|
|
72
|
+
<!-- <script defer="defer" src="/static/js/bundle.min.js.gz"></script> -->
|
|
73
|
+
<script type="text/javascript" defer="defer"
|
|
74
|
+
src="https://cdn.jsdelivr.net/npm/yourails-assets-sep-academy-web@0.71.31/dist/js/bundle.min.js"
|
|
75
|
+
crossorigin="anonymous"></script>
|
|
76
|
+
|
|
77
|
+
</body>
|
|
78
|
+
|
|
79
|
+
</html>
|