You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
480B

  1. ЗадатьВид = мир =>
  2. {
  3. var вид = document.createElement("style");
  4. document.head.appendChild(вид);
  5. вид.innerHTML = `
  6. a
  7. {
  8. border: 1px solid black;
  9. border-radius: 5px;
  10. padding: 1em 5em 1em 5em;
  11. margin-bottom: 1em;
  12. }
  13. li
  14. {
  15. list-style-type: none;
  16. padding: 1em;
  17. margin-bottom: 1em;
  18. }
  19. `;
  20. };
  21. // // // //
  22. СкрытьКрутилку = мир =>
  23. {
  24. document.getElementById("крутилка").style.display = "none";
  25. };