-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathindex.html
68 lines (60 loc) · 1.81 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Building Blazin Fast Apps</title>
<meta name="description" content="Building Blazin Fast Apps Challenges" />
<meta name="author" content="LiveLoveApp, LLC" />
</head>
<body>
<h1>Building Blazin Fast Apps</h1>
<h2>Using the Chrome Devtools</h2>
<nav>
<a href="/challenges/01-lighthouse/index.html"> 01 Lighthouse </a>
<a href="/challenges/02-rendering/index.html"> 02 Rendering </a>
<a href="/challenges/03-layers/index.html"> 03 Layers </a>
<a href="/challenges/04-instability-api/index.html">
04 Instability API
</a>
<a href="/challenges/05-performance-monitor/index.html">
05 Performance Monitor
</a>
<a href="/challenges/06-performance/index.html"> 06 Performance </a>
<a href="/challenges/07-performance-api/index.html">
07 Performance API
</a>
<a href="/challenges/08-memory/index.html"> 08 Memory </a>
<a href="/challenges/09-coverage/index.html"> 09 Coverage </a>
</nav>
<script type="module" src="/common.js"></script>
<style>
h1 {
font-size: 24px;
margin: 24px 24px 8px;
font-weight: 700;
}
h2 {
font-size: 16px;
font-weight: 100;
margin: 0 24px 24px;
}
nav {
display: flex;
flex-direction: column;
}
nav a {
margin: 8px 0;
padding: 16px 24px;
width: 240px;
background-color: var(--color-yellow);
color: var(--color-yellow-contrast);
text-decoration: none;
transition: padding-left 180ms;
}
nav a:hover {
padding-left: 32px;
}
</style>
</body>
</html>