Commit 2deb527b6fb86fd44bb249f156e812c971d81d48
1 parent
1622f25d
qwerty
Showing
3 changed files
with
242 additions
and
1 deletions
Show diff stats
app/assets/AppAsset.php
| @@ -19,7 +19,7 @@ class AppAsset extends AssetBundle | @@ -19,7 +19,7 @@ class AppAsset extends AssetBundle | ||
| 19 | public $baseUrl = '@web'; | 19 | public $baseUrl = '@web'; |
| 20 | public $css = [ | 20 | public $css = [ |
| 21 | 'css/style.css', | 21 | 'css/style.css', |
| 22 | - '/css/new-style.css', | 22 | + 'css/new-style.css', |
| 23 | ]; | 23 | ]; |
| 24 | public $js = [ | 24 | public $js = [ |
| 25 | ]; | 25 | ]; |
| 1 | +.style { | ||
| 2 | + width: 100%; | ||
| 3 | + float: left; } | ||
| 4 | + | ||
| 5 | +.new-basket-modal { | ||
| 6 | + position: absolute; | ||
| 7 | + width: 100% !important; | ||
| 8 | + left: 0; | ||
| 9 | + top: 0; | ||
| 10 | + z-index: 99998; | ||
| 11 | + margin-left: 0 !important; | ||
| 12 | + font-family: Arial; | ||
| 13 | + text-align: center; } | ||
| 14 | + .new-basket-modal * { | ||
| 15 | + box-sizing: border-box; } | ||
| 16 | + .new-basket-modal .site { | ||
| 17 | + display: inline-block; | ||
| 18 | + text-align: left; | ||
| 19 | + position: relative; | ||
| 20 | + z-index: 3; } | ||
| 21 | + | ||
| 22 | +.basket-close { | ||
| 23 | + z-index: 2; | ||
| 24 | + position: absolute; | ||
| 25 | + width: 100%; | ||
| 26 | + height: 100%; | ||
| 27 | + left: 0; | ||
| 28 | + top: 0; } | ||
| 29 | + | ||
| 30 | +#overlay { | ||
| 31 | + position: fixed; | ||
| 32 | + z-index: 999; | ||
| 33 | + width: 100%; | ||
| 34 | + height: 100%; | ||
| 35 | + background: #000; | ||
| 36 | + opacity: 0.85; | ||
| 37 | + top: 0; | ||
| 38 | + left: 0; } | ||
| 39 | + | ||
| 40 | +.basket-modal-wr { | ||
| 41 | + padding: 27px 0 30px 0; | ||
| 42 | + background: #fff; | ||
| 43 | + border-radius: 4px; } | ||
| 44 | + | ||
| 45 | +.title-basket-modal { | ||
| 46 | + border-bottom: 1px solid #b7b7b7; | ||
| 47 | + font-size: 20px; | ||
| 48 | + font-weight: 700; | ||
| 49 | + padding: 0 20px; | ||
| 50 | + color: #87476a; | ||
| 51 | + padding-bottom: 14px; } | ||
| 52 | + | ||
| 53 | +.table-basket-wrapp { | ||
| 54 | + padding: 0 20px 0 20px; } | ||
| 55 | + | ||
| 56 | +.table-basket { | ||
| 57 | + font-size: 15px; | ||
| 58 | + width: 100%; } | ||
| 59 | + .table-basket a { | ||
| 60 | + font-size: 15px; } | ||
| 61 | + .table-basket tr td { | ||
| 62 | + padding-top: 20px; | ||
| 63 | + padding-bottom: 20px; | ||
| 64 | + vertical-align: middle; | ||
| 65 | + border-bottom: 1px solid #b7b7b7; } | ||
| 66 | + .table-basket tr td.basket-modal-img { | ||
| 67 | + width: 120px; } | ||
| 68 | + .table-basket tr td.basket-modal-img img { | ||
| 69 | + max-width: 110px; } | ||
| 70 | + .table-basket tr td.b-price-item-total { | ||
| 71 | + text-align: right; | ||
| 72 | + font-weight: 700; | ||
| 73 | + color: #87476a; | ||
| 74 | + width: 180px; } | ||
| 75 | + .table-basket tr td.basket-modal-count { | ||
| 76 | + width: 165px; } | ||
| 77 | + | ||
| 78 | +.b-cat-title a { | ||
| 79 | + color: #59a926; | ||
| 80 | + font-weight: 700; | ||
| 81 | + text-decoration: none; } | ||
| 82 | + .b-cat-title a:hover { | ||
| 83 | + text-decoration: underline; } | ||
| 84 | + | ||
| 85 | +.b-count-txt { | ||
| 86 | + float: left; | ||
| 87 | + color: #87476a; | ||
| 88 | + font-size: 14px; | ||
| 89 | + font-weight: 700; | ||
| 90 | + line-height: 31px; } | ||
| 91 | + | ||
| 92 | +.input-count-wrapp { | ||
| 93 | + position: relative; | ||
| 94 | + width: 72px; | ||
| 95 | + margin-left: 10px; | ||
| 96 | + float: left; } | ||
| 97 | + .input-count-wrapp input { | ||
| 98 | + width: 100%; | ||
| 99 | + height: 31px; | ||
| 100 | + padding-right: 22px; | ||
| 101 | + padding-left: 14px; | ||
| 102 | + border: 1px solid #b7b7b7; | ||
| 103 | + border-radius: 4px; | ||
| 104 | + outline: none !important; } | ||
| 105 | + .input-count-wrapp div { | ||
| 106 | + position: absolute; | ||
| 107 | + top: 0; | ||
| 108 | + right: 0; | ||
| 109 | + width: 22px; | ||
| 110 | + height: 100%; } | ||
| 111 | + .input-count-wrapp span { | ||
| 112 | + display: block; | ||
| 113 | + position: absolute; | ||
| 114 | + right: 5px; | ||
| 115 | + top: 6px; | ||
| 116 | + width: 12px; | ||
| 117 | + background-image: url("../img/basket/arrows-b-p.png"); | ||
| 118 | + background-repeat: no-repeat; | ||
| 119 | + background-position: 50% 0; | ||
| 120 | + background-size: 8px 4px; | ||
| 121 | + height: 10px; | ||
| 122 | + cursor: pointer; } | ||
| 123 | + .input-count-wrapp span.plus { | ||
| 124 | + border-bottom: 1px solid #b7b7b7; } | ||
| 125 | + .input-count-wrapp span.minus { | ||
| 126 | + background-image: url("../img/basket/arrows-b-m.png"); | ||
| 127 | + top: auto; | ||
| 128 | + bottom: 6px; | ||
| 129 | + height: 4px; } | ||
| 130 | + | ||
| 131 | +.b-cat { | ||
| 132 | + color: #464646; } | ||
| 133 | + | ||
| 134 | +.b-price-item { | ||
| 135 | + color: #87476a; | ||
| 136 | + margin-top: 3px; } | ||
| 137 | + | ||
| 138 | +.remove-wrapp { | ||
| 139 | + margin-top: 26px; } | ||
| 140 | + .remove-wrapp span { | ||
| 141 | + position: relative; | ||
| 142 | + padding-left: 24px; | ||
| 143 | + font-size: 13px; | ||
| 144 | + cursor: pointer; } | ||
| 145 | + .remove-wrapp span b { | ||
| 146 | + color: #464646; | ||
| 147 | + text-decoration: underline; | ||
| 148 | + font-weight: normal; } | ||
| 149 | + .remove-wrapp span:before { | ||
| 150 | + width: 15px; | ||
| 151 | + height: 16px; | ||
| 152 | + position: absolute; | ||
| 153 | + left: 0; | ||
| 154 | + top: 50%; | ||
| 155 | + margin-top: -8px; | ||
| 156 | + content: ''; | ||
| 157 | + background: url("../img/basket/ico-remove-b.jpg") 50% 50% no-repeat; } | ||
| 158 | + .remove-wrapp span:hover b { | ||
| 159 | + text-decoration: none; } | ||
| 160 | + | ||
| 161 | +.b-total-price-block-txt { | ||
| 162 | + float: left; | ||
| 163 | + color: #db1111; | ||
| 164 | + font-size: 13px; | ||
| 165 | + line-height: 16px; | ||
| 166 | + padding-top: 28px; } | ||
| 167 | + | ||
| 168 | +.b-total-price-block-num { | ||
| 169 | + float: right; | ||
| 170 | + color: #87476a; | ||
| 171 | + font-size: 20px; | ||
| 172 | + padding-top: 27px; } | ||
| 173 | + | ||
| 174 | +.buttons-b-wr { | ||
| 175 | + margin-top: 4px; } | ||
| 176 | + .buttons-b-wr a { | ||
| 177 | + margin-top: 15px; | ||
| 178 | + padding: 0 15px; | ||
| 179 | + margin-left: 15px; | ||
| 180 | + float: right; | ||
| 181 | + display: block; | ||
| 182 | + height: 31px; | ||
| 183 | + border: 1px solid #59a926; | ||
| 184 | + text-align: center; | ||
| 185 | + line-height: 31px; | ||
| 186 | + font-size: 15px; | ||
| 187 | + text-transform: uppercase; | ||
| 188 | + border-radius: 3px; | ||
| 189 | + text-decoration: none !important; | ||
| 190 | + color: #59a926; } | ||
| 191 | + .buttons-b-wr a.link-to-basket { | ||
| 192 | + background: #59a926; | ||
| 193 | + color: #fff; } | ||
| 194 | + .buttons-b-wr a:hover { | ||
| 195 | + color: #f1bc2e; } | ||
| 196 | + | ||
| 197 | +.hidden { | ||
| 198 | + display: none !important; } | ||
| 199 | + | ||
| 200 | +@media (max-width: 767px) { | ||
| 201 | + .visible-xs { | ||
| 202 | + display: block !important; } | ||
| 203 | + | ||
| 204 | + .hidden-xs { | ||
| 205 | + display: none !important; } | ||
| 206 | + | ||
| 207 | + .table-basket tr td { | ||
| 208 | + display: block; | ||
| 209 | + border-bottom: 0; | ||
| 210 | + width: 100% !important; | ||
| 211 | + float: left; | ||
| 212 | + text-align: center !important; | ||
| 213 | + padding-top: 0; } | ||
| 214 | + .table-basket tr td:last-child { | ||
| 215 | + border-bottom: 1px solid #b7b7b7; } | ||
| 216 | + .table-basket tr td:first-child { | ||
| 217 | + margin-top: 20px; } | ||
| 218 | + | ||
| 219 | + .b-total-price-block-txt, .b-total-price-block-num { | ||
| 220 | + text-align: center; | ||
| 221 | + width: 100%; } | ||
| 222 | + | ||
| 223 | + .buttons-b-wr { | ||
| 224 | + text-align: center; } | ||
| 225 | + .buttons-b-wr a { | ||
| 226 | + margin-left: 7px; | ||
| 227 | + margin-right: 7px; | ||
| 228 | + display: inline-block; | ||
| 229 | + float: none; } | ||
| 230 | + | ||
| 231 | + .basket-modal-wr { | ||
| 232 | + border-radius: 0; } } | ||
| 233 | + | ||
| 234 | +/*# sourceMappingURL=new-style.css.map */ |
| 1 | +{ | ||
| 2 | +"version": 3, | ||
| 3 | +"mappings": "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", | ||
| 4 | +"sources": ["new-style.scss"], | ||
| 5 | +"names": [], | ||
| 6 | +"file": "new-style.css" | ||
| 7 | +} | ||
| 0 | \ No newline at end of file | 8 | \ No newline at end of file |