help.css 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. section.help{
  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.help{
  11. max-height: 2em;
  12. width: 90%;
  13. }
  14. }
  15. section.help.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.help.selected{
  22. max-height: 50em;
  23. }
  24. }
  25. section.help h3{
  26. margin: 0;
  27. }
  28. @media screen and (max-width : 800px){
  29. section.help h3{
  30. margin: -0.8em -1em 0em -1em;
  31. }
  32. }
  33. section.help 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.help h3 img.slider{
  42. margin-left: 0;
  43. margin-top: 0.1em;
  44. }
  45. }
  46. section.help.selected h3 img.slider{
  47. transform: rotate(90deg);
  48. }
  49. section.help div{
  50. margin: 1em 2em;
  51. }
  52. div#policy_cover{
  53. position: fixed;
  54. top: 0;
  55. left: 0;
  56. width: 100%;
  57. height: 100%;
  58. z-index: 99;
  59. background-color: #000000aa;
  60. display: none;
  61. }
  62. section#policy{
  63. position: fixed;
  64. top: 10%;
  65. left: 10%;
  66. width: 80%;
  67. height: 80%;
  68. z-index: 100;
  69. display: none;
  70. }
  71. section#policy h3 div#policy_close{
  72. float: right;
  73. cursor: pointer;
  74. }
  75. section#policy h3 div#policy_close img{
  76. height: 1.2em;
  77. width: 1.2em;
  78. }
  79. section#policy div{
  80. overflow-y: scroll;
  81. height: 90%;
  82. }
  83. section#policy div h1, section#policy div h2, section#policy div h3{
  84. all: revert;
  85. }
  86. section#policy div h3::before{
  87. all: revert;
  88. }