Commit 8d37f672fa954b57a4e381f3ccb6679286a20e3a
1 parent
5f509693
Веталь
Showing
2 changed files
with
23 additions
and
7 deletions
Show diff stats
frontend/views/basket/index.php
... | ... | @@ -38,7 +38,7 @@ $('#order-delivery input[type=\"radio\"]').click(function(){ |
38 | 38 | |
39 | 39 | <div class="layout"> |
40 | 40 | |
41 | - <h1>Корзина</h1> | |
41 | + <h1 class="-_">Корзина</h1> | |
42 | 42 | <div class="ten"></div> |
43 | 43 | <?= Html::a('Вернуться в каталог', ['/site/index'], ['class'=>'btn-success']) ?> |
44 | 44 | <?php $form = ActiveForm::begin(['enableClientScript' => false]); ?> | ... | ... |
frontend/web/css/style.css
... | ... | @@ -109,7 +109,8 @@ a.myorders{color:#f75d50} |
109 | 109 | } |
110 | 110 | .products ul{list-style:none;margin:0;padding:0;} |
111 | 111 | .products ul li.item{float:left;width:192px;margin:0 0 50px 0;text-align:center;position:relative;} |
112 | -.products ul li a.name{display:block;color:#333;font-size: 15px;text-decoration:none;margin:15px 0 0 0;height:35px;overflow: hidden; box-sizing: border-box;padding: 0 10px;} | |
112 | +.products ul li a.name{display:block;color:#799920;font-size: 15px;text-decoration:none;margin:15px 0 0 0;height:35px;overflow: hidden; box-sizing: border-box;padding: 0 10px;} | |
113 | +.products ul li a.name:hover {text-decoration: underline} | |
113 | 114 | .products ul li .info{text-align: left;} |
114 | 115 | .pn{border:none;} |
115 | 116 | |
... | ... | @@ -118,9 +119,20 @@ a.myorders{color:#f75d50} |
118 | 119 | strike, strike span#old_cost{font-size:14px; color: #333} |
119 | 120 | |
120 | 121 | |
121 | -a.link_buy{font-size: 12px; display:block;margin:0 auto 10px auto;width:122px;height:29px;line-height:32px;text-transform: uppercase;color:#ffffff;text-decoration:none;font-weight:600;text-align:center; | |
122 | +.submit4m, a.link_buy { | |
122 | 123 | background: #95ba2f; |
123 | - border-radius: 4px; | |
124 | + border-radius:4px; | |
125 | + height: 29px; | |
126 | +} | |
127 | +a.link_buy { | |
128 | + font-size: 12px; | |
129 | + display:block; | |
130 | + margin:0 auto 10px auto; | |
131 | + width:122px; | |
132 | + line-height:32px; | |
133 | + text-transform: uppercase;color:#ffffff; | |
134 | + text-decoration:none;font-weight:600; | |
135 | + text-align:center; | |
124 | 136 | border-bottom: 3px solid #799920; |
125 | 137 | } |
126 | 138 | a.link_buy:hover, .submit4m:hover { |
... | ... | @@ -208,7 +220,7 @@ a.more_map{color:#99a5ad;border-bottom:1px dotted #99a5ad;text-decoration:none;f |
208 | 220 | margin: -6px 0 0 ; |
209 | 221 | top: 50%; |
210 | 222 | } |
211 | -.filters ul li a{color:#8fa951;text-decoration:none; font-size: 13px; line-height: 16px;} | |
223 | +.filters ul li a{color:#464646;text-decoration:none; font-size: 13px; line-height: 16px;} | |
212 | 224 | .filters ul li a:hover{text-decoration:underline;} |
213 | 225 | |
214 | 226 | .productLeftBar{float:left;width:228px;margin-left:20px;margin-right:20px;} |
... | ... | @@ -344,7 +356,7 @@ a.del:hover{color:#a52828;text-decoration: underline;} |
344 | 356 | .submit4{margin-top:5px;border:none;padding:8px 13px;background:#95ba2f;border-radius:5px;color:#ffffff;text-transform: uppercase;text-decoration:none;font-size:14px;cursor:pointer;} |
345 | 357 | .submit4:hover{background:#f75d50;} |
346 | 358 | |
347 | -.submit4m{font-family: Roboto;border:none;background:#95ba2f;border-radius:4px;color:#ffffff;text-transform: uppercase;font-size:10px;cursor:pointer; width:102px; height: 28px; border-bottom: 2px solid #799920; line-height: 28px;} | |
359 | +.submit4m {font-family: Roboto;border:none;background:#95ba2f;border-radius:4px;color:#ffffff;text-transform: uppercase;font-size:10px;cursor:pointer; width:102px; height: 29px; border-bottom: 3px solid #799920; line-height: 29px;} | |
348 | 360 | .submit4m:active,.submit4m:focus {outline: none} |
349 | 361 | |
350 | 362 | .btn-primary{margin-top:5px;border:none;padding:8px 13px;background:#95ba2f;border-radius:5px;color:#ffffff;text-transform: uppercase;text-decoration:none;font-size:14px;font-weight:bold;cursor:pointer;} |
... | ... | @@ -1258,7 +1270,11 @@ ul.product-special li.promo:after { |
1258 | 1270 | border-bottom: 1px solid #d2d2d2; |
1259 | 1271 | padding-bottom: 15px; |
1260 | 1272 | } |
1261 | -.field-orders-delivery .control-label { | |
1273 | +#login-form .btn-primary { | |
1274 | + padding: 0 13px; | |
1275 | + height: 28px; | |
1276 | +} | |
1277 | +.field-orders-delivery .control-label, .field-orders-payment .control-label, .field-orders-body .control-label { | |
1262 | 1278 | width: 100%; |
1263 | 1279 | float: left; |
1264 | 1280 | } |
1265 | 1281 | \ No newline at end of file | ... | ... |