help.css 569 B

1234567891011121314151617181920212223242526272829
  1. section{
  2. padding: 0;
  3. max-height: 2.8em;
  4. overflow-y: hidden;
  5. border-bottom-right-radius: 0.5em;
  6. border-bottom-left-radius: 0.5em;
  7. transition: all .5s ease-in-out;
  8. }
  9. section.selected{
  10. max-height: 30em;
  11. border-bottom-right-radius: 1.5em;
  12. border-bottom-left-radius: 1.5em;
  13. }
  14. section h3{
  15. margin: 0;
  16. }
  17. section h3 img.slider{
  18. width: 1em;
  19. height: 1em;
  20. transition: all .3s ease-in-out;
  21. float: left;
  22. margin-left: -2em;
  23. }
  24. section.selected h3 img.slider{
  25. transform: rotate(90deg);
  26. }
  27. section p{
  28. margin: 1em 2em;
  29. }