jquery-ui
5 years ago
photoswipe
4 months ago
_animation.scss
3 years ago
_fonts.scss
2 years ago
_mixins.scss
1 month ago
_variables.scss
1 month ago
activation-rtl.css
2 months ago
activation.css
2 months ago
activation.scss
2 months ago
address-autocomplete-rtl.css
2 months ago
address-autocomplete.css
2 months ago
address-autocomplete.scss
2 months ago
admin-rtl.css
1 month ago
admin.css
1 month ago
admin.scss
1 month ago
auth-rtl.css
1 month ago
auth.css
1 month ago
auth.scss
1 year ago
brands-admin-rtl.css
1 year ago
brands-admin.css
1 year ago
brands-admin.scss
1 year ago
brands-rtl.css
1 year ago
brands.css
1 year ago
brands.scss
1 year ago
coming-soon-entire-site-deprecated-rtl.css
1 year ago
coming-soon-entire-site-deprecated.css
1 year ago
coming-soon-entire-site-deprecated.scss
1 year ago
coming-soon-rtl.css
1 year ago
coming-soon.css
1 year ago
coming-soon.scss
1 year ago
dashboard-rtl.css
1 month ago
dashboard-setup-rtl.css
4 years ago
dashboard-setup.css
4 years ago
dashboard-setup.scss
3 years ago
dashboard.css
1 month ago
dashboard.scss
3 months ago
forms-rtl.css
2 months ago
forms.css
2 months ago
forms.scss
2 months ago
helper-rtl.css
1 month ago
helper.css
1 month ago
helper.scss
1 month ago
marketplace-suggestions-rtl.css
1 month ago
marketplace-suggestions.css
1 month ago
marketplace-suggestions.scss
11 months ago
menu-rtl.css
1 month ago
menu.css
1 month ago
menu.scss
2 years ago
network-order-widget-rtl.css
4 years ago
network-order-widget.css
4 years ago
network-order-widget.scss
3 years ago
order-review-rtl.css
1 month ago
order-review.css
1 month ago
order-review.scss
1 month ago
prettyPhoto-rtl.css
1 month ago
prettyPhoto.css
1 month ago
prettyPhoto.scss
3 years ago
privacy-rtl.css
6 years ago
privacy.css
6 years ago
privacy.scss
3 years ago
reports-print-rtl.css
3 years ago
reports-print.css
3 years ago
reports-print.scss
3 years ago
select2.css
2 months ago
select2.scss
2 months ago
twenty-nineteen-rtl.css
2 months ago
twenty-nineteen.css
2 months ago
twenty-nineteen.scss
10 months ago
twenty-seventeen-rtl.css
2 months ago
twenty-seventeen.css
2 months ago
twenty-seventeen.scss
10 months ago
twenty-twenty-one-admin-rtl.css
2 years ago
twenty-twenty-one-admin.css
2 years ago
twenty-twenty-one-admin.scss
2 years ago
twenty-twenty-one-rtl.css
2 months ago
twenty-twenty-one.css
2 months ago
twenty-twenty-one.scss
3 months ago
twenty-twenty-rtl.css
2 months ago
twenty-twenty-three-rtl.css
2 months ago
twenty-twenty-three.css
2 months ago
twenty-twenty-three.scss
4 months ago
twenty-twenty-two-rtl.css
1 month ago
twenty-twenty-two.css
1 month ago
twenty-twenty-two.scss
4 months ago
twenty-twenty.css
2 months ago
twenty-twenty.scss
3 months ago
variation-gallery-admin-rtl.css
1 month ago
variation-gallery-admin.css
1 month ago
variation-gallery-admin.scss
1 month ago
wc-setup-rtl.css
1 month ago
wc-setup.css
1 month ago
wc-setup.scss
2 months ago
woocommerce-blocktheme-rtl.css
1 month ago
woocommerce-blocktheme.css
1 month ago
woocommerce-blocktheme.scss
10 months ago
woocommerce-classictheme-editor-fonts-rtl.css
1 year ago
woocommerce-classictheme-editor-fonts.css
1 year ago
woocommerce-classictheme-editor-fonts.scss
1 year ago
woocommerce-layout-rtl.css
1 month ago
woocommerce-layout.css
1 month ago
woocommerce-layout.scss
1 year ago
woocommerce-rtl.css
1 month ago
woocommerce-smallscreen-rtl.css
1 month ago
woocommerce-smallscreen.css
1 month ago
woocommerce-smallscreen.scss
2 months ago
woocommerce.css
1 month ago
woocommerce.scss
4 months ago
woocommerce-layout.scss
745 lines
| 1 | /** |
| 2 | * woocommerce-layout.scss |
| 3 | * Applies layout to the default WooCommerce frontend design |
| 4 | */ |
| 5 | |
| 6 | /** |
| 7 | * Imports |
| 8 | */ |
| 9 | @import "mixins"; |
| 10 | @import "variables"; |
| 11 | |
| 12 | /** |
| 13 | * Styling begins |
| 14 | */ |
| 15 | .woocommerce, |
| 16 | .woocommerce-page { |
| 17 | |
| 18 | .woocommerce-message, |
| 19 | .woocommerce-error, |
| 20 | .woocommerce-info { |
| 21 | |
| 22 | .button { |
| 23 | float: right; |
| 24 | } |
| 25 | } |
| 26 | |
| 27 | /** |
| 28 | * General layout styles |
| 29 | */ |
| 30 | .col2-set { |
| 31 | |
| 32 | @include clearfix(); |
| 33 | width: 100%; |
| 34 | |
| 35 | .col-1 { |
| 36 | float: left; |
| 37 | width: 48%; |
| 38 | } |
| 39 | |
| 40 | .col-2 { |
| 41 | float: right; |
| 42 | width: 48%; |
| 43 | } |
| 44 | } |
| 45 | |
| 46 | img { |
| 47 | height: auto; |
| 48 | max-width: 100%; |
| 49 | } |
| 50 | |
| 51 | /** |
| 52 | * Product page |
| 53 | */ |
| 54 | div.product, |
| 55 | #content div.product { |
| 56 | |
| 57 | div.images { |
| 58 | float: left; |
| 59 | width: 48%; |
| 60 | } |
| 61 | |
| 62 | div.thumbnails { |
| 63 | |
| 64 | @include clearfix(); |
| 65 | |
| 66 | a { |
| 67 | float: left; |
| 68 | width: 30.75%; |
| 69 | margin-right: 3.8%; |
| 70 | margin-bottom: 1em; |
| 71 | } |
| 72 | |
| 73 | a.last { |
| 74 | margin-right: 0; |
| 75 | } |
| 76 | |
| 77 | a.first { |
| 78 | clear: both; |
| 79 | } |
| 80 | |
| 81 | &.columns-1 { |
| 82 | |
| 83 | a { |
| 84 | width: 100%; |
| 85 | margin-right: 0; |
| 86 | float: none; |
| 87 | } |
| 88 | } |
| 89 | |
| 90 | &.columns-2 { |
| 91 | |
| 92 | a { |
| 93 | width: 48%; |
| 94 | } |
| 95 | } |
| 96 | |
| 97 | &.columns-4 { |
| 98 | |
| 99 | a { |
| 100 | width: 22.05%; |
| 101 | } |
| 102 | } |
| 103 | |
| 104 | &.columns-5 { |
| 105 | |
| 106 | a { |
| 107 | width: 16.9%; |
| 108 | } |
| 109 | } |
| 110 | } |
| 111 | |
| 112 | div.summary { |
| 113 | float: right; |
| 114 | width: 48%; |
| 115 | clear: none; |
| 116 | } |
| 117 | |
| 118 | .woocommerce-tabs { |
| 119 | clear: both; |
| 120 | |
| 121 | ul.tabs { |
| 122 | |
| 123 | @include menu(); |
| 124 | } |
| 125 | } |
| 126 | |
| 127 | #reviews { |
| 128 | |
| 129 | .comment { |
| 130 | |
| 131 | @include mediaright(); |
| 132 | } |
| 133 | } |
| 134 | } |
| 135 | |
| 136 | /** |
| 137 | * Product loops |
| 138 | */ |
| 139 | ul.products { |
| 140 | clear: both; |
| 141 | |
| 142 | @include clearfix(); |
| 143 | |
| 144 | li.product { |
| 145 | float: left; |
| 146 | margin: 0 3.8% 2.992em 0; |
| 147 | padding: 0; |
| 148 | position: relative; |
| 149 | width: 22.05%; |
| 150 | margin-left: 0; |
| 151 | } |
| 152 | |
| 153 | li.first { |
| 154 | clear: both; |
| 155 | } |
| 156 | |
| 157 | li.last { |
| 158 | margin-right: 0; |
| 159 | } |
| 160 | } |
| 161 | |
| 162 | ul.products { |
| 163 | |
| 164 | &.columns-1 { |
| 165 | |
| 166 | li.product { |
| 167 | width: 100%; |
| 168 | margin-right: 0; |
| 169 | } |
| 170 | } |
| 171 | |
| 172 | &.columns-2 { |
| 173 | |
| 174 | li.product { |
| 175 | width: 48%; |
| 176 | } |
| 177 | } |
| 178 | |
| 179 | &.columns-3 { |
| 180 | |
| 181 | li.product { |
| 182 | width: 30.75%; |
| 183 | } |
| 184 | } |
| 185 | |
| 186 | &.columns-5 { |
| 187 | |
| 188 | li.product { |
| 189 | width: 16.95%; |
| 190 | } |
| 191 | } |
| 192 | |
| 193 | &.columns-6 { |
| 194 | |
| 195 | li.product { |
| 196 | width: 13.5%; |
| 197 | } |
| 198 | } |
| 199 | } |
| 200 | |
| 201 | &.columns-1 { |
| 202 | |
| 203 | ul.products { |
| 204 | |
| 205 | li.product { |
| 206 | width: 100%; |
| 207 | margin-right: 0; |
| 208 | } |
| 209 | } |
| 210 | } |
| 211 | |
| 212 | &.columns-2 { |
| 213 | |
| 214 | ul.products { |
| 215 | |
| 216 | li.product { |
| 217 | width: 48%; |
| 218 | } |
| 219 | } |
| 220 | } |
| 221 | |
| 222 | &.columns-3 { |
| 223 | |
| 224 | ul.products { |
| 225 | |
| 226 | li.product { |
| 227 | width: 30.75%; |
| 228 | } |
| 229 | } |
| 230 | } |
| 231 | |
| 232 | &.columns-5 { |
| 233 | |
| 234 | ul.products { |
| 235 | |
| 236 | li.product { |
| 237 | width: 16.95%; |
| 238 | } |
| 239 | } |
| 240 | } |
| 241 | |
| 242 | &.columns-6 { |
| 243 | |
| 244 | ul.products { |
| 245 | |
| 246 | li.product { |
| 247 | width: 13.5%; |
| 248 | } |
| 249 | } |
| 250 | } |
| 251 | |
| 252 | .woocommerce-result-count { |
| 253 | float: left; |
| 254 | } |
| 255 | |
| 256 | .woocommerce-ordering { |
| 257 | float: right; |
| 258 | } |
| 259 | |
| 260 | .woocommerce-pagination { |
| 261 | |
| 262 | ul.page-numbers { |
| 263 | |
| 264 | @include menu(); |
| 265 | } |
| 266 | } |
| 267 | |
| 268 | /** |
| 269 | * Cart page |
| 270 | */ |
| 271 | table.cart, |
| 272 | #content table.cart { |
| 273 | |
| 274 | img { |
| 275 | height: auto; |
| 276 | } |
| 277 | |
| 278 | td.actions { |
| 279 | text-align: right; |
| 280 | |
| 281 | .input-text { |
| 282 | width: 80px; |
| 283 | } |
| 284 | |
| 285 | .coupon { |
| 286 | float: left; |
| 287 | } |
| 288 | } |
| 289 | } |
| 290 | |
| 291 | .cart-collaterals { |
| 292 | |
| 293 | @include clearfix(); |
| 294 | width: 100%; |
| 295 | |
| 296 | .related { |
| 297 | width: 30.75%; |
| 298 | float: left; |
| 299 | } |
| 300 | |
| 301 | .cross-sells { |
| 302 | width: 48%; |
| 303 | float: left; |
| 304 | |
| 305 | ul.products { |
| 306 | float: none; |
| 307 | |
| 308 | li { |
| 309 | width: 48%; |
| 310 | } |
| 311 | } |
| 312 | } |
| 313 | |
| 314 | .shipping_calculator { |
| 315 | width: 48%; |
| 316 | |
| 317 | @include clearfix(); |
| 318 | clear: right; |
| 319 | float: right; |
| 320 | |
| 321 | .col2-set { |
| 322 | |
| 323 | .col-1, |
| 324 | .col-2 { |
| 325 | width: 47%; |
| 326 | } |
| 327 | } |
| 328 | } |
| 329 | |
| 330 | .cart_totals { |
| 331 | float: right; |
| 332 | width: 48%; |
| 333 | } |
| 334 | } |
| 335 | |
| 336 | /** |
| 337 | * Cart sidebar |
| 338 | */ |
| 339 | ul.cart_list, |
| 340 | ul.product_list_widget { |
| 341 | |
| 342 | li { |
| 343 | |
| 344 | @include mediaright(); |
| 345 | } |
| 346 | } |
| 347 | |
| 348 | /** |
| 349 | * Forms |
| 350 | */ |
| 351 | form { |
| 352 | |
| 353 | .form-row { |
| 354 | |
| 355 | @include clearfix(); |
| 356 | |
| 357 | label { |
| 358 | display: block; |
| 359 | |
| 360 | &.checkbox { |
| 361 | display: inline; |
| 362 | } |
| 363 | } |
| 364 | |
| 365 | select { |
| 366 | width: 100%; |
| 367 | } |
| 368 | |
| 369 | .input-text { |
| 370 | box-sizing: border-box; |
| 371 | width: 100%; |
| 372 | } |
| 373 | } |
| 374 | |
| 375 | .form-row-first, |
| 376 | .form-row-last { |
| 377 | width: 47%; |
| 378 | overflow: visible; |
| 379 | } |
| 380 | |
| 381 | .form-row-first { |
| 382 | float: left; |
| 383 | |
| 384 | /*rtl:raw: |
| 385 | float: right; |
| 386 | */ |
| 387 | } |
| 388 | |
| 389 | .form-row-last { |
| 390 | float: right; |
| 391 | } |
| 392 | |
| 393 | .form-row-wide { |
| 394 | clear: both; |
| 395 | } |
| 396 | |
| 397 | .password-input { |
| 398 | display: flex; |
| 399 | flex-direction: column; |
| 400 | justify-content: center; |
| 401 | position: relative; |
| 402 | |
| 403 | input[type="password"]="password""] { |
| 404 | padding-right: 2.5rem; |
| 405 | } |
| 406 | |
| 407 | /* Hide the Edge "reveal password" native button */ |
| 408 | input::-ms-reveal { |
| 409 | display: none; |
| 410 | } |
| 411 | } |
| 412 | |
| 413 | .show-password-input { |
| 414 | background-color: transparent; |
| 415 | border-radius: 0; |
| 416 | border: 0; |
| 417 | color: var(--wc-form-color-text, #000); |
| 418 | cursor: pointer; |
| 419 | font-size: inherit; |
| 420 | line-height: inherit; |
| 421 | margin: 0; |
| 422 | padding: 0; |
| 423 | position: absolute; |
| 424 | right: 0.7em; |
| 425 | text-decoration: none; |
| 426 | top: 50%; |
| 427 | transform: translateY( -50% ); |
| 428 | -moz-osx-font-smoothing: inherit; |
| 429 | -webkit-appearance: none; |
| 430 | -webkit-font-smoothing: inherit; |
| 431 | } |
| 432 | |
| 433 | .show-password-input::before { |
| 434 | background-repeat: no-repeat; |
| 435 | background-size: cover; |
| 436 | background-image: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M17.3 3.3C16.9 2.9 16.2 2.9 15.7 3.3L13.3 5.7C12.2437 5.3079 11.1267 5.1048 10 5.1C6.2 5.2 2.8 7.2 1 10.5C1.2 10.9 1.5 11.3 1.8 11.7C2.6 12.8 3.6 13.7 4.7 14.4L3 16.1C2.6 16.5 2.5 17.2 3 17.7C3.4 18.1 4.1 18.2 4.6 17.7L17.3 4.9C17.7 4.4 17.7 3.7 17.3 3.3ZM6.7 12.3L5.4 13.6C4.2 12.9 3.1 11.9 2.3 10.7C3.5 9 5.1 7.8 7 7.2C5.7 8.6 5.6 10.8 6.7 12.3ZM10.1 9C9.6 8.5 9.7 7.7 10.2 7.2C10.7 6.8 11.4 6.8 11.9 7.2L10.1 9ZM18.3 9.5C17.8 8.8 17.2 8.1 16.5 7.6L15.5 8.6C16.3 9.2 17 9.9 17.6 10.8C15.9 13.4 13 15 9.9 15H9.1L8.1 16C8.8 15.9 9.4 16 10 16C13.3 16 16.4 14.4 18.3 11.7C18.6 11.3 18.8 10.9 19.1 10.5C18.8 10.2 18.6 9.8 18.3 9.5ZM14 10L10 14C12.2 14 14 12.2 14 10Z" fill="%23111111"/></svg>'); |
| 437 | content: ''; |
| 438 | display: block; |
| 439 | height: 22px; |
| 440 | width: 22px; |
| 441 | } |
| 442 | |
| 443 | .show-password-input.display-password::before { |
| 444 | background-image: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M18.3 9.49999C15 4.89999 8.50002 3.79999 3.90002 7.19999C2.70002 8.09999 1.70002 9.29999 0.900024 10.6C1.10002 11 1.40002 11.4 1.70002 11.8C5.00002 16.4 11.3 17.4 15.9 14.2C16.8 13.5 17.6 12.8 18.3 11.8C18.6 11.4 18.8 11 19.1 10.6C18.8 10.2 18.6 9.79999 18.3 9.49999ZM10.1 7.19999C10.6 6.69999 11.4 6.69999 11.9 7.19999C12.4 7.69999 12.4 8.49999 11.9 8.99999C11.4 9.49999 10.6 9.49999 10.1 8.99999C9.60003 8.49999 9.60003 7.69999 10.1 7.19999ZM10 14.9C6.90002 14.9 4.00002 13.3 2.30002 10.7C3.50002 8.99999 5.10002 7.79999 7.00002 7.19999C6.30002 7.99999 6.00002 8.89999 6.00002 9.89999C6.00002 12.1 7.70002 14 10 14C12.2 14 14.1 12.3 14.1 9.99999V9.89999C14.1 8.89999 13.7 7.89999 13 7.19999C14.9 7.79999 16.5 8.99999 17.7 10.7C16 13.3 13.1 14.9 10 14.9Z" fill="%23111111"/></svg>'); |
| 445 | } |
| 446 | } |
| 447 | |
| 448 | #payment { |
| 449 | |
| 450 | .form-row { |
| 451 | |
| 452 | select { |
| 453 | width: auto; |
| 454 | } |
| 455 | } |
| 456 | |
| 457 | .wc-terms-and-conditions, |
| 458 | .terms { |
| 459 | text-align: left; |
| 460 | padding: 0 1em 0 0; |
| 461 | float: left; |
| 462 | } |
| 463 | |
| 464 | #place_order { |
| 465 | float: right; |
| 466 | } |
| 467 | } |
| 468 | |
| 469 | .woocommerce-billing-fields, |
| 470 | .woocommerce-shipping-fields { |
| 471 | |
| 472 | @include clearfix(); |
| 473 | } |
| 474 | |
| 475 | .woocommerce-terms-and-conditions { |
| 476 | margin-bottom: 1.618em; |
| 477 | padding: 1.618em; |
| 478 | } |
| 479 | |
| 480 | /** |
| 481 | * oEmbeds |
| 482 | */ |
| 483 | .woocommerce-oembed { |
| 484 | position: relative; |
| 485 | } |
| 486 | } |
| 487 | |
| 488 | .woocommerce-account { |
| 489 | |
| 490 | .woocommerce-MyAccount-navigation { |
| 491 | float: left; |
| 492 | width: 30%; |
| 493 | } |
| 494 | |
| 495 | .woocommerce-MyAccount-content { |
| 496 | float: right; |
| 497 | width: 68%; |
| 498 | |
| 499 | mark { |
| 500 | background-color: transparent; |
| 501 | color: inherit; |
| 502 | font-weight: 700; |
| 503 | } |
| 504 | } |
| 505 | } |
| 506 | |
| 507 | /** |
| 508 | * Twenty Eleven specific styles |
| 509 | */ |
| 510 | .woocommerce-page { |
| 511 | |
| 512 | &.left-sidebar { |
| 513 | |
| 514 | #content.twentyeleven { |
| 515 | width: 58.4%; |
| 516 | margin: 0 7.6%; |
| 517 | float: right; |
| 518 | } |
| 519 | } |
| 520 | |
| 521 | &.right-sidebar { |
| 522 | |
| 523 | #content.twentyeleven { |
| 524 | margin: 0 7.6%; |
| 525 | width: 58.4%; |
| 526 | float: left; |
| 527 | } |
| 528 | } |
| 529 | } |
| 530 | |
| 531 | /** |
| 532 | * Twenty Fourteen specific styles |
| 533 | */ |
| 534 | .twentyfourteen { |
| 535 | |
| 536 | .tfwc { |
| 537 | padding: 12px 10px 0; |
| 538 | max-width: 474px; |
| 539 | margin: 0 auto; |
| 540 | |
| 541 | .product .entry-summary { |
| 542 | padding: 0 !important; |
| 543 | margin: 0 0 1.618em !important; |
| 544 | } |
| 545 | |
| 546 | div.product.hentry.has-post-thumbnail { |
| 547 | margin-top: 0; |
| 548 | } |
| 549 | } |
| 550 | } |
| 551 | |
| 552 | @media screen and (min-width: 673px) { |
| 553 | |
| 554 | .twentyfourteen { |
| 555 | |
| 556 | .tfwc { |
| 557 | padding-right: 30px; |
| 558 | padding-left: 30px; |
| 559 | } |
| 560 | } |
| 561 | } |
| 562 | |
| 563 | @media screen and (min-width: 1040px) { |
| 564 | |
| 565 | .twentyfourteen { |
| 566 | |
| 567 | .tfwc { |
| 568 | padding-right: 15px; |
| 569 | padding-left: 15px; |
| 570 | } |
| 571 | } |
| 572 | } |
| 573 | |
| 574 | @media screen and (min-width: 1110px) { |
| 575 | |
| 576 | .twentyfourteen { |
| 577 | |
| 578 | .tfwc { |
| 579 | padding-right: 30px; |
| 580 | padding-left: 30px; |
| 581 | } |
| 582 | } |
| 583 | } |
| 584 | |
| 585 | @media screen and (min-width: 1218px) { |
| 586 | |
| 587 | .twentyfourteen { |
| 588 | |
| 589 | .tfwc { |
| 590 | margin-right: 54px; |
| 591 | } |
| 592 | } |
| 593 | |
| 594 | .full-width { |
| 595 | |
| 596 | .twentyfourteen { |
| 597 | |
| 598 | .tfwc { |
| 599 | margin-right: auto; |
| 600 | } |
| 601 | } |
| 602 | } |
| 603 | } |
| 604 | |
| 605 | /** |
| 606 | * Twenty Fifteen specific styles |
| 607 | */ |
| 608 | .twentyfifteen { |
| 609 | |
| 610 | .t15wc { |
| 611 | padding-left: 7.6923%; |
| 612 | padding-right: 7.6923%; |
| 613 | padding-top: 7.6923%; |
| 614 | margin-bottom: 7.6923%; |
| 615 | background: #fff; |
| 616 | box-shadow: 0 0 1px rgba(0, 0, 0, 0.15); |
| 617 | |
| 618 | .page-title { |
| 619 | margin-left: 0; |
| 620 | } |
| 621 | } |
| 622 | } |
| 623 | |
| 624 | @media screen and (min-width: 38.75em) { |
| 625 | |
| 626 | .twentyfifteen { |
| 627 | |
| 628 | .t15wc { |
| 629 | margin-right: 7.6923%; |
| 630 | margin-left: 7.6923%; |
| 631 | margin-top: 8.3333%; |
| 632 | } |
| 633 | } |
| 634 | } |
| 635 | |
| 636 | @media screen and (min-width: 59.6875em) { |
| 637 | |
| 638 | .twentyfifteen { |
| 639 | |
| 640 | .t15wc { |
| 641 | margin-left: 8.3333%; |
| 642 | margin-right: 8.3333%; |
| 643 | padding: 10%; |
| 644 | } |
| 645 | } |
| 646 | |
| 647 | .single-product { |
| 648 | |
| 649 | .twentyfifteen { |
| 650 | |
| 651 | .entry-summary { |
| 652 | padding: 0 !important; |
| 653 | } |
| 654 | } |
| 655 | } |
| 656 | } |
| 657 | |
| 658 | /** |
| 659 | * Twenty Sixteen specific styles |
| 660 | */ |
| 661 | .twentysixteen { |
| 662 | |
| 663 | .site-main { |
| 664 | margin-right: 7.6923%; |
| 665 | margin-left: 7.6923%; |
| 666 | } |
| 667 | |
| 668 | .entry-summary { |
| 669 | margin-right: 0; |
| 670 | margin-left: 0; |
| 671 | } |
| 672 | } |
| 673 | |
| 674 | #content { |
| 675 | |
| 676 | .twentysixteen { |
| 677 | |
| 678 | div.product { |
| 679 | |
| 680 | div.images, |
| 681 | div.summary { |
| 682 | width: 46.42857%; |
| 683 | } |
| 684 | } |
| 685 | } |
| 686 | } |
| 687 | |
| 688 | @media screen and (min-width: 44.375em) { |
| 689 | |
| 690 | .twentysixteen { |
| 691 | |
| 692 | .site-main { |
| 693 | margin-right: 23.0769%; |
| 694 | } |
| 695 | } |
| 696 | } |
| 697 | |
| 698 | @media screen and (min-width: 56.875em) { |
| 699 | |
| 700 | .twentysixteen { |
| 701 | |
| 702 | .site-main { |
| 703 | margin-right: 0; |
| 704 | margin-left: 0; |
| 705 | } |
| 706 | } |
| 707 | |
| 708 | .no-sidebar { |
| 709 | |
| 710 | .twentysixteen { |
| 711 | |
| 712 | .site-main { |
| 713 | margin-right: 15%; |
| 714 | margin-left: 15%; |
| 715 | } |
| 716 | |
| 717 | .entry-summary { |
| 718 | margin-right: 0; |
| 719 | margin-left: 0; |
| 720 | } |
| 721 | } |
| 722 | } |
| 723 | } |
| 724 | |
| 725 | /** |
| 726 | * RTL styles. |
| 727 | */ |
| 728 | .rtl { |
| 729 | |
| 730 | .woocommerce, |
| 731 | .woocommerce-page { |
| 732 | |
| 733 | .col2-set { |
| 734 | |
| 735 | .col-1 { |
| 736 | float: right; |
| 737 | } |
| 738 | |
| 739 | .col-2 { |
| 740 | float: left; |
| 741 | } |
| 742 | } |
| 743 | } |
| 744 | } |
| 745 |