Advertisement
Level4

DB custom background, button and main mneu text

Jun 11th, 2022 (edited)
157
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.68 KB | None | 0 0
  1. For this to work we're gonna a chrome extension called "Amino live CSS editor" there are other extensions but this the simplest to use.
  2.  
  3. After you've installed the extension and made an account go to Duelingbook then press the amino icon in the top right then press 'site'. After you've done that paste this code in there. (continued after the code)
  4.  
  5. :root {
  6.    --background: url("https://via.placeholder.com/1920x1080");
  7.    --background-width: 1500px;
  8.    --background-left: -150px;
  9.    --background-brightness: 62%;
  10.    --MainMenuText: "wow cool text here";
  11.    --button: url("https://i.imgur.com/XhWC4pb.png");
  12. }
  13.  
  14. #circuit_board{
  15.    content: var(--background);
  16.    width: var(--background-width);
  17.    left: var(--background-left);
  18. }
  19.  
  20. #greenlines,
  21. #circuit_cover {
  22.    display: none !important;
  23. }
  24.  
  25. #dark {
  26.    opacity: var(--background-brightness);
  27. }
  28.  
  29.  
  30. [src$="/menu_btn_up.svg"],
  31. [src$="/menu_btn_over.svg"],
  32. [src$="/menu_btn_down.svg"] {
  33.    content: var(--button);
  34. }
  35.  
  36. #main_menu>.arial_black2.title1 {
  37.    font-size: 0;
  38. }
  39.  
  40. #main_menu>.arial_black2.title1::before {
  41.    content: var(--MainMenuText);
  42.    font-size: 40px;
  43. }
  44.  
  45.  
  46. You might have to change around some values since people have different monitors and or different tastes.
  47.  
  48. If you want a custom button you'll need to go to the imgur link download it then use an image editing tool to edit it to your liking then upload it to either discord or imgur copy the link then replace the button url at the top.
  49.  
  50. alternatively you could ask me but that could take a bit longer since you'll have to provide me with the assets (if any) that you want me to use.
  51.  
  52. Enjoy the background!
  53.  
  54. Sincerely,
  55.  
  56. Level 4#2003  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement