vendor
9 years ago
admin.css
9 years ago
embedpress.css
9 years ago
font.css
9 years ago
index.html
9 years ago
preview.css
9 years ago
font.css
94 lines
| 1 | /** |
| 2 | * @package EmbedPress |
| 3 | * @author PressShack <help@pressshack.com> |
| 4 | * @copyright Copyright (C) 2017 Open Source Training, LLC. All rights reserved. |
| 5 | * @license GPLv2 or later |
| 6 | * @since 1.0 |
| 7 | */ |
| 8 | |
| 9 | @font-face { |
| 10 | font-family: 'EmbedPress'; |
| 11 | src: url('../fonts/embedpress.eot?80956116'); |
| 12 | src: url('../fonts/embedpress.eot?80956116#iefix') format('embedded-opentype'), |
| 13 | url('../fonts/embedpress.woff?80956116') format('woff'), |
| 14 | url('../fonts/embedpress.ttf?80956116') format('truetype'), |
| 15 | url('../fonts/embedpress.svg?80956116#embedpress') format('svg'); |
| 16 | font-weight: normal; |
| 17 | font-style: normal; |
| 18 | } |
| 19 | /* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */ |
| 20 | /* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */ |
| 21 | /* |
| 22 | @media screen and (-webkit-min-device-pixel-ratio:0) { |
| 23 | @font-face { |
| 24 | font-family: 'embedpress'; |
| 25 | src: url('../font/embedpress.svg?80956116#embedpress') format('svg'); |
| 26 | } |
| 27 | } |
| 28 | */ |
| 29 | |
| 30 | [class^="embedpress-icon-"]:before, [class*=" embedpress-icon-"]:before { |
| 31 | font-family: "EmbedPress"; |
| 32 | font-style: normal; |
| 33 | font-weight: normal; |
| 34 | speak: none; |
| 35 | |
| 36 | display: inline-block; |
| 37 | text-decoration: inherit; |
| 38 | width: 1em; |
| 39 | margin-right: .2em; |
| 40 | text-align: center; |
| 41 | /* opacity: .8; */ |
| 42 | |
| 43 | /* For safety - reset parent styles, that can break glyph codes*/ |
| 44 | font-variant: normal; |
| 45 | text-transform: none; |
| 46 | |
| 47 | /* fix buttons height, for twitter bootstrap */ |
| 48 | line-height: 1em; |
| 49 | |
| 50 | /* Animation center compensation - margins should be symmetric */ |
| 51 | /* remove if not needed */ |
| 52 | margin-left: .2em; |
| 53 | |
| 54 | /* you can be more comfortable with increased icons size */ |
| 55 | /* font-size: 120%; */ |
| 56 | |
| 57 | /* Font smoothing. That was taken from TWBS */ |
| 58 | -webkit-font-smoothing: antialiased; |
| 59 | -moz-osx-font-smoothing: grayscale; |
| 60 | |
| 61 | /* Uncomment for 3D effect */ |
| 62 | /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */ |
| 63 | } |
| 64 | |
| 65 | .embedpress-icon-pencil:before {content:'\0041';} |
| 66 | .embedpress-icon-gear:before{content:'\0042';} |
| 67 | .embedpress-icon-x:before{content:'\0043';} |
| 68 | |
| 69 | .embedpress-icon-reload { |
| 70 | -webkit-animation: embedpress-spin 2s infinite linear; |
| 71 | animation: embedpress-spin 2s infinite linear; |
| 72 | } |
| 73 | .embedpress-icon-reload:before{content:'\0044';} |
| 74 | |
| 75 | @-webkit-keyframes embedpress-spin { |
| 76 | 0% { |
| 77 | -webkit-transform: rotate(0deg); |
| 78 | transform: rotate(0deg); |
| 79 | } |
| 80 | 100% { |
| 81 | -webkit-transform: rotate(359deg); |
| 82 | transform: rotate(359deg); |
| 83 | } |
| 84 | } |
| 85 | @keyframes embedpress-spin { |
| 86 | 0% { |
| 87 | -webkit-transform: rotate(0deg); |
| 88 | transform: rotate(0deg); |
| 89 | } |
| 90 | 100% { |
| 91 | -webkit-transform: rotate(359deg); |
| 92 | transform: rotate(359deg); |
| 93 | } |
| 94 | } |