-
Notifications
You must be signed in to change notification settings - Fork 2
/
calibration.js
46 lines (42 loc) · 1.7 KB
/
calibration.js
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
/*=====================================================================*/
/* serrano/diffusion/talk/pliss23/calibration.js */
/* ------------------------------------------------------------- */
/* Author : Manuel Serrano */
/* Creation : Wed Oct 14 14:24:34 2015 */
/* Last change : Thu Aug 24 10:27:01 2023 (serrano) */
/* Copyright : 2015-23 Manuel Serrano */
/* ------------------------------------------------------------- */
/* Pliss23 title */
/*=====================================================================*/
"use hopscript";
/*---------------------------------------------------------------------*/
/* import ... */
/*---------------------------------------------------------------------*/
import * as path from "path";
import { inriaSVG } from "./config.js";
import * as impress from "hopimpress-0.6.*.hz";
/*---------------------------------------------------------------------*/
/* calibration ... */
/*---------------------------------------------------------------------*/
export const calibration = <impress.slide title="calibration">
<div>The End</div>
</impress.slide>
calibration.css = <style>
.body {
background-color: #eee;
border: 4px solid black;
positon: absolute;
}
div {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
text-align: center;
padding-top: 4ex;
font-size: 120%;
font-weight: bold;
color: var(--greydark);
}
</style>