style-insert.css
183 lines
| 1 | body{ |
| 2 | font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif; |
| 3 | color: #444; |
| 4 | padding: 10px; |
| 5 | background: #f1f1f1; |
| 6 | } |
| 7 | h2{ |
| 8 | font-size: 23px; |
| 9 | font-weight: normal; |
| 10 | } |
| 11 | h4{ |
| 12 | margin: 0 0 20px 0; |
| 13 | } |
| 14 | hr{ |
| 15 | border-width: 0px; |
| 16 | margin: 15px 0; |
| 17 | border-bottom: 1px solid #DFDFDF; |
| 18 | } |
| 19 | .sc_wrap{ |
| 20 | border: 1px solid #DFDFDF; |
| 21 | box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); |
| 22 | } |
| 23 | .sc_head{ |
| 24 | background: url(../images/shortcoder.png) no-repeat left 2px; |
| 25 | padding-left: 40px; |
| 26 | background-size: 32px; |
| 27 | } |
| 28 | .sc_shortcode{ |
| 29 | border-bottom: 1px solid #CCC; |
| 30 | padding: 0px; |
| 31 | background: #FFF; |
| 32 | } |
| 33 | .sc_shortcode:last-child{ |
| 34 | border:0; |
| 35 | } |
| 36 | .sc_shortcode_name{ |
| 37 | cursor: pointer; |
| 38 | padding: 10px 10px 10px 35px; |
| 39 | position: relative; |
| 40 | } |
| 41 | .sc_shortcode_name:hover{ |
| 42 | background: #fffeea; |
| 43 | } |
| 44 | .sc_params{ |
| 45 | border: 1px solid #DFDFDF; |
| 46 | background: #F9F9F9; |
| 47 | margin: 0 -1px -1px; |
| 48 | padding: 20px; |
| 49 | display: none; |
| 50 | box-shadow: inset 0 2px 6px -5px; |
| 51 | } |
| 52 | .button{ |
| 53 | display: inline-block; |
| 54 | text-decoration: none; |
| 55 | font-size: 13px; |
| 56 | line-height: 26px; |
| 57 | height: 28px; |
| 58 | margin: 0; |
| 59 | padding: 0 10px 1px; |
| 60 | cursor: pointer; |
| 61 | border-width: 1px; |
| 62 | border-style: solid; |
| 63 | -webkit-appearance: none; |
| 64 | -webkit-border-radius: 3px; |
| 65 | border-radius: 3px; |
| 66 | white-space: nowrap; |
| 67 | -webkit-box-sizing: border-box; |
| 68 | -moz-box-sizing: border-box; |
| 69 | box-sizing: border-box; |
| 70 | } |
| 71 | .button.button-primary{ |
| 72 | background: #0085ba; |
| 73 | border-color: #0073aa #006799 #006799; |
| 74 | -webkit-box-shadow: 0 1px 0 #006799; |
| 75 | box-shadow: 0 1px 0 #006799; |
| 76 | color: #fff; |
| 77 | text-decoration: none; |
| 78 | text-shadow: 0 -1px 1px #006799, 1px 0 1px #006799, 0 1px 1px #006799, -1px 0 1px #006799; |
| 79 | } |
| 80 | |
| 81 | .sc_insert:hover{ |
| 82 | opacity: 0.8; |
| 83 | } |
| 84 | .sc_wrap input[type=text]{ |
| 85 | padding: 5px; |
| 86 | border: 1px solid #CCC; |
| 87 | width: 120px; |
| 88 | margin: 0px 25px 10px 0px; |
| 89 | } |
| 90 | .sc_toggle{ |
| 91 | background: url(../images/toggle-arrow.png) no-repeat; |
| 92 | width: 16px; |
| 93 | height: 16px; |
| 94 | position: absolute; |
| 95 | left: 15px; |
| 96 | top: 50%; |
| 97 | margin-top: -6px; |
| 98 | opacity: 0.4; |
| 99 | } |
| 100 | |
| 101 | .sc_options{ |
| 102 | position: absolute; |
| 103 | right: 10px; |
| 104 | top: 7px; |
| 105 | } |
| 106 | .sc_options .button{ |
| 107 | background: #fff; |
| 108 | border: 1px solid transparent; |
| 109 | color: #888; |
| 110 | font-size: 11px; |
| 111 | vertical-align: middle; |
| 112 | margin-left: -1px; |
| 113 | border-radius: 0; |
| 114 | } |
| 115 | .sc_options .button:hover{ |
| 116 | box-shadow: 0 1px 4px -3px #333; |
| 117 | color: #333; |
| 118 | } |
| 119 | .sc_shortcode:hover .sc_options .button{ |
| 120 | border-color: #607D8B; |
| 121 | } |
| 122 | |
| 123 | .disabled_text{ |
| 124 | font-size: 10px; |
| 125 | background: #ffdfdd; |
| 126 | border-radius: 10px; |
| 127 | padding: 2px 10px; |
| 128 | margin: 0 0 0 10px; |
| 129 | color: #F44336; |
| 130 | } |
| 131 | |
| 132 | .sc_menu{ |
| 133 | float: right; |
| 134 | } |
| 135 | .sc_menu .button{ |
| 136 | border: 1px solid #cecece; |
| 137 | color: #333; |
| 138 | opacity: 0.8; |
| 139 | } |
| 140 | .sc_menu .button:hover{ |
| 141 | opacity: 1; |
| 142 | } |
| 143 | |
| 144 | .search_box{ |
| 145 | width: 150px; |
| 146 | cursor: auto; |
| 147 | } |
| 148 | |
| 149 | .coffee_box{ |
| 150 | padding: 10px; |
| 151 | border: 1px solid #4CAF50; |
| 152 | padding-left: 20%; |
| 153 | background: url(../images/coffee.svg) no-repeat; |
| 154 | border-radius: 3px; |
| 155 | background-position: 30px center; |
| 156 | margin: 30px 0 15px 0; |
| 157 | background-size: 84px; |
| 158 | } |
| 159 | .coffee_box .coffee_amt { |
| 160 | width: 120px; |
| 161 | padding: 5px; |
| 162 | height: auto; |
| 163 | font-size: 1.5em; |
| 164 | } |
| 165 | .coffee_amt_wrap{ |
| 166 | float: right; |
| 167 | margin: 0 30px; |
| 168 | } |
| 169 | .coffee_box h3{ |
| 170 | margin: 5px 0; |
| 171 | font-weight: normal; |
| 172 | } |
| 173 | .coffee_box p{ |
| 174 | font-size: 13px; |
| 175 | } |
| 176 | |
| 177 | @media screen and (max-width:750px){ |
| 178 | .sc_menu { |
| 179 | display: block; |
| 180 | margin: 10px 0 0 -40px; |
| 181 | float: none; |
| 182 | } |
| 183 | } |