/* Love calculator container */ .love-calculator-container { text-align: center; background-color: #fff; border-radius: 10px; padding: 30px; box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1); width: 100%; max-width: 600px; margin: 20px auto; margin-bottom: 50px !important; margin-top: 50px !important; } /* Typography and labels */ .love-calculator-container h2 { font-size: 30px !important; color: #000 !important; margin-bottom: 15px !important; } .form-container label { display: block; font-size: 1em; margin-bottom: 8px; text-align: left; } /* Form inputs and button */ .form-container input { width: 100%; padding: 6px; margin-bottom: 25px; font-size: 1.1em; border: 2px solid #e60073; border-radius: 5px; background-color: #f9f9f9; } #calculateBtn { background-color: #e60073; color: white; border: none; padding: 10px 25px; font-size: 1.3em; border-radius: 5px; cursor: pointer; transition: all 0.3s ease; } #calculateBtn:hover { background-color: #ff0080; } /* Result container */ .result-container { display: none; margin-top: 40px; text-align: center; } .heart-icons { display: flex; justify-content: center; gap: 10px; margin-top: 20px; } .heart-icon { width: 40px; height: 40px; object-fit: contain; } .note { font-size: 14px !important; color: #888; margin-top: 20px; } /* Media queries for responsiveness */ @media screen and (max-width: 768px) { .love-calculator-container { width: 90%; padding: 20px; } .form-container input, #calculateBtn { width: 100%; font-size: 1.1em; } #love-percentage { font-size: 3em; } } [love_calculator]
/* Love calculator container */ .love-calculator-container { text-align: center; background-color: #fff; border-radius: 10px; padding: 30px; box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1); width: 100%; max-width: 600px; margin: 20px auto; margin-bottom: 50px !important; margin-top: 50px !important; } /* Typography and labels */ .love-calculator-container h2 { font-size: 30px !important; color: #000 !important; margin-bottom: 15px !important; } .form-container label { display: block; font-size: 1em; margin-bottom: 8px; text-align: left; } /* Form inputs and button */ .form-container input { width: 100%; padding: 6px; margin-bottom: 25px; font-size: 1.1em; border: 2px solid #e60073; border-radius: 5px; background-color: #f9f9f9; } #calculateBtn { background-color: #e60073; color: white; border: none; padding: 10px 25px; font-size: 1.3em; border-radius: 5px; cursor: pointer; transition: all 0.3s ease; } #calculateBtn:hover { background-color: #ff0080; } /* Result container */ .result-container { display: none; margin-top: 40px; text-align: center; } .heart-icons { display: flex; justify-content: center; gap: 10px; margin-top: 20px; } .heart-icon { width: 40px; height: 40px; object-fit: contain; } .note { font-size: 14px !important; color: #888; margin-top: 20px; } /* Media queries for responsiveness */ @media screen and (max-width: 768px) { .love-calculator-container { width: 90%; padding: 20px; } .form-container input, #calculateBtn { width: 100%; font-size: 1.1em; } #love-percentage { font-size: 3em; } } [love_calculator]