| @@ -1,80 +1,50 @@ | ||
| 1 | -@charset "UTF-8"; | |
| 2 | -@font-face { | |
| 3 | - font-family: "wowpicon"; | |
| 4 | - src: url("../font/wowpicon.eot"); | |
| 5 | - src: url("../font/wowpicon.eot?lrxh5a#iefix") format("embedded-opentype"), url("../font/wowpicon.woff2?lrxh5a") format("woff2"), url("../font/wowpicon.woff?lrxh5a") format("woff"), url("../font/wowpicon.ttf?lrxh5a") format("truetype"), url("../font/wowpicon.svg?lrxh5a#wowpicon") format("svg"); | |
| 6 | - font-style: normal; | |
| 7 | - font-weight: 400; | |
| 8 | -} | |
| 9 | -.wowp-icon { | |
| 10 | - display: inline-block; | |
| 11 | - font-family: "wowpicon" !important; | |
| 12 | - font-style: normal !important; | |
| 13 | - font-weight: normal !important; | |
| 14 | - font-variant: normal !important; | |
| 15 | - text-transform: none !important; | |
| 16 | - speak: none; | |
| 17 | - line-height: 1; | |
| 18 | - vertical-align: -0.125em; | |
| 19 | - text-rendering: auto; | |
| 20 | - -webkit-font-smoothing: antialiased; | |
| 21 | - -moz-osx-font-smoothing: grayscale; | |
| 22 | -} | |
| 23 | - | |
| 24 | -.wowp-icon-brackets::before { | |
| 25 | - content: ""; | |
| 26 | -} | |
| 27 | - | |
| 28 | -.wowp-icon-browser::before { | |
| 29 | - content: ""; | |
| 30 | -} | |
| 31 | - | |
| 32 | -.wowp-icon-cogs::before { | |
| 33 | - content: ""; | |
| 34 | -} | |
| 35 | - | |
| 36 | -.wowp-icon-conditions::before { | |
| 37 | - content: ""; | |
| 38 | -} | |
| 39 | - | |
| 40 | -.wowp-icon-css3::before { | |
| 41 | - content: ""; | |
| 42 | -} | |
| 43 | - | |
| 44 | -.wowp-icon-devices::before { | |
| 45 | - content: ""; | |
| 46 | -} | |
| 47 | - | |
| 48 | -.wowp-icon-html5::before { | |
| 49 | - content: ""; | |
| 50 | -} | |
| 51 | - | |
| 52 | -.wowp-icon-js::before { | |
| 53 | - content: ""; | |
| 54 | -} | |
| 55 | - | |
| 56 | -.wowp-icon-language::before { | |
| 57 | - content: ""; | |
| 58 | -} | |
| 59 | - | |
| 60 | -.wowp-icon-page::before { | |
| 61 | - content: ""; | |
| 62 | -} | |
| 63 | - | |
| 64 | -.wowp-icon-play::before { | |
| 65 | - content: ""; | |
| 66 | -} | |
| 67 | - | |
| 68 | -.wowp-icon-plus::before { | |
| 69 | - content: ""; | |
| 70 | -} | |
| 71 | - | |
| 72 | -.wowp-icon-schedule::before { | |
| 73 | - content: ""; | |
| 74 | -} | |
| 75 | - | |
| 76 | -.wowp-icon-users-cog::before { | |
| 77 | - content: ""; | |
| 78 | -} | |
| 79 | - | |
| 80 | -/*# sourceMappingURL=style.css.map */ | |
| 1 | +.CodeMirror { | |
| 2 | + border: 1px solid #ccc; | |
| 3 | +} | |
| 4 | + | |
| 5 | +.wow-plugin .submit-bottom { | |
| 6 | + margin: 25px 0px; | |
| 7 | + display: block; | |
| 8 | + width:400px; | |
| 9 | +} | |
| 10 | +.wow-plugin .add-item { | |
| 11 | + width: 128px; | |
| 12 | + height: 32px; | |
| 13 | + background: #1f9ef8; | |
| 14 | + line-height: 32px; | |
| 15 | + text-align: center; | |
| 16 | + color: #fff; | |
| 17 | + text-decoration: none; | |
| 18 | + font-size: 14px; | |
| 19 | + border: 0px; | |
| 20 | + cursor: pointer; | |
| 21 | + margin: 0px; | |
| 22 | + padding: 0px; | |
| 23 | + transition-timing-function: ease-in-out; | |
| 24 | + transition-duration: .05s; | |
| 25 | + transition-property: all; | |
| 26 | +} | |
| 27 | +.wow-plugin .additem:hover, .wow-plugin .additem:active { | |
| 28 | + background: #128be0; | |
| 29 | +} | |
| 30 | +.wow-plugin .delete-item { | |
| 31 | + width: 128px; | |
| 32 | + height: 32px; | |
| 33 | + background: #797979; | |
| 34 | + line-height: 32px; | |
| 35 | + text-align: center; | |
| 36 | + color: #fff; | |
| 37 | + text-decoration: none; | |
| 38 | + font-size: 14px; | |
| 39 | + border: 0px; | |
| 40 | + cursor: pointer; | |
| 41 | + margin: 0px; | |
| 42 | + padding: 0px; | |
| 43 | + transition-timing-function: ease-in-out; | |
| 44 | + transition-duration: .05s; | |
| 45 | + transition-property: all; | |
| 46 | + margin-left: 2px; | |
| 47 | +} | |
| 48 | +.wow-plugin .delete-item:hover, .wow-plugin .delete-item:active { | |
| 49 | + background: #656565; | |
| 50 | +} | |