-
Notifications
You must be signed in to change notification settings - Fork 386
/
index.html
66 lines (57 loc) · 2.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
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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8" />
<title>Alguns exemplos de CSS3, HTML e etc</title>
<style>
body {
background:#EFEFEF;
font-family:verdana;
}
a {
font-size:12px;
color:#666;
text-decoration:none;
}
a:hover {color:#333; text-decoration:underline;}
</style>
</head>
<body>
<h1>Github com exemplos do tableless.com.br</h1>
<p>Para ver nossos exemplos, basta <a href="https://github.com/tableless/">visitar nosso github oficial</a> e se divertir.</p>
<hr>
<p>Quando o float morrer:</p>
<ul>
<li><a href="http://tableless.github.com/exemplos/flexbox.html">Recomendação Flexbox</a></li>
<li><a href="http://tableless.github.com/exemplos/template-layout-css/index.html">CSS Template Layout</a></li>
</ul>
<hr>
<p>CSS 3</p>
<ul>
<li><a href="http://tableless.github.com/exemplos/css3d/index.html">CSS 3D</a></li>
<li><a href="http://tableless.github.com/exemplos/css3d/cardflip/cardflip.html">Exemplo de CardFlip</a></li>
<li><a href="http://tableless.github.com/exemplos/csstransforms/index.html">Exemplo de CSS Transforms</a></li>
<li><a href="http://tableless.github.com/exemplos/multiple-background/index.html">Múltiplos backgrounds em um arquivo</a></li>
<li><a href="http://tableless.github.com/exemplos/rgba/index.html">RGBA</a></li>
<li><a href="http://tableless.github.com/exemplos/css3-shadow.html">CSS Shadow</a></li>
<li><a href="http://tableless.github.com/exemplos/background-clip/index.html">Background Clip</a></li>
<li><a href="http://tableless.github.com/exemplos/border-image/index.html">Border Image</a></li>
<li><a href="http://tableless.github.com/exemplos/mathml.html">MathML</a></li>
<li><a href="http://tableless.github.com/exemplos/lightboxcss/index.html">Lightbox com CSS</a></li>
</ul>
<hr>
<p>Parallax</p>
<ul><li><a href="http://tableless.github.com/exemplos/parallax/parallax.html">Efeito simples de parallax</a></li></ul>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-335027-1']);
_gaq.push(['_trackPageview']);
//_gaq.push(['_trackSocial', network, socialAction, opt_target, opt_pagePath]);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</body>
</html>