/* MASTERY */ .mastery > div { max-width: 600px; width: 95vw; } .mastery .mastery-input-container { background-color: var(--primary-light); padding: 12px; border-radius: 15px; } .mastery .mastery-input-container input { width: 100%; border: none; border-bottom: 2px solid var(--primary-dark); background-color: transparent; padding: 5px; } .horizontal-button-panel { margin-top: 10px; display: flex; gap: 10px; width: 100%; } .horizontal-button-panel > * { height: 60px; min-width: 60px; border-radius: 15px; font-size: 18px; font-weight: 600; } /* MULTIPLE CHOICE */ .mc > div { max-width: 800px; width: 95vw; } .mc-answers { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; } .mc-answers > button { background-color: var(--frosted-glass); min-height: 100px; padding: 20px; box-sizing: border-box; border-radius: 15px; font-size: 18px; font-weight: 600; color: white; transition: background-color 0.5s ease, color 0.5s ease; } .mc-answers > button:hover { background-color: var(--primary-light); color: black; transition: background-color 0.1s ease, color 0.1s ease; } /* LEARN */ .learn > div { max-width: 600px; width: 95vw; } .learn button { margin-top: 20px; background-color: var(--frosted-glass); height: 60px; width: 150px; border-radius: 15px; font-size: 18px; font-weight: 600; color: white; } /* FLASHCARDS */ .flashcard { position: relative; } /* .flashcard > h3 { height: 100%; width: 100%; display: flex; align-items: center; justify-content: center; } */ .remove-btn { position: fixed; top: -50px; right: 50px; background: url('assets/deny.svg'); background-size: cover; } .edit-btn { position: fixed; top: -50px; right: 0; background: url('assets/Pencil.svg'); background-size: cover; } .flashcard-hover-btn { height: 30px; width: 30px; transition: transform 0.5s, opacity 0.5s ease-in-out; transform: scale(1); opacity: 0.5; } .flashcard-hover-btn:hover { transform: scale(1.1); opacity: 0.75; } .flashcard-hover-btn.active { transform: scale(1.2); opacity: 1; } @media (max-width: 500px) { :root { --padding: 5px !important; } .mc-answers { grid-template-columns: 1fr; } #mc-question { text-align: center; } }