-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (36 loc) · 1.45 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>CSS scoping Demos</title>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes">
<style>
/*Page Styles*/
html {font-size: 18px; font-family: Arial; line-height: 1.6;}
body { margin: 0 auto; width: 1000px; }
h2, h4 { border-bottom: 1px solid #AAAAAA; }
.demo { margin-left: 50px; }
.page-content { padding: 10px; border: 1px solid #282c34; background-color: #00B7FF; width: 125px; margin: 10px 0 10px 50px;}
code { color: blue; }
html { color: #3c4043; background-color: #eeeeee;}
</style>
</head>
<body>
<div class="title">
<h2>CSS Scoping Demos </h2>
<section>
<p>
The following set of demos are built to show case the current CSS scoping capabilities of each platform. <br/>
They outline what CSS scoping features are missing.
<ol>
<li><a href="demos/html/accordion-demo.html">Plain HTML & CSS</a></li>
<li><a href="demos/react-w-css-module/build/index.html">React with CSS Module</a></li>
<li><a href="demos/vue/dist/index.html">Vue with Scoped Styles</a></li>
<li><a href="demos/web-component/accordion-demo.html">Web Components</a></li>
</ol>
</p>
</section>
</div>
</body>
</html>