| 12345678910111213141516171819202122232425262728293031323334 |
- .form-full {
- width: 99%;
- }
- textarea {
- font-family: menlo, monaco, consolas, monospace;
- line-height: 1.1em;
- }
- textarea.form-body-height {
- height: 300px;
- }
- input::-webkit-input-placeholder {
- color: #ccc;
- }
- input:-moz-placeholder {
- color: #ccc;
- }
- .form-maximized {
- position: absolute;
- background: #fff;
- top: 0;
- left: 0;
- margin: 0;
- padding: 0;
- width: 100%;
- height: 100%;
- z-index: 100;
- -webkit-transition: opacity 1s linear;
- }
|