| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- .font-bricolage {
- font-family: 'Bricolage Grotesque', sans-serif;
- }
- .ticket-card {
- background: url('/LotteryV2/img/Rectangle 132.svg') no-repeat center center;
- background-size: 100% 100%;
- padding: 15px 12px 20px 12px;
- position: relative;
- margin-top: 5px;
- margin-bottom: 5px;
- border: none;
- background-color: transparent !important;
- }
- .ball-circle {
- width: 30px;
- height: 30px;
- background: #EAEAEA;
- border-radius: 50%;
- display: flex;
- align-items: center;
- justify-content: center;
- font-weight: 900;
- font-size: 12px;
- color: #333;
- box-shadow: inset 0px -2px 4px rgba(0, 0, 0, 0.1);
- }
- .bg-green-main {
- background-color: #1AB13C;
- }
- .text-brown-main {
- color: #994900;
- }
- .ball-empty {
- background: #F3F4F6 !important;
- border: 1px solid #E5E7EB !important;
- box-shadow: inset 0px 2px 4px rgba(0, 0, 0, 0.05) !important;
- }
- .ball-filled {
- background: linear-gradient(135deg, #FF3D63 0%, #E3132D 60%, #BA0F21 100%) !important;
- border: 1px solid rgba(255, 255, 255, 0.3) !important;
- color: #ffffff !important;
- box-shadow: 0 4px 10px rgba(186, 15, 33, 0.3) !important;
- font-weight: 900 !important;
- text-shadow: 0px 1px 2px rgba(0,0,0,0.1);
- transform: scale(1.1);
- }
- .active-num {
- background: linear-gradient(135deg, #FF3D63 0%, #E3132D 60%, #BA0F21 100%) !important;
- border: none !important;
- box-shadow: 0 4px 8px rgba(186, 15, 33, 0.4) !important;
- }
- .ticket-index {
- background-color: #1AB13C !important;
- border: 3px solid #ffffff !important;
- color: #ffffff !important;
- box-shadow: 0 4px 10px rgba(26, 177, 60, 0.3) !important;
- }
- /* Custom scrollbar to match mobile feel */
- ::-webkit-scrollbar {
- display: none;
- }
|