jamescolin

LA BIO DE TON PÈRE

Nov 14th, 2021 (edited)
153
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.10 KB | None | 0 0
  1. <script>
  2. var biobio = document.createElement("div");
  3. biobio.innerHTML = '<nav><ul>'
  4. +'<li><a href="https://ParMois.com" target="_blank"><i class="fa fa-external-link-square" title="Club Affiliation Facile"></i></a></li>'
  5.  
  6. +'<li><a href="https://www.youtube.com/channel/UChwBUZZmRrvRjD3Y49zX9ZA?sub_confirmation=1" target="_blank"><i class="fa fa-youtube-play" title="YouTube"></i></a></li>'
  7.  
  8. +'<li><a href="https://t.me/clubaffiliation" target="_blank"><i class="fa fa-telegram" title="Telegram"></i></a></li>'
  9.  
  10. +'<li><a href="https://www.facebook.com/groups/clubaffiliationfacile/" target="_blank"><i class="fa fa-facebook" title="Facebook"></i></a></li>'
  11.  
  12. +'</ul><a href="https://systeme.io/090c2efc?sa=sa70e8f959144492c58421f4190162f858&tk=startupannuel_bio" target="_blank" class="btn btn-course-primary biobouton">PROMOTION SYSTEMEIO</a></nav>';
  13.  
  14.  
  15. var elbio = getMyElementsByClass("div", "course-info__instructor-container");
  16. if (elbio.length > 0) elbio[0].parentNode.insertBefore(biobio, elbio[0].nextSibling);
  17.  
  18. function getMyElementsByClass(tagType, className) {
  19. let el = document.getElementsByTagName(tagType);
  20. let returns = [];
  21. for (var i in el) {
  22. if ((' ' + el[i].className + ' ').indexOf(' ' + className + ' ') > -1) {
  23. returns.push(el[i]);
  24. }
  25. }
  26. return returns;
  27. }
  28. </script>
  29.  
  30. <style>
  31. .course-info__instructor-container{border-bottom: none !important;padding-bottom: 0px !important;margin-bottom: 0px !important;}
  32. nav{font-size: 1.7rem;padding-top: 10px;border-bottom-color: rgb(220, 220, 220);border-bottom-style: solid;border-bottom-width: 1px;padding-bottom: 24px;}
  33. nav ul {display: flex;flex-direction: row;margin: 0;padding: 0;}
  34. nav ul li {list-style: none;flex-grow: 1;text-align: center;}
  35. nav ul li a {display: block;color: var(--course-info-instructor-sub-fio-color);}
  36. nav ul li a:hover {color: var(--course-primary-button-hover-background-color);}
  37. .biobouton{display: flex !important;flex-wrap: wrap !important;justify-content: center !important;margin-top: 10px !important;padding: 5px !important;font-size: 16px !important;}
  38. </style>
Add Comment
Please, Sign In to add comment