芝麻web文件管理V1.00
编辑当前文件:/home/qrafawbu/abrokyireboyz.com/tickets/styles.css
* { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: 'Arial', sans-serif; background-color: #f4f4f4; color: #333; } header { text-align: center; padding: 3rem 1rem; background-color: #000; color: #bbdbfa; } .hero-title { font-size: 3rem; font-weight: bold; margin-bottom: 0.5rem; } .hero-subtitle { font-size: 1.2rem; opacity: 0.9; } .event-container { display: flex; flex-wrap: wrap; justify-content: center; gap: 2rem; padding: 3rem 1rem; } .event-card { background-color: #fff; border-radius: 12px; box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); overflow: hidden; max-width: 300px; transition: transform 0.3s ease-in-out; } .event-card:hover { transform: translateY(-10px); } .event-image { width: 100%; height: 200px; object-fit: cover; } .event-title { font-size: 1.5rem; font-weight: bold; padding: 1rem; } .event-description { font-size: 0.8rem; /* Reduced the font size */ font-weight: normal; /* Adjusted the weight for better readability */ padding: 0.5rem; /* Reduced the padding to fit the smaller text */ } .event-date, .event-venue { padding: 0 1rem 1rem 1rem; font-size: 1rem; color: #555; } .btn { display: block; text-align: center; background-color: #000; color: #fff; text-decoration: none; padding: 0.75rem; font-size: 1rem; border-radius: 6px; margin: 1rem; transition: background-color 0.3s ease-in-out; } .btn:hover { background-color: #333; } footer { text-align: center; padding: 2rem 0; background-color: #000; color: #bbdbfa; font-size: 0.9rem; }