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
| (function () { | |
| function define(object, properties) { | |
| for (var property in properties) !(property in object) && Object.defineProperty(object, property, { get: properties[property], enumerable: true }); | |
| } | |
| define(Element.prototype, { | |
| width: function () { | |
| return this.getBoundingClientRect().width; | |
| }, | |
| height: function () { |
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
| /** | |
| * (C)Leanest CSS spinner ever | |
| */ | |
| @keyframes spin { | |
| to { transform: rotate(1turn); } | |
| } | |
| .progress { | |
| position: relative; |
OlderNewer