help.css 995 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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. @media screen and (max-width : 800px){
  10. section{
  11. max-height: 2em;
  12. width: 90%;
  13. }
  14. }
  15. section.selected{
  16. max-height: 30em;
  17. border-bottom-right-radius: 1.5em;
  18. border-bottom-left-radius: 1.5em;
  19. }
  20. @media screen and (max-width : 800px){
  21. section.selected{
  22. max-height: 50em;
  23. }
  24. }
  25. section h3{
  26. margin: 0;
  27. }
  28. @media screen and (max-width : 800px){
  29. section h3{
  30. margin: -0.8em -1em 0em -1em;
  31. }
  32. }
  33. section h3 img.slider{
  34. width: 1em;
  35. height: 1em;
  36. transition: all .3s ease-in-out;
  37. float: left;
  38. margin-left: -2em;
  39. }
  40. @media screen and (max-width : 800px){
  41. section h3 img.slider{
  42. margin-left: 0;
  43. margin-top: 0.1em;
  44. }
  45. }
  46. section.selected h3 img.slider{
  47. transform: rotate(90deg);
  48. }
  49. section p{
  50. margin: 1em 2em;
  51. }