You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For the media query width <= 1050), the CSS selector (here) blockquote .sidenote (specifity 0-1-1) is never going to affect the width and margin-right of the sidenotes, because of the selector .sidenote-toggle:checked + .sidenote (here, with specificity 0-3-0), when the input is checked.
But when the input is not checked, the sidenote is not displayed (because media query width <= 1050)), so it doesn't makes much sense.
Also left: 1rem has no effect here, because the position is static.
The text was updated successfully, but these errors were encountered:
For the media query
width <= 1050)
, the CSS selector (here)blockquote .sidenote
(specifity 0-1-1) is never going to affect thewidth
andmargin-right
of the sidenotes, because of the selector.sidenote-toggle:checked + .sidenote
(here, with specificity 0-3-0), when theinput
is checked.But when the
input
is not checked, the sidenote is not displayed (because media querywidth <= 1050)
), so it doesn't makes much sense.Also
left: 1rem
has no effect here, because the position is static.The text was updated successfully, but these errors were encountered: