Advertisement
Guest User

Untitled

a guest
Jun 23rd, 2019
351
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.20 KB | None | 0 0
  1. .thread-data .post-block .post-user .user-avatar img,
  2. .profile-content .profile-left .profile-avatar-container img.loaded{
  3. border-radius: 8px;
  4. -webkit-border-radius: 8px;
  5.     -moz-border-radius: 8px;
  6.     -ms-border-radius: 8px;
  7.     -o-border-radius: 8px;
  8.    
  9.     border-width: 3px !important;
  10. }
  11.  
  12. .thread-data .post-block .post-content .post-title {
  13. margin-bottom: 8px !important;
  14. }
  15.  
  16.  
  17. .post-content .post-body {
  18.     padding-left: 15px !important;
  19. }
  20.  
  21. /*hide Post Hidden!*/
  22. .thread-data .post-block.deleted {
  23.     display: none !important;
  24. }
  25.  
  26.  
  27. .post-content  .post-title .username {
  28.         border-radius: 5px;
  29. }
  30.  
  31. /* change username font-weight */
  32. .thread-data .post-block .post-content .post-title a.username {
  33.     font-weight: 700 !important;
  34. }
  35.  
  36.  
  37. /* change online username icon */
  38. .online .fa-circle-o:before {
  39. content: ' ' !important;
  40. }
  41.  
  42. .online:before {
  43. font-family: FontAwesome;
  44.     content: "\f111";
  45.     display: inline-block;
  46.     font-size: 11px;
  47. }
  48.  
  49.  
  50. /* quote style
  51. -------------------*/
  52.  
  53. .quoteHeader {
  54. border:0;
  55. margin: 0.4rem 0 0 0;
  56. }
  57.  
  58. .quote {
  59. border-left: 2px solid #d3d3d3 !important;
  60. margin: 0 0 0.6rem 0.6rem;
  61. padding: 0 0.6rem !important;
  62. }
  63.  
  64. .quoteHeader a {
  65. color: #afafaf !important;
  66. font-size: 14px !important;
  67. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement