| @import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap'); |
|
|
| .poll-widget *{ |
| margin: 0; |
| padding: 0; |
| box-sizing: border-box; |
| font-family: 'Noto Sans'; |
| } |
|
|
| .poll-widget-container-a1b2c, |
| .polls-widget-container-a1b2c { |
| margin: 10px; |
| } |
|
|
| .container-a1b2c { |
| display: flex; |
| flex-direction: column; |
| gap: 15px; |
| border: 1px solid gray; |
| border-radius: 8px; |
| max-width: 500px; |
| margin: auto; |
| } |
|
|
| .top-section-a1b2c { |
| background-color: #dd8e18; |
| display: flex; |
| gap: 24px; |
| align-items: center; |
| justify-content: space-between; |
| padding: 28px; |
| padding-top: 4px; |
| padding-bottom: 4px; |
| border-top-left-radius: 8px; |
| border-top-right-radius: 8px; |
|
|
| } |
|
|
| .top-left-section-a1b2c { |
| display: flex; |
| align-items: center; |
| } |
|
|
| .top-left-section-heading-a1b2c { |
| font-size: 22px; |
| font-weight: 600; |
| color: #fff; |
| } |
|
|
| .bottom-section-a1b2c { |
| display: flex; |
| flex-direction: column; |
| gap: 6px; |
| padding-right: 20px; |
| padding-left: 8px; |
| |
| } |
|
|
| .poll-question-a1b2c { |
| font-size: 16px; |
| margin-bottom: 5px; |
| line-height: 1.3; |
| width: 100%; |
| display: flex; |
| align-items: center; |
| padding-left: 16px; |
|
|
| } |
|
|
| .poll-options-a1b2c { |
| list-style-type: none; |
| display: flex; |
| flex-direction: column; |
| gap: 14px; |
| justify-content: center; |
| padding-left: 16px; |
| } |
|
|
| .poll-option-button-a1b2c { |
| padding: 5px 16px; |
| border: 1px solid gray; |
| border-radius: 8px; |
| width: 100%; |
| min-width: 100px; |
| font-size: 14px; |
| font-weight: 600; |
| cursor: pointer; |
| text-align: left; |
| background: 0 0; |
| font-family: noto sans; |
| } |
|
|
| .view-result-button-container-a1b2c { |
| display: flex; |
| justify-content: center; |
| align-items: center; |
| } |
|
|
| .results-footer-a1b2c { |
| display: flex; |
| justify-content: space-between; |
| align-items: center; |
| margin-bottom: 16px; |
| padding: 0 10px; |
| } |
|
|
| #view-result-a1b2c, |
| #return-to-poll-a1b2c { |
| border: 0; |
| background: transparent; |
| font-family: 'Noto Sans'; |
| font-size: 14px; |
| font-weight: 600; |
| color: rgb(91, 89, 89); |
| cursor: pointer; |
| } |
|
|
| .error-message-a1b2c { |
| color: red; |
| font-size: 14px; |
| text-align: center; |
| margin-top: 6px; |
| } |
|
|
| .voting-result-container-a1b2c { |
| display: flex; |
| flex-direction: column; |
| width: 100%; |
| padding-left: 16px; |
| align-items: center; |
| border-radius: 8px; |
| gap: 16px; |
| } |
|
|
| .voting-result-a1b2c { |
| display: flex; |
| flex-direction: column; |
| gap: 8px; |
| width: 100%; |
| } |
|
|
| .voting-result-text-container-a1b2c { |
| display: flex; |
| justify-content: space-between; |
| align-items: baseline; |
| } |
|
|
| .voting-result-right-text-container-a1b2c { |
| display: flex; |
| gap: 8px; |
| align-items: center; |
| } |
|
|
| .voting-result-left-text-a1b2c { |
| font-size: 14px; |
| } |
|
|
| .voting-result-left-text2-a1b2c { |
| font-size: 14px; |
| } |
|
|
| .voting-result-vote-count-a1b2c { |
| font-size: 12px; |
| color: rgb(153, 153, 153); |
| } |
|
|
| progress { |
| border: none; |
| width: 100%; |
| height: 8px; |
| background: crimson; |
| border-radius: 20px; |
| } |
|
|
| progress::-webkit-progress-value { |
| background: #dd8e18; |
| border-radius: 20px; |
| } |
|
|
| progress::-webkit-progress-bar { |
| background: rgb(234, 231, 231); |
| border-radius: 20px; |
| } |
|
|
| hr.divider-a1b2c { |
| border-width: 1px; |
| margin-top: 10px; |
| } |
|
|
| .total-votes-a1b2c { |
| font-weight: bold; |
| font-size: 14px; |
| } |
|
|