style.css 407 B

1234567891011121314151617181920212223242526
  1. #passwordText, #plainText, #cipherText, #codeText {
  2. font-family: monospace;
  3. color: black;
  4. font-size: 14px;
  5. width: 555px;
  6. }
  7. #plainText {
  8. background-color: #e1ffe1;
  9. }
  10. #cipherText {
  11. background-color: #ffe1e1;
  12. }
  13. #codeText {
  14. background-color: #e1e1ff;
  15. }
  16. #encryptedTest {
  17. border: 1px solid gray;
  18. }
  19. #passwordText {
  20. background-color: #ffffe1;
  21. margin-bottom: 0.5em;
  22. padding: 3px;
  23. }