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
| /* | |
| Quick fade on target to attract user attention | |
| http://snook.ca/archives/html_and_css/yellow-fade-technique-css-animations | |
| */ | |
| :target { | |
| -webkit-animation: target-fade 3s 1; | |
| -moz-animation: target-fade 3s 1; | |
| } | |
| @-webkit-keyframes target-fade { | |
| 0% { background-color: rgba(255,255,0,1); } |
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
| <!-- Summary is deprecated --> | |
| <div class="table-responsive"> | |
| <table id="tableid" aria-describedby="captionid"> | |
| <caption id="captionid" role="alert" aria-live="polite">[Data] sorted by [column header]</caption> | |
| <colgroup> | |
| <col /> | |
| <col /> | |
| </colgroup> | |
| <col /> | |
| <col /> |
NewerOlder