This file contains hidden or 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
| /* Commom css */ | |
| .clear-both{clear: both;} | |
| .clear-both-before:before{clear: both;} | |
| .clear-both-after:after{clear: both;} | |
| .display-none{display:none;} | |
| .display-block{display: block;} | |
| .display-inline{display: inline;} | |
| .float-left{float: left;} | |
| .float-right{float: right;} | |
| .float-none{float: none;} |
This file contains hidden or 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
| <style> | |
| .line { | |
| float: left; | |
| background: #C2DFFF; | |
| width: 2px; | |
| height: 200px; | |
| margin: 0px 0px 0px 10px; | |
| } | |
| .point { | |
| width: 20px; |
This file contains hidden or 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
| <style> | |
| body { | |
| margin:50px 0px; padding:0px; | |
| text-align:center; | |
| } | |
| .content { | |
| width:500px; | |
| margin:0px auto; | |
| text-align:left; |
This file contains hidden or 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
| <style> | |
| body{ | |
| background: #E9F1FC; | |
| } | |
| .line { | |
| float: left; | |
| background: #C3CADA; | |
| width: 2px; | |
| height: 200px; | |
| margin: 0px 0px 0px 10px; |
This file contains hidden or 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
| /* Remove zoom e fixa conteudo na viewport: */ | |
| <meta name="viewport" content="width=device-width, minimum-scale=1.0, maximum-scale=1.0" /> */ | |
| /* Media Queries V1.0 */ | |
| @media only screen and (max-width: 1460px) { } | |
| @media only screen and (max-width: 1279px) { } | |
| @media only screen and (max-width: 1024px) { } | |
| @media only screen and (max-width: 800px) { } | |
| @media only screen and (max-width: 500px) { } | |
| @media only screen and (max-width: 500px) and (orientation:landscape) { } |
This file contains hidden or 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
| //DEPENDE DE jQuery, INSERIR ANTES | |
| var width = $(this).width(); | |
| var height = $(this).height(); | |
| alert("Largura: " +width +"px X Altura:" +height +"px"); |
This file contains hidden or 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
| <base href="URLBASE" /><!-- Define a URL base --> | |
| <!-- HTTP 1.1. Desativa o cache do navegador --> | |
| <meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" /> | |
| <!-- HTTP 1.0. --> | |
| <meta http-equiv="Pragma" content="no-cache" /> | |
| <!-- Proxies. --> | |
| <meta http-equiv="Expires" content="0" /> |