forked from adamschwartz/magic-of-css
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
86 lines (78 loc) · 4.15 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Magic of CSS — HubSpot — by Adam Schwartz</title>
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
<link rel="icon" href="http://static.hubspot.com/favicon.ico">
<link rel="stylesheet" type="text/css" href="css/base.css">
<link rel="stylesheet" type="text/css" href="css/logo.css">
<link rel="stylesheet" type="text/css" href="css/home.css">
<script type="text/javascript" src="//use.typekit.net/jbn8qxr.js"></script>
<script type="text/javascript">try{Typekit.load();}catch(e){}</script>
<script type="text/javascript" src="js/app.js"></script>
</head>
<body>
<div class="page">
<div class="page-inner">
<a class="logo" href="/magic-of-css"><h1>The Magic of CSS</h1><div class="the-magic-of">The Magic Of</div><div class="css-rainbow"><div class="css-letter css-rainbow-c"><div class="rainbow"><div class="bands"></div></div></div><div class="css-letter css-rainbow-s css-rainbow-s-1"><div class="top-half"><div class="rainbow"><div class="bands"></div></div></div><div class="bottom-half"><div class="rainbow"><div class="bands"></div></div></div></div><div class="css-letter css-rainbow-s css-rainbow-s-2"><div class="top-half"><div class="rainbow"><div class="bands"></div></div></div><div class="bottom-half"><div class="rainbow"><div class="bands"></div></div></div></div></div></a>
<div class="separator"></div>
<div class="potion">
<a href="chapters/preface">Preface</a>
</div>
<h2><span>Chapters</span></h2>
<div class="chapter">
<div class="number">1</div>
<a href="chapters/1-the-box">The Box</a>
</div>
<div class="chapter">
<div class="number">2</div>
<a href="chapters/2-layout">Layout</a>
</div>
<div class="chapter">
<div class="number">3</div>
<a href="chapters/3-tables">Tables</a>
</div>
<div class="chapter">
<div class="number">4</div>
<a href="chapters/4-color">Color</a>
</div>
<h2><span>Potions</span></h2>
<div class="potion">
<a href="potions/two-pane-app">Two Pane App</a>
</div>
<div class="potion">
<a href="potions/three-pane-app">Three Pane App</a>
</div>
<div class="potion">
<a href="potions/table-styling">Table Styling</a>
</div>
<div class="potion">
<a href="potions/overflow-ellipsis">Overflow Ellipsis</a>
</div>
<div class="potion">
<a href="potions/letter-spacing">Letter Spacing</a>
</div>
</div>
</div>
<!-- Start of Async HubSpot Analytics Code -->
<script type="text/javascript">
(function(d,s,i,r) {
if (d.getElementById(i)){return;}
var n=d.createElement(s),e=d.getElementsByTagName(s)[0];
n.id=i;n.src='//js.hubspot.com/analytics/'+(Math.ceil(new Date()/r)*r)+'/51294.js';
e.parentNode.insertBefore(n, e);
})(document,"script","hs-analytics",300000);
</script>
<!-- End of Async HubSpot Analytics Code -->
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-45159009-1', 'hubspot.com');
ga('send', 'pageview');
</script>
</body>
</html>