-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.ru.tpl.html
84 lines (70 loc) · 2.24 KB
/
index.ru.tpl.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<!DOCTYPE html>
<html lang="ru">
<head>
<title>Безопасный input. Сбор данных пластиковой карты в iframe.</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://shwr.me/shower/themes/ribbon/styles/styles.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/8.4/styles/default.min.css">
<style>
.shower {
--slide-ratio: calc(16 / 10);
}
mark > mark.important {
z-index: 2;
}
.slide-debug-name {
position: absolute;
top: 0;
left: 0;
font-size: 8px;
z-index: 100500;
background: #ddd;
line-height: 8px;
}
.success-img {
display: block;
position: absolute;
bottom: 5%;
right: 0;
z-index: 10;
width: 20%;
height: 36%;
background: url('./pictures/success.png');
background-size: cover;
}
.danger-img {
display: block;
position: absolute;
bottom: 5%;
right: 1%;
z-index: 10;
width: 22%;
height: 31%;
background: url('./pictures/danger.jpeg');
background-size: cover;
}
</style>
</head>
<body class="shower list">
<header class="caption">
<h1>Безопасный input.
<small style="font-size: 60%;">Сбор данных пластиковой карты в iframe.</small>
</h1>
</header>
<!-- SLIDES START -->
<!-- SLIDES END -->
<div class="progress"></div>
<script src="https://shwr.me/shower/shower.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/8.4/highlight.min.js"></script>
<link href="https://framepay.rebilly.com/rebilly.css" rel="stylesheet">
<script src="https://framepay.rebilly.com/rebilly.js"></script>
<script>
document.addEventListener('DOMContentLoaded', (event) => {
document.querySelectorAll('pre code').forEach((block) => {
hljs.highlightBlock(block);
});
});
</script>
</body>
</html>