style.css 445 B

1234567891011121314151617181920212223242526272829303132333435
  1. window {
  2. background: transparent;
  3. }
  4. #input {
  5. background: #222;
  6. color: #FFF;
  7. border-radius: 0;
  8. border: 2px solid #33DD33;
  9. }
  10. #inner-box {
  11. background: #222;
  12. color: #FFF;
  13. max-height: 100%;
  14. border-bottom: 2px solid #33DD33;
  15. }
  16. #entry {
  17. border-left: 2px solid #33DD33;
  18. border-right: 2px solid #33DD33;
  19. }
  20. #scroll {
  21. }
  22. #entry:selected {
  23. background-color: #33DD33;
  24. border: none;
  25. outline: none;
  26. }
  27. #entry:selected #text {
  28. color: #222;
  29. }