| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- form p {
- margin: 0;
- padding: 0.4em 0 0 7em;
- }
- form p input {
- background: #666;
- color: #fff;
- font-weight: bold;
- }
- div.error {
- clear: left;
- margin-left: 5.3em;
- color: red;
- padding-right: 1.3em;
- height: 100%;
- padding-bottom: 0.3em;
- line-height: 1.3;
- }
- .input-error {
- background: #ff9;
- border: 1px solid red;
- }
- .success_msg {
- width: 350px;
- line-height: 40px;
- border: 1px solid green;
- border-radius: 5px;
- background-color: rgba(213, 255, 187, 0.7);
- display: none;
- position: absolute;
- bottom: 5px;
- left: 50%;
- transform: translateX(-50%);
- z-index: 999;
- text-align: center;
- }
|