style.scss 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. :root {
  2. font-size: 14px;
  3. font-weight: 400;
  4. color-scheme: light dark;
  5. font-synthesis: none;
  6. text-rendering: optimizeLegibility;
  7. -webkit-font-smoothing: antialiased;
  8. -moz-osx-font-smoothing: grayscale;
  9. -webkit-text-size-adjust: 100%;
  10. }
  11. @font-face {
  12. font-family: "PersagyBold";
  13. src: url("@/assets/font/PersagyBold2.ttf");
  14. }
  15. @font-face {
  16. font-family: "Persagy";
  17. src: url("@/assets/font/PersagyRegular2.ttf");
  18. }
  19. html {
  20. height: 100%;
  21. margin: 0;
  22. padding: 0;
  23. user-select: none;
  24. }
  25. body {
  26. margin: 0;
  27. padding: 0;
  28. height: 100%;
  29. }
  30. *{
  31. box-sizing: border-box;
  32. }
  33. #app {
  34. height: 100%;
  35. }
  36. .horizontalClass {
  37. padding: 0px 32px 32px;
  38. box-sizing: border-box;
  39. border-radius: 20px;
  40. // background: #ffffff;
  41. font-size: 20px;
  42. }
  43. .head-title {
  44. height: 60px;
  45. font-weight: 700;
  46. font-size: 40px;
  47. line-height: 1;
  48. color: #f7e6cd;
  49. }
  50. .subhead-title {
  51. font-weight: 400;
  52. font-size: 25px;
  53. padding-top: 36px;
  54. line-height: 1;
  55. height: 60px;
  56. box-sizing: border-box;
  57. color: #f7e6cd;
  58. }
  59. .verticalClass {
  60. box-sizing: border-box;
  61. }