Advertisement
SarunoHadaki

Honkai: Star Rail Texting CSS

Sep 20th, 2024 (edited)
28
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 4.09 KB | None | 0 0
  1. #workskin .grid-container {
  2.   display: grid;
  3.   grid-template-columns: auto 60px 60px 60px 60px 60px auto;
  4.   padding: 10px;
  5. }
  6.  
  7. #workskin .grid-item {
  8.   padding: 10px;
  9.   text-align: center;
  10. }
  11.  
  12. #workskin img,
  13. #workskin .user-img,
  14. #workskin .otheruser-img {
  15.   width: auto;
  16.   height: 84px;
  17.   margin-top: 5px;
  18.   margin-bottom: 5px;
  19. }
  20.  
  21. #workskin .user-img,
  22. #workskin .otheruser-img {
  23.   margin-bottom: 2em;
  24. }
  25.  
  26. #workskin .user-img {
  27.   float: right;
  28. }
  29.  
  30. #workskin .contact {
  31.   color: black;
  32.   font-family: Arial;
  33.   font-weight: bold;
  34.   margin-bottom: -10px;
  35.   margin-top: -5px;
  36. }
  37.  
  38. #workskin body {
  39.   background-color: #3b292c;
  40. }
  41.  
  42. #workskin .messenger {
  43.   max-width: 300px;
  44.   margin: auto;
  45.   margin-bottom: 25px;
  46. }
  47.  
  48. #workskin .messagebody {
  49.   min-width: 320px;
  50.   max-height: 70vh;
  51.   background: linear-gradient(50deg, rgb(223 223 223), rgba(213, 213, 213, 0.949));
  52.   padding-left: .5em;
  53.   padding-right: .5em;
  54.   display: table;
  55.   border-radius: 0 1em 0 0;
  56.   overflow-y: scroll;
  57.   overflow-x: scroll;
  58. }
  59.  
  60. #workskin .header {
  61.   color: rgb(210 210 210);
  62.   font-size: 17px;
  63.   text-align: left;
  64.   margin: auto;
  65.   padding-left: 1rem;
  66.   padding-top: 1rem;
  67.   padding-bottom: .4rem;
  68.   margin-bottom: 1rem;
  69.   margin-left: -.5em;
  70.   margin-right: -.5em;
  71.   border-bottom: rgb(125 125 125) 1.5px solid;
  72.   border-radius: 0 1em 0 0;
  73. }
  74.  
  75. #workskin .otheruser-text {
  76.   float: left;
  77.   background: rgb(235 235 235);
  78.   box-shadow: -1px 1px rgb(125 125 125);
  79. }
  80.  
  81. #workskin .user-reply {
  82.   float: right;
  83.   background: rgb(210 185 140);
  84.   box-shadow: 1px 1px rgb(125 125 125);
  85. }
  86.  
  87. #workskin .user-messages p,
  88. #workskin .otheruser-messages p,
  89. #workskin .header p,
  90. #workskin .otheruser-icon p,
  91. #workskin .user-icon p,
  92. #workskin .alert p,
  93. #workskin .mini_img p {
  94.   margin: 0px;
  95.   padding: 0px;
  96. }
  97.  
  98. #workskin .otheruser-text,
  99. #workskin .user-reply {
  100.   font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
  101.   font-weight: bold;
  102.   color: #000;
  103.   max-width: 80%;
  104.   padding: .2em 1em;
  105.   clear: both;
  106.   position: relative;
  107.   font-size: 14px;
  108.   line-height: 1.2rem;
  109. }
  110.  
  111. #workskin .otheruser-text,
  112. #workskin .user-reply {
  113.   margin: 0 0 .5em;
  114.   margin-bottom: 1rem;
  115. }
  116.  
  117. #workskin .otheruser-text {
  118.   border-radius: 0 .5em .5em .5em;
  119. }
  120.  
  121. #workskin .otheruser-text,
  122. #workskin .user-reply {
  123.   margin-top: .8rem;
  124. }
  125.  
  126. #workskin .user-reply {
  127.   border-radius: .5em 0 .5em .5em;
  128. }
  129.  
  130. #workskin .fbhide {
  131.   display: none;
  132. }
  133.  
  134. #workskin .otheruser-name {
  135.   padding-top: 0;
  136.   margin-bottom: -2.5em;
  137.   display: table;
  138.   clear: both;
  139. }
  140.  
  141. #workskin .user-name {
  142.   padding-top: 0;
  143.   display: table;
  144.   margin-bottom: -2.5em;
  145.   margin-left: auto;
  146.   clear: both;
  147. }
  148.  
  149. #workskin .tagline,
  150. #workskin .alert,
  151. #workskin .otheruser-name,
  152. #workskin .user-name {
  153.   font-size: .8em;
  154.   font-family: Arial, Helvetica, sans-serif;
  155.   color: rgb(120 120 120);
  156.   font-weight: bold;
  157. }
  158.  
  159. #workskin .user-container {
  160.   display: grid;
  161.   grid-template-columns: auto 50px;
  162. }
  163.  
  164. #workskin .otheruser-container {
  165.   display: grid;
  166.   grid-template-columns: 50px auto;
  167. }
  168.  
  169. #workskin .otheruser-messages {
  170.   min-width: 220px;
  171. }
  172.  
  173. #workskin .otheruser-icon,
  174. #workskin .user-icon {
  175.   display: inline-block;
  176.   width: 40px;
  177. }
  178.  
  179. #workskin .user-icon {
  180.   margin-left: auto;
  181. }
  182.  
  183. #workskin .icon img {
  184.   border-radius: 50%;
  185.   width: 40px;
  186.   height: 40px;
  187.   background-color: rgb(50, 50, 50);
  188. }
  189.  
  190. #workskin .mini_img img {
  191.   width: 20px;
  192.   height: 20px;
  193.   margin: 0px;
  194.   padding: 0px;
  195. }
  196.  
  197. #workskin .hide {
  198.   display: none;
  199. }
  200.  
  201. #workskin br {
  202.   width: 1px;
  203. }
  204.  
  205. #workskin .alert {
  206.   margin-bottom: 1rem;
  207.   padding-top: .3rem;
  208.   padding-bottom: .3rem;
  209.   text-align: center;
  210.   font-size: 11px;
  211. }
  212.  
  213. #workskin .header,
  214. #workskin .tagline,
  215. #workskin .alert {
  216.   min-width: 300px;
  217. }
  218.  
  219. #workskin .tagline {
  220.   font-size: 12px;
  221.   padding-bottom: 0;
  222. }
  223.  
  224. #workskin .text-mini-summary {
  225.   font-size: 10px;
  226. }
  227.  
  228. #workskin .text-link {
  229.   color: rgb(156, 135, 102);
  230. }
  231.  
  232. #workskin .text-link:hover {
  233.   text-decoration: underline;
  234.   cursor: pointer;
  235. }
  236.  
  237. #workskin .mini-time {
  238.   font-size: 10px;
  239. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement