index.html 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <title>“十四五”普通高等教育本科国家级规划教材申报系统</title>
  6. <base href="/">
  7. <meta name="viewport" content="width=device-width, initial-scale=1">
  8. <link rel="icon" type="image/x-icon" href="favicon.ico">
  9. <link href="https://fonts.loli.net/css2?family=Roboto:wght@300;400;500&display=swap" rel="stylesheet">
  10. <link href="https://fonts.loli.net/icon?family=Material+Icons" rel="stylesheet">
  11. <!-- Authing -->
  12. <script type="text/javascript" src="https://cdn.authing.co/packages/guard/latest/guard.min.js"></script>
  13. <link rel="stylesheet" href="https://cdn.authing.co/packages/guard/latest/guard.min.css" />
  14. </head>
  15. <style>
  16. *{
  17. font-family: PingFang SC;
  18. }
  19. *::-webkit-scrollbar {
  20. width: 5px;
  21. height: 5px;
  22. }
  23. *::-webkit-scrollbar-thumb {
  24. border-radius: 10px;
  25. -webkit-box-shadow: inset 0 0 5px #f4cbcd;
  26. background: #f4cbcd;
  27. /* -webkit-box-shadow: inset 0 0 5px #e6e6e6;
  28. background: #e6e6e6; */
  29. }
  30. *::-webkit-scrollbar-track {
  31. border-radius: 10px;
  32. /* -webkit-box-shadow: inset 0 0 5px #f4cbcd;
  33. background: #f5f5f5; */
  34. -webkit-box-shadow: inset 0 0 5px #ffffff00;
  35. background: #ffffff00;
  36. }
  37. </style>
  38. <body class="mat-typography">
  39. <app-root></app-root>
  40. </body>
  41. </html>