Simple PHP IRC web client using Ajax calls.

style.css 1015B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. @import url('https://fonts.googleapis.com/css2?family=Ubuntu+Mono&display=swap');
  2. html { height: 700px; }
  3. body {
  4. font-family: "Ubuntu Mono", Arial, sans-serif;
  5. font-size: 14px;
  6. background: #020202;
  7. color:#f3f3f3;
  8. margin: 0 auto;
  9. width: 730px;
  10. min-width: 730px;
  11. min-height: 700px;
  12. max-height: 700px;
  13. overflow: scroll;
  14. }
  15. .info {
  16. padding: 2px;
  17. font-size: 18px;
  18. text-align: center;
  19. }
  20. .logout { padding: 5px; text-align: center; }
  21. a {
  22. color: #0080ff;
  23. text-decoration: none;
  24. }
  25. a:hover {
  26. color: #0099ff;
  27. text-decoration: underline;
  28. }
  29. input, button, select, textarea{
  30. background-color: #222222;
  31. border: solid 1px #323232;
  32. outline: none;
  33. border-radius: 6px;
  34. color: #d7d7d7;
  35. padding: 4px;
  36. }
  37. .login {
  38. text-align: center;
  39. }
  40. .text { font-size: 14px; }
  41. #msgbox {
  42. background-color: #323232;
  43. border: solid 1px #454545;
  44. padding: 2px;
  45. margin: 0 auto;
  46. }
  47. #msgs {
  48. background-color: #323232;
  49. border: solid 1px #454545;
  50. padding: 8px;
  51. height: 420px;
  52. margin: 0 auto;
  53. overflow-y: scroll;
  54. }