|
174 | 174 | .ex3f-button-buy-now:active { |
175 | 175 | transform: scale(0.95); |
176 | 176 | } |
| 177 | + |
| 178 | +/* Advanced Button Styles */ |
| 179 | +.advanced-buttons { |
| 180 | + display: flex; |
| 181 | + flex-direction: column; |
| 182 | + gap: 20px; |
| 183 | +} |
| 184 | + |
| 185 | +.primary-button { |
| 186 | + background-color: rgb(0, 123, 255); |
| 187 | + color: white; |
| 188 | + border: none; |
| 189 | + padding: 10px 20px; |
| 190 | + border-radius: 5px; |
| 191 | + cursor: pointer; |
| 192 | + transition: background-color 0.15s; |
| 193 | +} |
| 194 | +.primary-button:hover { |
| 195 | + background-color: rgb(0, 105, 217); |
| 196 | +} |
| 197 | + |
| 198 | +.secondary-button { |
| 199 | + background-color: rgb(108, 117, 125); |
| 200 | + color: white; |
| 201 | + border: none; |
| 202 | + padding: 10px 20px; |
| 203 | + border-radius: 5px; |
| 204 | + cursor: pointer; |
| 205 | + transition: background-color 0.15s; |
| 206 | +} |
| 207 | +.secondary-button:hover { |
| 208 | + background-color: rgb(90, 98, 105); |
| 209 | +} |
| 210 | + |
| 211 | +.danger-button { |
| 212 | + background-color: rgb(220, 53, 69); |
| 213 | + color: white; |
| 214 | + border: none; |
| 215 | + padding: 10px 20px; |
| 216 | + border-radius: 5px; |
| 217 | + cursor: pointer; |
| 218 | + transition: background-color 0.15s; |
| 219 | +} |
| 220 | +.danger-button:hover { |
| 221 | + background-color: rgb(200, 35, 51); |
| 222 | +} |
| 223 | + |
| 224 | +.outline-button { |
| 225 | + background-color: transparent; |
| 226 | + color: rgb(108, 117, 125); |
| 227 | + border: 2px solid rgb(108, 117, 125); |
| 228 | + padding: 10px 20px; |
| 229 | + border-radius: 5px; |
| 230 | + cursor: pointer; |
| 231 | + transition: background-color 0.15s, color 0.15s; |
| 232 | +} |
| 233 | +.outline-button:hover { |
| 234 | + background-color: rgb(108, 117, 125); |
| 235 | + color: white; |
| 236 | +} |
| 237 | + |
| 238 | +.rounded-button { |
| 239 | + background-color: rgb(40, 167, 69); |
| 240 | + color: white; |
| 241 | + border: none; |
| 242 | + padding: 10px 20px; |
| 243 | + border-radius: 50px; |
| 244 | + cursor: pointer; |
| 245 | + transition: background-color 0.15s; |
| 246 | +} |
| 247 | +.rounded-button:hover { |
| 248 | + background-color: rgb(30, 140, 55); |
| 249 | +} |
| 250 | + |
| 251 | +.icon-button { |
| 252 | + background-color: rgb(23, 162, 184); |
| 253 | + color: white; |
| 254 | + border: none; |
| 255 | + padding: 10px 20px; |
| 256 | + border-radius: 5px; |
| 257 | + cursor: pointer; |
| 258 | + display: flex; |
| 259 | + align-items: center; |
| 260 | + gap: 5px; |
| 261 | + transition: background-color 0.15s; |
| 262 | +} |
| 263 | +.icon-button:hover { |
| 264 | + background-color: rgb(19, 140, 160); |
| 265 | +} |
| 266 | + |
| 267 | +.gradient-button { |
| 268 | + background: linear-gradient(45deg, rgb(255, 0, 150), rgb(255, 102, 0)); |
| 269 | + color: white; |
| 270 | + border: none; |
| 271 | + padding: 10px 20px; |
| 272 | + border-radius: 5px; |
| 273 | + cursor: pointer; |
| 274 | + transition: opacity 0.15s; |
| 275 | +} |
| 276 | +.gradient-button:hover { |
| 277 | + opacity: 0.9; |
| 278 | +} |
| 279 | + |
| 280 | +.disabled-button { |
| 281 | + background-color: rgb(108, 117, 125); |
| 282 | + color: white; |
| 283 | + border: none; |
| 284 | + padding: 10px 20px; |
| 285 | + border-radius: 5px; |
| 286 | + cursor: not-allowed; |
| 287 | + opacity: 0.65; |
| 288 | +} |
| 289 | + |
| 290 | +/* Pulse Button */ |
| 291 | +.pulse-button { |
| 292 | + background-color: rgb(0, 123, 255); |
| 293 | + color: white; |
| 294 | + border: none; |
| 295 | + padding: 10px 20px; |
| 296 | + border-radius: 5px; |
| 297 | + cursor: pointer; |
| 298 | + animation: pulse 2s infinite; |
| 299 | +} |
| 300 | +@keyframes pulse { |
| 301 | + 0%, |
| 302 | + 100% { |
| 303 | + transform: scale(1); |
| 304 | + } |
| 305 | + 50% { |
| 306 | + transform: scale(1.1); |
| 307 | + } |
| 308 | +} |
| 309 | + |
| 310 | +/* Slide Button */ |
| 311 | +.slide-button { |
| 312 | + background-color: rgb(40, 167, 69); |
| 313 | + color: white; |
| 314 | + border: none; |
| 315 | + padding: 10px 20px; |
| 316 | + border-radius: 5px; |
| 317 | + cursor: pointer; |
| 318 | + overflow: hidden; |
| 319 | + position: relative; |
| 320 | +} |
| 321 | +.slide-button::after { |
| 322 | + content: ""; |
| 323 | + position: absolute; |
| 324 | + top: 0; |
| 325 | + left: -100%; |
| 326 | + width: 100%; |
| 327 | + height: 100%; |
| 328 | + background-color: rgba(0, 0, 0, 0.1); |
| 329 | + transition: left 0.3s; |
| 330 | +} |
| 331 | +.slide-button:hover::after { |
| 332 | + left: 0; |
| 333 | +} |
| 334 | + |
| 335 | +/* Flip Button */ |
| 336 | +.flip-button { |
| 337 | + background-color: rgb(220, 53, 69); |
| 338 | + color: white; |
| 339 | + border: none; |
| 340 | + padding: 10px 20px; |
| 341 | + border-radius: 5px; |
| 342 | + cursor: pointer; |
| 343 | + perspective: 1000px; |
| 344 | +} |
| 345 | +.flip-button:hover { |
| 346 | + transform: rotateY(180deg); |
| 347 | + transition: transform 0.6s; |
| 348 | +} |
| 349 | + |
| 350 | +/* Glow Button */ |
| 351 | +.glow-button { |
| 352 | + background-color: rgb(23, 162, 184); |
| 353 | + color: white; |
| 354 | + border: none; |
| 355 | + padding: 10px 20px; |
| 356 | + border-radius: 5px; |
| 357 | + cursor: pointer; |
| 358 | + box-shadow: 0 0 5px rgb(23, 162, 184); |
| 359 | + transition: box-shadow 0.3s; |
| 360 | +} |
| 361 | +.glow-button:hover { |
| 362 | + box-shadow: 0 0 20px rgb(23, 162, 184); |
| 363 | +} |
| 364 | + |
| 365 | +/* Ripple Button */ |
| 366 | +.ripple-button { |
| 367 | + background-color: rgb(255, 102, 0); |
| 368 | + color: white; |
| 369 | + border: none; |
| 370 | + padding: 10px 20px; |
| 371 | + border-radius: 5px; |
| 372 | + cursor: pointer; |
| 373 | + position: relative; |
| 374 | + overflow: hidden; |
| 375 | +} |
| 376 | +.ripple-button:active::after { |
| 377 | + content: ""; |
| 378 | + position: absolute; |
| 379 | + width: 100px; |
| 380 | + height: 100px; |
| 381 | + background: rgba(255, 255, 255, 0.5); |
| 382 | + border-radius: 50%; |
| 383 | + transform: scale(0); |
| 384 | + opacity: 1; |
| 385 | + animation: ripple-effect 0.6s ease-out; |
| 386 | + pointer-events: none; |
| 387 | + top: 50%; |
| 388 | + left: 50%; |
| 389 | + transform: translate(-50%, -50%) scale(0); |
| 390 | +} |
| 391 | +@keyframes ripple-effect { |
| 392 | + to { |
| 393 | + transform: translate(-50%, -50%) scale(4); |
| 394 | + opacity: 0; |
| 395 | + } |
| 396 | +} |
0 commit comments