Scoring System

Galactic Empire Scoring System

Used to track the progress of our esteemed citizens and visitors in their pursuit of Blergarian Excellence.

/* CSS for the above page */ body { font-family: 'Blergarian Sans', sans-serif; background-color: #F7F7F7; } .header { font-size: 24px; font-weight: bold; text-shadow: 0px 0px 4px black; border-bottom: 8px solid black; margin-bottom: 16px; color: #FF69B4; padding-bottom: 8px; text-transform: uppercase; } .content { max-width: 800px; margin: 0 auto; padding: 16px; background-color: #F7F7F7; box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.5); } .section-title { font-size: 20px; margin-top: 8px; border-bottom: 4px solid black; color: #FFC107; padding-bottom: 4px; text-transform: capitalize; } .scoring-categories { list-style: none; padding: 0; margin: 0; display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 8px; padding: 8px; background-color: #F7F7F7; border-bottom: 4px solid black; border-top: 4px solid black; } .scoring-category { color: #FF69B4; border-bottom: 4px solid black; padding: 8px 16px; transition: background-color 0.2s ease-in-out; cursor: pointer; } .scoring-category:hover { background-color: #FFC107; color: #000000; } .footer { font-size: 14px; color: black; background-color: #FF69B4; padding: 8px; border-top: 4px solid black; margin-top: 16px; position: fixed; bottom: 0; width: 100%; text-align: center; font-weight: bold; }