Advertisement
Guest User

Untitled

a guest
Oct 18th, 2019
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. * {
  2. font-family: 'Lato', sans-serif;
  3. }
  4.  
  5. .container {
  6. display: flex;
  7. flex-direction: column;
  8. justify-content: center;
  9. align-items: center
  10. }
  11.  
  12. .accordion {
  13. cursor: pointer;
  14. padding: 18px;
  15. text-align: left;
  16. border-radius: 20px;
  17. font-size: 1.2rem;
  18. font-weight: bold;
  19. outline: 0;
  20. span {
  21. float: right;
  22. }
  23. }
  24.  
  25. .open {
  26. display: block;
  27. height: auto;
  28. border-radius: 20px;
  29. border: 0.5px solid rgb(199, 197, 197);
  30. width: 200px;
  31. }
  32.  
  33. p {
  34. padding: 18px;
  35. }
  36.  
  37. .close {
  38. display: none;
  39. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement