index.css 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. #nick, #message{
  2. border:1px solid green;
  3. border-radius: 5px;
  4. padding:10px;
  5. margin-bottom: 5px;
  6. background:whitesmoke;
  7. }
  8. .text{
  9. width:75%;
  10. display:flex;
  11. flex-direction:column;
  12. }
  13. .text > p:first-of-type{
  14. width:100%;
  15. margin-top:0;
  16. margin-bottom:auto;
  17. line-height: 13px;
  18. font-size: 12px;
  19. }
  20. .text > p:last-of-type{
  21. width:100%;
  22. text-align:right;
  23. color:silver;
  24. margin-bottom:-7px;
  25. margin-top:auto;
  26. }
  27. .text-l{
  28. float:left;
  29. padding-right:10px;
  30. }
  31. .text-r{
  32. float:right;
  33. padding-left:10px;
  34. }
  35. .frame{
  36. background:#e0e0de;
  37. height: 600px;
  38. overflow:hidden;
  39. padding:0;
  40. }
  41. .frame > div:last-of-type{
  42. position:absolute;
  43. bottom:0;width:100%;
  44. display:flex;
  45. }
  46. #get {
  47. width:100%;
  48. list-style-type: none;
  49. padding:18px;
  50. position:absolute;
  51. bottom:47px;
  52. display:flex;
  53. flex-direction: column;
  54. top:0;
  55. overflow-y:scroll;
  56. }
  57. #send {
  58. text-decoration: none;
  59. color: black;
  60. font-size: x-large;
  61. }
  62. input:focus{
  63. outline: none;
  64. }