-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path24.html
41 lines (40 loc) · 1.82 KB
/
24.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Create your own bootstrap</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/8.8.0/styles/tomorrow-night.min.css">
<link rel="stylesheet" href="css/components.min.css">
<link rel="stylesheet" href="css/preso.css">
</head>
<body>
<header class="k-header">
<div class="k-wrapper">
<h1><a class="k-headline" href="1.html">Encapsulation</a></h1>
</div>
</header>
<div class="k-content">
<div class="full-height k-center">
<header>
<h2 class="k-display k-strike">Firefox OS:</h2>
<h3 class="k-display color-significant">Huge selectors</h3>
</header>
<pre>
<code class="css">
section[role="region"].skin-organic > header:first-child > a:not([aria-disabled="true"]):active:after,
.skin-organic section[role="region"] > header:first-child > a:not([aria-disabled="true"]):active:after,
section[role="region"].skin-organic > header:first-child > button:not(:disabled):active:after,
.skin-organic section[role="region"] > header:first-child > button:not(:disabled):active:after,
section[role="region"].skin-organic > header:first-child > a:not([aria-disabled="true"]):hover:after,
.skin-organic section[role="region"] > header:first-child > a:not([aria-disabled="true"]):hover:after,
section[role="region"].skin-organic > header:first-child > button:not(:disabled):hover:after,
.skin-organic section[role="region"] > header:first-child > button:not(:disabled):hover:after, { ... }
</code>
</pre>
</div>
</div>
<script src="js/scripts.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/8.8.0/highlight.min.js"></script>
<script>hljs.initHighlightingOnLoad();</script>
</body>
</html>