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) { } |