_ads.scss in MaxButtons – Create buttons 6.23, at assets/scss/_ads.scss
| 1 | .ad-wrap { |
| 2 | width: 27%; |
| 3 | float: left; |
| 4 | max-width: 300px; |
| 5 | margin-left: 1%; |
| 6 | min-width: 200px; |
| 7 | margin-top: 41px; |
| 8 | |
| 9 | .ads { |
| 10 | |
| 11 | background: #fff; |
| 12 | margin-bottom: 20px; |
| 13 | text-align: center; |
| 14 | //border: 1px solid #ccc; |
| 15 | &.image-ad |
| 16 | { |
| 17 | background: none; |
| 18 | margin-top: 20px; |
| 19 | img { |
| 20 | max-width: 100%; |
| 21 | } |
| 22 | } |
| 23 | |
| 24 | > a { |
| 25 | text-decoration: none; |
| 26 | } |
| 27 | .header { |
| 28 | background-color: #88c5c2; |
| 29 | color: #fff; |
| 30 | font-size: 18px; |
| 31 | text-transform: uppercase; |
| 32 | padding: 12px; |
| 33 | } |
| 34 | h3 { |
| 35 | text-align: center; |
| 36 | padding-bottom: 14px; |
| 37 | } |
| 38 | |
| 39 | ul { |
| 40 | list-style: none; |
| 41 | //text-align: center; |
| 42 | //margin-left: 30px; |
| 43 | li |
| 44 | { |
| 45 | font-weight: bold; |
| 46 | text-decoration: none; |
| 47 | color: #000000; |
| 48 | |
| 49 | &.plus { |
| 50 | font-size:38px; |
| 51 | font-weight: 700; |
| 52 | color: #88c5c2; |
| 53 | |
| 54 | } |
| 55 | |
| 56 | } |
| 57 | } |
| 58 | span.img { |
| 59 | text-align: center; |
| 60 | display: block; |
| 61 | } |
| 62 | .ads_button_wrap { |
| 63 | margin: 20px 0 30px; |
| 64 | display: inline-block; |
| 65 | |
| 66 | .button { |
| 67 | color: #fff; |
| 68 | background-color: #88c5c2; |
| 69 | font-size: 16px; |
| 70 | font-weight: bold; |
| 71 | border: 0; |
| 72 | padding: 0 40px; |
| 73 | } |
| 74 | } |
| 75 | } |
| 76 | } |
| 77 | |
| 78 | @media screen and (max-width: 960px) { |
| 79 | .ad-wrap { |
| 80 | display: none; |
| 81 | } |
| 82 | |
| 83 | } |
| 84 | |
| 85 |