You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
611 B

3 years ago
  1. .note-form {
  2. position: fixed;
  3. top: 0;
  4. left: 0;
  5. width: 100%;
  6. height: 100%;
  7. .panel {
  8. position: relative;
  9. z-index: 20;
  10. max-width: 33%;
  11. width: 100%;
  12. height: 100%;
  13. border-left: 0;
  14. border-top: 0;
  15. border-bottom: 0;
  16. }
  17. &:before {
  18. position: fixed;
  19. top: 0;
  20. left: 0;
  21. width: 100%;
  22. height: 100%;
  23. background-color: transparent;
  24. transition: background-color .5s;
  25. z-index: 19;
  26. content: "";
  27. background: rgba(0,0,0,.87);
  28. z-index: 0;
  29. }
  30. }