buy-ticket.css 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. .font-bricolage {
  2. font-family: 'Bricolage Grotesque', sans-serif;
  3. }
  4. .ticket-card {
  5. background: url('/LotteryV2/img/Rectangle 132.svg') no-repeat center center;
  6. background-size: 100% 100%;
  7. padding: 15px 12px 20px 12px;
  8. position: relative;
  9. margin-top: 5px;
  10. margin-bottom: 5px;
  11. border: none;
  12. background-color: transparent !important;
  13. }
  14. .ball-circle {
  15. width: 30px;
  16. height: 30px;
  17. background: #EAEAEA;
  18. border-radius: 50%;
  19. display: flex;
  20. align-items: center;
  21. justify-content: center;
  22. font-weight: 900;
  23. font-size: 12px;
  24. color: #333;
  25. box-shadow: inset 0px -2px 4px rgba(0, 0, 0, 0.1);
  26. }
  27. .bg-green-main {
  28. background-color: #1AB13C;
  29. }
  30. .text-brown-main {
  31. color: #994900;
  32. }
  33. .ball-empty {
  34. background: #F3F4F6 !important;
  35. border: 1px solid #E5E7EB !important;
  36. box-shadow: inset 0px 2px 4px rgba(0, 0, 0, 0.05) !important;
  37. }
  38. .ball-filled {
  39. background: linear-gradient(135deg, #FF3D63 0%, #E3132D 60%, #BA0F21 100%) !important;
  40. border: 1px solid rgba(255, 255, 255, 0.3) !important;
  41. color: #ffffff !important;
  42. box-shadow: 0 4px 10px rgba(186, 15, 33, 0.3) !important;
  43. font-weight: 900 !important;
  44. text-shadow: 0px 1px 2px rgba(0,0,0,0.1);
  45. transform: scale(1.1);
  46. }
  47. .active-num {
  48. background: linear-gradient(135deg, #FF3D63 0%, #E3132D 60%, #BA0F21 100%) !important;
  49. border: none !important;
  50. box-shadow: 0 4px 8px rgba(186, 15, 33, 0.4) !important;
  51. }
  52. .ticket-index {
  53. background-color: #1AB13C !important;
  54. border: 3px solid #ffffff !important;
  55. color: #ffffff !important;
  56. box-shadow: 0 4px 10px rgba(26, 177, 60, 0.3) !important;
  57. }
  58. /* Custom scrollbar to match mobile feel */
  59. ::-webkit-scrollbar {
  60. display: none;
  61. }