-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
87 lines (71 loc) · 1.23 KB
/
index.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
85
86
87
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>PaperCubes</title>
<link rel="import" href="bower_components/neon-animation/web-animations.html">
<link rel="import" href="paper-cubes/paper-cubes.html">
</head>
<body>
<style>
*
{
image-rendering: pixelated;
}
html
{
height: 100%;
--primary-color: #8bc34a;
--light-primary-color: #cddc39;
--dark-primary-color: #4caf50;
--convex-color: #bbb;
--concarve-color: #eee;
}
body
{
height: 100%;
padding: 0;
margin: 0;
}
#printing-container
{
display: none;
}
@media print
{
#printing-container
{
display: block;
}
paper-cubes
{
display: none;
}
hr.page-start
{
page-break-before: always;
visibility: hidden;
}
}
.concarve
{
fill: var(--concarve-color);
}
.convex
{
fill: var(--convex-color);
}
.tab
{
stroke: black;
}
.void-room
{
stroke: black;
fill: white;
}
</style>
<paper-cubes></paper-cubes>
<div id="printing-container">Printing...</div>
</body>
</html>