Advertisement
Guest User

Untitled

a guest
Apr 26th, 2017
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.40 KB | None | 0 0
  1. .portaCopy.copyright.muted {
  2. display: none;
  3. }
  4.  
  5. #logoBlock #logo
  6. {
  7. float:none;
  8. text-align:center;
  9. }
  10. then click save and reload your server
  11. done
  12.  
  13. @media screen and (max-width: 800px) {
  14. .navTabs .navRight {
  15. visibility: hidden;
  16. display: none !important;
  17. }
  18. }
  19.  
  20. .navTabs .publicTabs {
  21. float: none !important;
  22. }
  23.  
  24. #ip, #players {
  25. font-size: 120%;
  26. color: #FFD045;
  27. font-weight: bold;
  28. text-transform: uppercase;
  29. }
  30.  
  31. .extraip:hover {
  32. background-color: transparent !important;
  33. }
  34.  
  35. .tooltip_ip {
  36. position: relative;
  37. display: inline-block;
  38. }
  39.  
  40. .tooltip_ip .tooltiptext_ip {
  41. visibility: hidden;
  42. width: 120px;
  43. background-color: black;
  44. color: #fff;
  45. text-align: center;
  46. border-radius: 6px;
  47. padding: 0px 0;
  48. position: absolute;
  49. z-index: 1;
  50. bottom: 150%;
  51. left: 50%;
  52. margin-left: -60px;
  53. }
  54.  
  55. .tooltip_ip .tooltiptext_ip::after {
  56. content: "";
  57. position: absolute;
  58. top: 100%;
  59. left: 50%;
  60. margin-left: -5px;
  61. border-width: 5px;
  62. border-style: solid;
  63. border-color: black transparent transparent transparent;
  64. }
  65.  
  66. .tooltip_ip:hover .tooltiptext_ip {
  67. visibility: visible;
  68. }
  69.  
  70. .tooltip_ip .tooltiptext_ip {
  71. opacity: 0;
  72. transition: opacity 1s;
  73. }
  74.  
  75. .tooltip_ip:hover .tooltiptext_ip {
  76. opacity: 1;
  77. }
  78.  
  79. .navTabs .navRight {
  80. float: right !important;
  81. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement