menu-icon.css
6 years ago
style-insert.css
6 years ago
style-tools.css
6 years ago
style.css
6 years ago
style-insert.css
219 lines
| 1 | *{ |
| 2 | box-sizing: border-box; |
| 3 | } |
| 4 | body{ |
| 5 | color: #444; |
| 6 | font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif; |
| 7 | font-size: 13px; |
| 8 | line-height: 1.4em; |
| 9 | padding: 20px; |
| 10 | margin: 0; |
| 11 | background: #f7f7f7; |
| 12 | } |
| 13 | p, h3, h4 { |
| 14 | margin: 0; |
| 15 | } |
| 16 | input[type="text"], input[type="search"]{ |
| 17 | padding: 5px; |
| 18 | border: 1px solid #CCC; |
| 19 | } |
| 20 | a { |
| 21 | color: #0073aa; |
| 22 | } |
| 23 | .button{ |
| 24 | display: inline-block; |
| 25 | text-decoration: none; |
| 26 | font-size: 13px; |
| 27 | line-height: 26px; |
| 28 | height: 28px; |
| 29 | margin: 0; |
| 30 | padding: 0 10px 1px; |
| 31 | cursor: pointer; |
| 32 | border: 1px solid; |
| 33 | border-radius: 3px; |
| 34 | white-space: nowrap; |
| 35 | box-sizing: border-box; |
| 36 | color: #555; |
| 37 | border-color: #ccc; |
| 38 | background: #f7f7f7; |
| 39 | box-shadow: 0 1px 0 #ccc; |
| 40 | vertical-align: top |
| 41 | } |
| 42 | .button-primary { |
| 43 | background: #0085ba; |
| 44 | border-color: #0073aa #006799 #006799; |
| 45 | box-shadow: 0 1px 0 #006799; |
| 46 | color: #fff; |
| 47 | text-decoration: none; |
| 48 | text-shadow: 0 -1px 1px #006799, 1px 0 1px #006799, 0 1px 1px #006799, -1px 0 1px #006799; |
| 49 | } |
| 50 | p .button { |
| 51 | vertical-align: baseline |
| 52 | } |
| 53 | .button:focus, .button:hover { |
| 54 | background: #fafafa; |
| 55 | border-color: #999; |
| 56 | color: #23282d |
| 57 | } |
| 58 | .button:focus { |
| 59 | border-color: #5b9dd9; |
| 60 | box-shadow: 0 0 3px rgba(0,115,170,.8) |
| 61 | } |
| 62 | .button:active { |
| 63 | background: #eee; |
| 64 | border-color: #999; |
| 65 | box-shadow: inset 0 2px 5px -3px rgba(0,0,0,.5); |
| 66 | transform: translateY(1px) |
| 67 | } |
| 68 | .button-primary:hover, .button-primary:focus { |
| 69 | background: #008ec2; |
| 70 | border-color: #006799; |
| 71 | color: #fff; |
| 72 | } |
| 73 | |
| 74 | .sc_menu { |
| 75 | margin: 0 0 20px 0; |
| 76 | } |
| 77 | |
| 78 | .sc_list { |
| 79 | background: #fff; |
| 80 | box-shadow: 0 1px 3px 0px rgba(0, 0, 0, 0.2); |
| 81 | } |
| 82 | .sc_wrap { |
| 83 | border-bottom: 1px solid #eee; |
| 84 | overflow: hidden; |
| 85 | } |
| 86 | .sc_wrap:last-child{ |
| 87 | border-bottom: none; |
| 88 | } |
| 89 | .sc_wrap:hover .sc_tools{ |
| 90 | display: block; |
| 91 | } |
| 92 | .sc_wrap.open .sc_head img{ |
| 93 | transform: rotate(180deg); |
| 94 | } |
| 95 | |
| 96 | .sc_options{ |
| 97 | padding: 15px 15px 10px 15px; |
| 98 | background: #fcfcfc; |
| 99 | display: none; |
| 100 | } |
| 101 | .sc_options > *{ |
| 102 | margin-bottom: 20px; |
| 103 | } |
| 104 | .sc_options > *:last-child{ |
| 105 | margin-bottom: 0; |
| 106 | } |
| 107 | |
| 108 | .sc_params_wrap { |
| 109 | display: flex; |
| 110 | flex-wrap: wrap; |
| 111 | } |
| 112 | |
| 113 | .sc_params_wrap label { |
| 114 | flex-basis: 33%; |
| 115 | padding: 0 10px 10px 0; |
| 116 | } |
| 117 | |
| 118 | .sc_params_wrap label input { |
| 119 | display: block; |
| 120 | width: 100%; |
| 121 | margin: 10px 25px 0 0px; |
| 122 | } |
| 123 | |
| 124 | .sc_head { |
| 125 | padding: 15px; |
| 126 | cursor: pointer; |
| 127 | position: relative; |
| 128 | box-shadow: 0 1px 5px -3px rgba(0, 0, 0, 0.5); |
| 129 | } |
| 130 | .sc_head:hover { |
| 131 | background: lightyellow; |
| 132 | } |
| 133 | .sc_head h3{ |
| 134 | display: inline-block; |
| 135 | } |
| 136 | .sc_head img{ |
| 137 | vertical-align: middle; |
| 138 | margin-right: 10px; |
| 139 | transition: transform 0.8s; |
| 140 | } |
| 141 | .sc_tools{ |
| 142 | position: absolute; |
| 143 | top: 10px; |
| 144 | right: 10px; |
| 145 | display: none; |
| 146 | } |
| 147 | .sc_tools .button{ |
| 148 | margin-left: 10px; |
| 149 | } |
| 150 | |
| 151 | .sc_foot { |
| 152 | padding: 0 0 10px 0; |
| 153 | } |
| 154 | .sc_foot:after{ |
| 155 | content: ''; |
| 156 | clear: both; |
| 157 | display: block; |
| 158 | } |
| 159 | .sc_foot .sc_insert{ |
| 160 | float: right; |
| 161 | } |
| 162 | |
| 163 | .sc_note{ |
| 164 | padding: 15px; |
| 165 | text-align: center; |
| 166 | } |
| 167 | .sc_search_none{ |
| 168 | display: none; |
| 169 | } |
| 170 | |
| 171 | /** Coffee **/ |
| 172 | .cfe_box{ |
| 173 | background: #fff; |
| 174 | padding: 15px; |
| 175 | box-shadow: 0 1px 3px 0px rgba(0, 0, 0, 0.2); |
| 176 | margin-top: 25px; |
| 177 | display: flex; |
| 178 | border-top: 3px solid #795548; |
| 179 | } |
| 180 | .cfe_text{ |
| 181 | display: flex; |
| 182 | width: 100%; |
| 183 | } |
| 184 | .cfe_text img{ |
| 185 | width: 64px; |
| 186 | margin-right: 15px; |
| 187 | } |
| 188 | .cfe_text h2{ |
| 189 | font-weight: normal; |
| 190 | font-size: 21px; |
| 191 | margin: 10px 0 15px 0; |
| 192 | } |
| 193 | .cfe_form{ |
| 194 | display: flex; |
| 195 | width: 250px; |
| 196 | height: 32px; |
| 197 | margin-top: 18px; |
| 198 | } |
| 199 | .cfe_amt{ |
| 200 | font-size: 18px; |
| 201 | padding: 5px; |
| 202 | margin-right: 10px; |
| 203 | border-radius: 3px; |
| 204 | } |
| 205 | .cfe_btn{ |
| 206 | text-align: center; |
| 207 | } |
| 208 | |
| 209 | /** Footer **/ |
| 210 | .footer_thanks { |
| 211 | margin: 20px 0 0 0; |
| 212 | font-style: italic; |
| 213 | } |
| 214 | .footer_thanks a{ |
| 215 | text-decoration: none; |
| 216 | } |
| 217 | .footer_thanks a:hover{ |
| 218 | text-decoration: underline; |
| 219 | } |