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
.ani-box-shadow-2{ | |
position: relative; | |
margin: 50px; | |
width: 200px; | |
height: 200px; | |
background-color: steelblue; | |
-webkit-animation: myAnimation 1s infinite alternate; | |
} | |
@-webkit-keyframes myAnimation{ |
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
.ani-box-shadow-3{ | |
position:relative; | |
margin: 50px; | |
height: 200px; | |
width:200px; | |
background-color: steelblue; | |
-webkit-animation: myAnimation 1s infinite alternate; | |
} | |
@-webkit-keyframes myAnimation{ |
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
.ani-box-shadow-4{ | |
position:relative; | |
margin: 50px; | |
height: 200px; | |
width:200px; | |
background-color: steelblue; | |
background-image: -webkit-radial-gradient(100% 100%, circle cover, black, transparent); | |
-webkit-animation: myAnimation 1s infinite alternate; | |
} |
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
.ani-border-width{ | |
position: relative; | |
margin: 50px; | |
width:200px; | |
height: 200px; | |
background-color: steelblue; | |
line-height: 200px; | |
text-align: center; | |
font-size: 28px; | |
display: block; |
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
/** | |
* transform::skew effect | |
**/ | |
.ani-border-width{ | |
position: relative; | |
margin: 50px; | |
width:200px; | |
height: 200px; | |
background-color: steelblue; | |
line-height: 200px; |
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
/** | |
* box shadow demo | |
**/ | |
.demo{ | |
position: relative; | |
margin: 50px; | |
width:200px; | |
height: 200px; | |
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
/** | |
* box shadow demo | |
**/ | |
.demo{ | |
position: relative; | |
margin: 50px; | |
width:200px; | |
height: 200px; | |
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
/** | |
* box shadow demo 2 (door close effect) | |
**/ | |
.demo{ | |
position: relative; | |
margin: 50px; | |
width:200px; | |
height: 200px; | |
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
/** | |
* transform: translate effect to mimic 'inccorect input or access denied' | |
**/ | |
.demo{ | |
position: relative; | |
margin: 50px 100px; | |
width:400px; | |
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
/** | |
* Article from MDN explaning css flex | |
**/ | |
body { | |
font: 24px Helvetica; | |
background: #999999; | |
} | |
#main { | |
min-height: 800px; |
OlderNewer