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
/* | |
Right angle triangles | |
*/ | |
.right-angle-top-left{ | |
position: relative; | |
margin: 30px; | |
width: 0; | |
border-right: 100px solid transparent; | |
border-top: 100px solid red; | |
} |
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
/** | |
* css shapes :: triangle | |
*/ | |
.triangles{ | |
position: realative; | |
background: red; | |
display: block; | |
} | |
.triangles > span{ | |
position: relative; |
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
/** | |
* css shapes - oval | |
*/ | |
.oval{ | |
position: relative; | |
margin: 30px; | |
width: 200px; | |
height: 100px; | |
background-color: steelblue; |
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
/** | |
* css shapes - circle | |
*/ | |
.circle{ | |
position: relative; | |
margin: 30px; | |
width: 100px; | |
height: 100px; | |
background-color: steelblue; |
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
/** | |
* css shapes - square | |
*/ | |
.square{ | |
position: relative; | |
margin: 30px; | |
width: 100px; | |
height: 100px; | |
background-color: steelblue; |
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
/** | |
Love Flowers | |
@author Bhargav Vadher | |
**/ | |
.flowers{ | |
position: absolute; | |
width: 50px; | |
height:50px; |
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
/** | |
* Explaining CSS timing functions | |
**/ | |
.functions{ | |
position: relative; | |
width: 50%; | |
top: 50px; | |
background: #000; | |
padding: 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
/** | |
* Pure CSS3 Progress bars. No JavaScript or Image used. | |
* @author: Bhargav Vadher | |
* @date: 2012-10-31 the Halloween day :) | |
*/ | |
body{ | |
background-color: rgba(0,0,0,1); | |
font-family: sans-serif; | |
} |
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
/** | |
* Understanding values of background-size property | |
*/ | |
section > div > div{ | |
position: relative; | |
width: 170px; | |
height: 170px; | |
display: inline-block; | |
margin: 30px 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
/** | |
* Understanding values of background-size property | |
*/ | |
section > div > div{ | |
position: relative; | |
width: 170px; | |
height: 170px; | |
display: inline-block; | |
margin: 30px 10px; |