| @@ -57,8 +57,129 @@ | ||
| 57 | 57 | position: relative; |
| 58 | 58 | top: 3px; |
| 59 | 59 | margin-right: 5px; |
| 60 | 60 | } |
| 61 | +.sellkit-notice .sellkit-notice-partner-theme-body { | |
| 62 | + display: -webkit-box; | |
| 63 | + display: -ms-flexbox; | |
| 64 | + display: flex; | |
| 65 | + -webkit-box-orient: horizontal; | |
| 66 | + -webkit-box-direction: normal; | |
| 67 | + -ms-flex-direction: row; | |
| 68 | + flex-direction: row; | |
| 69 | + -ms-flex-wrap: nowrap; | |
| 70 | + flex-wrap: nowrap; | |
| 71 | + -webkit-box-align: stretch; | |
| 72 | + -ms-flex-align: stretch; | |
| 73 | + align-items: stretch; | |
| 74 | + padding-top: 24px; | |
| 75 | +} | |
| 76 | +.sellkit-notice .sellkit-notice-partner-theme-body .sk-notice-title { | |
| 77 | + font-size: 14px; | |
| 78 | + font-weight: 400; | |
| 79 | +} | |
| 80 | +.sellkit-notice .sellkit-notice-partner-theme-body b { | |
| 81 | + font-size: 15px; | |
| 82 | +} | |
| 83 | +.sellkit-notice .sellkit-notice-partner-theme-body .btn-content a { | |
| 84 | + text-align: center; | |
| 85 | + text-decoration: none; | |
| 86 | +} | |
| 87 | +.sellkit-notice .sellkit-notice-partner-theme-body .btn-content .btn-inner-wrap { | |
| 88 | + display: -webkit-box; | |
| 89 | + display: -ms-flexbox; | |
| 90 | + display: flex; | |
| 91 | + -webkit-box-orient: vertical; | |
| 92 | + -webkit-box-direction: normal; | |
| 93 | + -ms-flex-direction: column; | |
| 94 | + flex-direction: column; | |
| 95 | + -ms-flex-wrap: nowrap; | |
| 96 | + flex-wrap: nowrap; | |
| 97 | + -ms-flex-line-pack: center; | |
| 98 | + align-content: center; | |
| 99 | + -webkit-box-align: center; | |
| 100 | + -ms-flex-align: center; | |
| 101 | + align-items: center; | |
| 102 | + -webkit-box-pack: center; | |
| 103 | + -ms-flex-pack: center; | |
| 104 | + justify-content: center; | |
| 105 | + padding: 15px 30px; | |
| 106 | + border-width: 2px; | |
| 107 | + border-style: solid; | |
| 108 | + border-radius: 10px; | |
| 109 | + border-color: #e932f1; | |
| 110 | + background-image: linear-gradient(-115deg, #f9d2ed 0%, #fce9f6 48%, white 100%); | |
| 111 | +} | |
| 112 | +.sellkit-notice .sellkit-notice-partner-theme-body .btn-content .btn-inner-wrap .offer-text { | |
| 113 | + color: #000000; | |
| 114 | + font-size: 15px; | |
| 115 | + text-decoration: underline; | |
| 116 | +} | |
| 117 | +.sellkit-notice .sellkit-notice-partner-theme-body .btn-content .btn-role { | |
| 118 | + display: -webkit-box; | |
| 119 | + display: -ms-flexbox; | |
| 120 | + display: flex; | |
| 121 | + -webkit-box-orient: horizontal; | |
| 122 | + -webkit-box-direction: normal; | |
| 123 | + -ms-flex-direction: row; | |
| 124 | + flex-direction: row; | |
| 125 | + -ms-flex-wrap: nowrap; | |
| 126 | + flex-wrap: nowrap; | |
| 127 | + -webkit-box-align: center; | |
| 128 | + -ms-flex-align: center; | |
| 129 | + align-items: center; | |
| 130 | + -webkit-column-gap: 5px; | |
| 131 | + -moz-column-gap: 5px; | |
| 132 | + column-gap: 5px; | |
| 133 | + color: #000000; | |
| 134 | + font-size: 17px; | |
| 135 | + font-weight: 500; | |
| 136 | + line-height: 1.143; | |
| 137 | +} | |
| 138 | +.sellkit-notice .sellkit-notice-partner-theme-body .btn-content .offer-price-section { | |
| 139 | + font-size: 14px; | |
| 140 | + text-align: center; | |
| 141 | +} | |
| 142 | +.sellkit-notice .sellkit-notice-partner-theme-body .btn-content .offer-price-section .offer-price-discount { | |
| 143 | + font-weight: 700; | |
| 144 | +} | |
| 145 | +.sellkit-notice .sellkit-notice-partner-theme-body .btn-content .offer-price { | |
| 146 | + text-decoration: line-through; | |
| 147 | +} | |
| 148 | +.sellkit-notice .sellkit-notice-attributes-list { | |
| 149 | + display: grid; | |
| 150 | + margin-top: 27px; | |
| 151 | + -webkit-column-gap: 20px; | |
| 152 | + -moz-column-gap: 20px; | |
| 153 | + column-gap: 20px; | |
| 154 | + grid-template-columns: repeat(3, 1fr); | |
| 155 | + row-gap: 10px; | |
| 156 | +} | |
| 157 | +.sellkit-notice .sellkit-notice-attributes-list > div { | |
| 158 | + display: -webkit-box; | |
| 159 | + display: -ms-flexbox; | |
| 160 | + display: flex; | |
| 161 | + -webkit-box-orient: horizontal; | |
| 162 | + -webkit-box-direction: normal; | |
| 163 | + -ms-flex-direction: row; | |
| 164 | + flex-direction: row; | |
| 165 | + -ms-flex-wrap: nowrap; | |
| 166 | + flex-wrap: nowrap; | |
| 167 | + -ms-flex-line-pack: center; | |
| 168 | + align-content: center; | |
| 169 | + -webkit-box-align: center; | |
| 170 | + -ms-flex-align: center; | |
| 171 | + align-items: center; | |
| 172 | + -webkit-column-gap: 5px; | |
| 173 | + -moz-column-gap: 5px; | |
| 174 | + column-gap: 5px; | |
| 175 | + font-size: 14px; | |
| 176 | + font-weight: 400; | |
| 177 | +} | |
| 178 | +.sellkit-notice .sellkit-notice-attributes-list > div img { | |
| 179 | + width: 15px; | |
| 180 | + height: 15px; | |
| 181 | +} | |
| 61 | 182 | |
| 62 | 183 | .sellkit-upgrade-to-pro { |
| 63 | 184 | display: -webkit-box; |
| 64 | 185 | display: -ms-flexbox; |