Created
October 21, 2017 09:21
-
-
Save alexeiidonetskiy/aa4b899acb3985f322e36a4bfce967ec to your computer and use it in GitHub Desktop.
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
| .declaration-order { | |
| /* Позиционирование */ | |
| position: absolute; | |
| top: 0; | |
| right: 0; | |
| bottom: 0; | |
| left: 0; | |
| z-index: 100; | |
| /* Блочная модель */ | |
| display: block; | |
| float: right; | |
| width: 100px; | |
| height: 100px; | |
| margin: 10px; | |
| padding: 10px; | |
| /* Типографика */ | |
| font: normal 13px/1.5 "Arial", sans-serif; | |
| font-style: normal; | |
| font-size: 13px; | |
| line-height: 1.5; | |
| font-family: "Arial", sans-serif; | |
| text-align: center; | |
| color: #333333; | |
| /* Оформление */ | |
| background-color: #f5f5f5; | |
| border: 1px solid #e5e5e5; | |
| border-radius: 3px; | |
| opacity: 1; | |
| /* Анимация */ | |
| transition: color 1s; | |
| /* Разное */ | |
| will-change: auto; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment