1
0

main.css 881 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. .container {
  2. max-width: 820px;
  3. }
  4. .container > footer p {
  5. text-align: center; /* center align it with the container */
  6. }
  7. .brand.navbar-brand {
  8. color: white;
  9. }
  10. /* Give a quick and non-cross-browser friendly divider */
  11. .content .sidebar {
  12. border-left: 1px solid #eee;
  13. }
  14. #cardForm input[type="text"] {
  15. width: 200px;
  16. }
  17. #username {
  18. width: 200px;
  19. }
  20. #messages {
  21. overflow-y: scroll;
  22. }
  23. #messages table {
  24. width: 100%;
  25. }
  26. .message {
  27. border-bottom: 1px solid #eee;
  28. vertical-align: top;
  29. }
  30. .message td {
  31. padding: 4px;
  32. }
  33. .message .user {
  34. width: 80px;
  35. overflow: hidden;
  36. text-align: right;
  37. font-weight: bold;
  38. }
  39. .message.me {
  40. background: #FFC;
  41. }
  42. .message.gm {
  43. background: #D9FBE7;
  44. }
  45. .message.join, .message.quit {
  46. background: #D9E7FB;
  47. }
  48. #login {
  49. text-align: center;
  50. padding-top: 100px;
  51. height: 300px;
  52. }