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
.olho { | |
border: 1px solid #000; | |
width: 20px; | |
height: 20px; | |
border-radius: 50%; | |
position: relative; | |
float: left; | |
margin-right: 3px; | |
} |
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
/** | |
* Music Sheet | |
*/ | |
.sheet { | |
height: 150px; | |
background-image: linear-gradient(to bottom, black 2px, transparent 2px); | |
background-size: 100% 30px; | |
} |
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
/** | |
* Bússola | |
*/ | |
body { background: #ECECEC; } | |
.bussola { | |
position: relative; | |
width: 300px; | |
height: 300px; | |
background-color: #FFF; |
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
/** | |
* Bússola | |
*/ | |
body { background: #ECECEC; } | |
.bussola { | |
position: relative; | |
width: 300px; | |
height: 300px; | |
background-color: #FFF; |
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
/** | |
* Parallax Scrolling | |
*/ | |
body { margin: 0; } | |
.stage { | |
position: absolute; | |
width: 100%; | |
height: 100%; | |
background: #8888FF; | |
overflow: hidden; |
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
/** | |
* Loading | |
*/ |
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
/** | |
* Cone | |
*/ | |
body { | |
margin: 0; | |
background: #F5F5F5; | |
/*background: url(http://imasters.com.br/wp-content/uploads/2013/07/cone.jpg) no-repeat #F5F5F5;*/ | |
} |