-
Notifications
You must be signed in to change notification settings - Fork 287
/
index.html
51 lines (50 loc) · 1.39 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Shower</title>
<style>
html, body {
height: 100%;
}
body {
margin: 0;
}
</style>
</head>
<body>
<shower-deck>
<template shadowroot="open">
<link rel="stylesheet" href="shower/deck.css">
<shower-slide>
<template shadowroot="open">
<link rel="stylesheet" href="shower/slide.css">
<h2>Slide One</h2>
</template>
</shower-slide>
<shower-slide>
<template shadowroot="open">
<link rel="stylesheet" href="shower/slide.css">
<h2>Slide Two</h2>
<style>
h2 {
color: tomato;
}
</style>
</template>
</shower-slide>
<shower-slide>
<template shadowroot="open">
<link rel="stylesheet" href="shower/slide.css">
<h2>Slide Three</h2>
<style>
h2 {
color: limegreen;
}
</style>
</template>
</shower-slide>
</template>
</shower-deck>
</body>
</html>