_form.scss 460 B

12345678910111213141516171819202122232425262728293031323334
  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. input::-webkit-input-placeholder {
  12. color: #ccc;
  13. }
  14. input:-moz-placeholder {
  15. color: #ccc;
  16. }
  17. .form-maximized {
  18. position: absolute;
  19. background: #fff;
  20. top: 0;
  21. left: 0;
  22. margin: 0;
  23. padding: 0;
  24. width: 100%;
  25. height: 100%;
  26. z-index: 100;
  27. -webkit-transition: opacity 1s linear;
  28. }