_form.scss 364 B

1234567891011121314151617181920212223242526
  1. .form-full {
  2. width: 99%;
  3. }
  4. textarea {
  5. font-family: menlo, monaco, consolas, monospace;
  6. line-height: 1.1em;
  7. }
  8. textarea.form-body-height {
  9. height: 300px;
  10. }
  11. .form-maximized {
  12. position: absolute;
  13. background: #fff;
  14. top: 0;
  15. left: 0;
  16. margin: 0;
  17. padding: 0;
  18. width: 100%;
  19. height: 100%;
  20. z-index: 100;
  21. -webkit-transition: opacity 1s linear;
  22. }