index.html 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport"
  6. content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, viewport-fit=cover" />
  7. <title>cocoroboworkapp</title>
  8. <style>
  9. html,
  10. body {
  11. height: 100%;
  12. width: 100%;
  13. }
  14. .el-select-dropdown__item.selected {
  15. color: rgb(81, 201, 154) !important;
  16. }
  17. </style>
  18. </head>
  19. <body>
  20. <div id="app"></div>
  21. <!-- built files will be auto injected -->
  22. <script>
  23. let htmlwidth = document.documentElement.clientWidth || document.body.clientWidth
  24. let htmlDom = document.getElementsByTagName('html')[0];
  25. if (htmlwidth > 750) { htmlwidth = 750 }
  26. htmlDom.style.fontSize = htmlwidth / 20 + 'px';
  27. window.onresize = function () {
  28. let htmlwidth = document.documentElement.clientWidth || document.body.clientWidth
  29. let htmlDom = document.getElementsByTagName('html')[0];
  30. if (htmlwidth > 750) { htmlwidth = 750 }
  31. htmlDom.style.fontSize = htmlwidth / 20 + 'px';
  32. };
  33. </script>
  34. </body>
  35. </html>