Advertisement
Guest User

Untitled

a guest
Aug 22nd, 2019
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.13 KB | None | 0 0
  1. !function TSSRN25() {
  2. var x = document.getElementById("numoutstandingrn");
  3. var option = document.createElement("option");
  4. option.text = "Latest 25 RN";
  5. option.value = "25"
  6. x.add(option, x[1]);
  7. }()
  8. !function TSSRN75() {
  9. var x = document.getElementById("numoutstandingrn");
  10. var option = document.createElement("option");
  11. option.text = "Latest 75 RN";
  12. option.value = "75"
  13. x.add(option, x[3]);
  14. }()
  15. !function TSSRNRD() {
  16. var rdv = Math.floor((Math.random() * 1000) + 1);
  17. var x = document.getElementById("numoutstandingrn");
  18. var option = document.createElement("option");
  19. option.text = "Suprise Amount of RN";
  20. option.value = rdv
  21. x.add(option, x[5]);
  22. }()
  23.  
  24. table.table {
  25. width: 100% !important;
  26. }
  27. .alert {
  28. font-weight: bold;
  29. font-size: large;
  30. text-align: center;
  31. }
  32. body {
  33. background: linear-gradient(to bottom, #404040 0%,#0d0d0d 46%,#010101 50%,#0a0a0a 53%,#4e4e4e 96%,#383838 98%,#1b1b1b 100%);
  34. }
  35. tr.even {
  36. background: rgba(0, 0, 0, 0.25);
  37. }
  38. tr.filters {
  39. background: rgba(255, 255, 255, 0.25);
  40. }
  41. tr {
  42. background: rgba(0, 0, 0, 0.5);
  43. }
  44. .dropdown-menu {
  45. background-color: rgba(0, 0, 0, 0.75)
  46. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement