Advertisement
CodeHz

v2ex

Jun 28th, 2018
422
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.01 KB | None | 0 0
  1. * {
  2. border-radius: 0 !important;
  3. }
  4.  
  5. body {
  6. background-image: url(https://bing.ioliu.cn/v1?w=1920&h=1080) !important;
  7. background-attachment: fixed !important;
  8. background-size: cover !important;
  9. }
  10.  
  11. #Wrapper {
  12. background: none;
  13. }
  14.  
  15. body {
  16. background: #e2e2e2;
  17. }
  18.  
  19. .topic_buttons {
  20. background: #eee;
  21. }
  22.  
  23. #Search > form > div {
  24. background-image: none !important;
  25. background-color: rgba(0, 0, 0, 0.1) !important;
  26. }
  27.  
  28. #q {
  29. width: 100% !important;
  30. box-sizing: border-box !important;
  31. padding: 0 10px !important;
  32. margin: 0 !important;
  33. }
  34. #userInfo{
  35. background: rgba(255, 255, 255, 0.8) !important;
  36. z-index: 10;
  37. }
  38. #userInfo::after {
  39. position: absolute;
  40. content: '';
  41. top: 0;
  42. left: 0;
  43. right: 0;
  44. bottom: 0;
  45. backdrop-filter: blur(10px);
  46. box-shadow: 0 0 20px white inset;
  47. }
  48. #userInfo>div {
  49. background: none !important;
  50. color: black !important;
  51. }
  52. #userInfo>img {
  53. display: none;
  54. }
  55. #userInfo>* {
  56. position: relative;
  57. z-index: 1;
  58. }
  59. #Top,
  60. #Bottom,
  61. .box {
  62. background-color: white !important;
  63. position: relative !important;
  64. border: none !important;
  65. overflow: hidden;
  66. }
  67.  
  68. #Top,
  69. #Bottom,
  70. #Main,
  71. #Rightbar {
  72. box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5)!important;
  73. }
  74. #Wrapper {
  75. padding: 20px;
  76. }
  77.  
  78. .box {
  79. box-shadow: none !important;
  80. }
  81.  
  82. #Top > *,
  83. .box > * {
  84. position: relative !important;
  85. z-index: 1;
  86. mix-blend-mode: multiply;
  87. }
  88.  
  89. #Top::after,
  90. #Bottom::after,
  91. .box::after {
  92. content: '';
  93. position: absolute;
  94. top: 0;
  95. left: 0;
  96. right: 0;
  97. bottom: 0;
  98. background-image: url(https://bing.ioliu.cn/v1?w=1920&h=1080) !important;
  99. background-attachment: fixed !important;
  100. background-size: cover !important;
  101. filter: saturate(300%) blur(20px);
  102. margin: -20px;
  103. opacity: 0.1;
  104. z-index: 0;
  105. transition: all .5s ease;
  106. mix-blend-mode: hard-light;
  107. }
  108.  
  109. input.button {
  110. background: #eee !important;
  111. box-shadow: none !important;
  112. border: none !important;
  113. text-shadow: none !important;
  114. font-weight: normal !important;
  115. }
  116. input.button.super {
  117. color: white;
  118. background: #777 !important;
  119. }
  120. .sep20 {
  121. height: 0
  122. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement