Advertisement
rozalina1988

Chat Box

Feb 20th, 2023
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.43 KB | None | 0 0
  1. <style>
  2. *{
  3. box-sizing: border-box;
  4. margin: 0;
  5. padding: 0;
  6. font-family: Georgia, 'Times New Roman', Times, serif;
  7. }
  8.  
  9. h1, p, ul, body, html {
  10. margin: 0;
  11. }
  12.  
  13. .container {
  14. width: 100%;
  15. padding: 50px;
  16. background: rgb(110, 190, 237);
  17. display: flex;
  18. margin: 0;
  19. }
  20.  
  21. .box {
  22. position: relative;
  23. background: white;
  24. border-top-left-radius: 25px;
  25. border-top-right-radius: 25px;
  26. width: 70%;
  27. }
  28.  
  29. .box-header {
  30. width: 100%;
  31. background: rgb(24, 21, 23);
  32. }
  33.  
  34. .box-header-left {
  35. background: rgb(48, 43, 52);
  36. float: left;
  37. width: 100%;
  38. border-top-left-radius: 25px;
  39. border-top-right-radius: 25px;
  40.  
  41. }
  42.  
  43. .box-header-right {
  44. float: right;
  45. display: flex;
  46. position: absolute;
  47. margin-left: 80px;
  48. }
  49.  
  50. .img-user {
  51. width: 20%;
  52. margin: 10px;
  53. }
  54.  
  55. .username {
  56. color: white;
  57. font-size: large;
  58. text-align: center;
  59. margin: 50px;
  60. }
  61.  
  62. .Status {
  63. color: green;
  64. margin: 50px;
  65. }
  66.  
  67. .conteiner:after {
  68. content: "";
  69. clear: both;
  70. }
  71. </style>
  72. <body>
  73. <div class="container">
  74. <div class="box">
  75. <div class="box-header">
  76. <div class="box-header-left">
  77. <img class="img-user" src="/Homework3/Images/person-icon.png"
  78. alt="image not found"
  79. />
  80. </div>
  81.  
  82. <!--Username Status-->
  83. <div class="box-header-right">
  84. <div class="username">Georgi Petkov</div>
  85. <div class="Status">ONLINE</div>
  86. </div>
  87. <!--Username Status End-->
  88. </div>
  89.  
  90. <div class="box-body">
  91. <!--They-->
  92. <div class="they">
  93. <div class="they-left">
  94. <img class="chat-img" src="/Homework3/Images/person-icon.png"
  95. alt="image not found"
  96. />
  97. </div>
  98. <div class="they-right">
  99. <p class="they-msg">Здравейте, бих искал да попитам.....</p>
  100. <div class="time">15:15</div>
  101. </div>
  102. </div>
  103. <!--They end-->
  104.  
  105. <!--US-->
  106. </div>
  107. </div>
  108. </div>
  109.  
  110. </body>
  111.  
  112.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement