forked from tableless/exemplos
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Diego Eis
committed
May 6, 2011
1 parent
653ed3d
commit ee87826
Showing
41 changed files
with
8,221 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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' ); | ||
?> |
Oops, something went wrong.