style.scss 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. @import "variables";
  2. @import "~bootstrap/scss/bootstrap";
  3. @import url("https://fonts.googleapis.com/css2?family=Comfortaa:wght@515&family=Fira+Code:wght@515&display=swap");
  4. :root {
  5. --openpod-red: #f24400;
  6. --openpod-grey: #ccc;
  7. --openpod-red-dark: #732100;
  8. --border: 2px;
  9. }
  10. body,
  11. html {
  12. font-family: "Fira Code", monospace;
  13. }
  14. h1,
  15. h2,
  16. h3,
  17. h4,
  18. h5,
  19. h6 {
  20. font-family: "Comfortaa", cursive;
  21. font-variation-settings: "wght" 700;
  22. }
  23. .homeBodyHtml {
  24. height: unset;
  25. overflow: auto;
  26. }
  27. .wrapper {
  28. height: 100%;
  29. background: var(--openpod-grey);
  30. // border: var(--border) solid var(--openpod-red);
  31. }
  32. .border-right-red {
  33. border-right: none;
  34. }
  35. #desc {
  36. height: 100%;
  37. }
  38. #desc p {
  39. // color: transparent;
  40. // background: linear-gradient(90deg, var(--openpod-red), black);
  41. // -webkit-background-clip: text;
  42. // background-clip: text;
  43. text-align: left;
  44. }
  45. .row-central {
  46. height: 100%;
  47. flex: unset;
  48. min-height: 0;
  49. }
  50. .row-border-red {
  51. border-bottom: var(--border) solid var(--openpod-red);
  52. }
  53. .emoji {
  54. font-size: 2rem;
  55. }
  56. @media (min-width: 576px) {
  57. }
  58. @media (min-width: 768px) {
  59. .homeBodyHtml {
  60. height: 100%;
  61. overflow: hidden;
  62. }
  63. .emoji {
  64. font-family: "Comfortaa", cursive;
  65. font-size: 3rem;
  66. }
  67. .border-right-red {
  68. border-right: var(--border) solid var(--openpod-red);
  69. }
  70. #desc {
  71. column-count: 2;
  72. column-fill: auto;
  73. column-gap: 30px;
  74. }
  75. #desc p {
  76. text-align: justify;
  77. hyphens: auto;
  78. }
  79. }
  80. @media (min-width: 992px) {
  81. }
  82. @media (min-width: 1200px) {
  83. }
  84. @media (min-width: 1400px) {
  85. #desc {
  86. column-count: 3;
  87. }
  88. }