Skip to content

Commit

Permalink
arquivos.
Browse files Browse the repository at this point in the history
  • Loading branch information
Diego Eis committed May 6, 2011
1 parent 653ed3d commit ee87826
Show file tree
Hide file tree
Showing 41 changed files with 8,221 additions and 1 deletion.
68 changes: 68 additions & 0 deletions aba-target.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
<!DOCTYPE html>

<html lang="pt-br">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>

<title>untitled</title>
<style type="text/css" media="screen">
* {margin:0; padding:0;}
body {
font:13px verdana, arial, tahoma;
}

ul { margin:20px 20px 0; list-style:none;}
li {float:left;}
.itens a {
float:left;
border:1px solid black;
background:gray;
padding:5px 15px;
color:#FFF;
text-decoration:none;
}

.itens a:focus {background:red;}

.aba { margin:0 20px;width:400px; clear:both; position:relative;}
.aba div {
background:white;
border:1px solid black;
padding:10px;
width:100%;
display:none;
position:absolute;
}


.aba div:first-child {
display:block;
}
.aba div:target {
display:block;
}
</style>

</head>

<body>

<ul class="itens">
<li><a href="#aba1">Aba 1</a></li>
<li><a href="#aba2">Aba 2</a></li>
<li><a href="#aba3">Aba 3</a></li>
</ul>
<div class="aba">
<div id="aba1">
Primeira Aba
</div>
<div id="aba2">
Primeira Aba 2
</div>
<div id="aba3">
Primeira Aba 3
</div>
</div>

</body>
</html>
27 changes: 27 additions & 0 deletions border-image/border-image.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
<!DOCTYPE html>

<html lang="pt-br">
<head>
<title></title>
<meta charset="utf-8">
<style>
a {
display:block;
width:100px;
text-align:center;
font:bold 13px verdana, arial, tahoma, sans-serif;
text-decoration:none;
color:black;

border-width:10px;
-webkit-border-image: url(button.png) 0 stretch;
-moz-border-image: url(button.png) 10 stretch;
}
</style>
</head>
<body>

<a href="#">Botão</a>

</body>
</html>
Binary file added border-image/border.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added border-image/botao.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added border-image/button.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added border-image/imgexemplo.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
77 changes: 77 additions & 0 deletions css3-pie/PIE.htc

Large diffs are not rendered by default.

70 changes: 70 additions & 0 deletions css3-pie/PIE.js

Large diffs are not rendered by default.

19 changes: 19 additions & 0 deletions css3-pie/PIE.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<?php
/*
This file is a wrapper, for use in PHP environments, which serves PIE.htc using the
correct content-type, so that IE will recognize it as a behavior. Simply specify the
behavior property to fetch this .php file instead of the .htc directly:
.myElement {
[ ...css3 properties... ]
behavior: url(PIE.php);
}
This is only necessary when the web server is not configured to serve .htc files with
the text/x-component content-type, and cannot easily be configured to do so (as is the
case with some shared hosting providers).
*/

header( 'Content-type: text/x-component' );
include( 'PIE.htc' );
?>
Loading

0 comments on commit ee87826

Please sign in to comment.