_pages.less 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. .pages {
  2. &.bg {
  3. color: @white-100;
  4. background-color: #252a30;
  5. }
  6. .body {
  7. padding: 70px 0 90px;
  8. margin: 0 auto;
  9. max-width: -webkit-calc(100% - 25px);
  10. max-width: calc(100% - 25px);
  11. text-align: left;
  12. width: 900px;
  13. }
  14. &.head {
  15. font-size: 36px;
  16. height: 150px;
  17. align-items: center;
  18. background-color: #2f363d;
  19. color: @white-100;
  20. display: flex;
  21. flex-direction: column;
  22. font-weight: 600;
  23. justify-content: center;
  24. padding-bottom: 50px;
  25. position: relative;
  26. .text {
  27. display: flex;
  28. justify-content: center;
  29. white-space: nowrap;
  30. width: 100%;
  31. margin-top: 50px !important;
  32. }
  33. div {
  34. font-size: 16px; }
  35. }
  36. .list {
  37. font-size: 1.1em;
  38. color: #9cb3c9;
  39. margin-top: 14px;
  40. line-height: 1.4;
  41. margin-bottom: 28px;
  42. }
  43. .code {
  44. background: #e7445a;
  45. padding: 4px;
  46. color: @white-100;
  47. border-radius: 3px;
  48. }
  49. .heading {
  50. color: @white-100;
  51. font-size: @20 !important;
  52. }
  53. .about {
  54. &.heading {
  55. color: @white-100;
  56. font-size: 30px !important;
  57. }
  58. &.text {
  59. color: @white-100;
  60. font-size: 17px !important;
  61. &.top {
  62. margin-top: 40px;
  63. }
  64. }
  65. }
  66. .soon {
  67. margin: 2em;
  68. height: 10em;
  69. }
  70. }
  71. .pages-heading {
  72. font-size: 22px !important;
  73. font-weight: 400 !important;
  74. margin-top: 80px !important;
  75. }
  76. .pages-small {
  77. font-size: 17px;
  78. color: #9cb3c9;
  79. margin-top: 14px;
  80. line-height: 1.4;
  81. a {
  82. border-bottom: 3px solid #e6375a;
  83. color: @white-100;
  84. font-weight: 600;
  85. position: relative;
  86. transition: background-color 120ms;
  87. &:hover {
  88. background-color: #e6375a;
  89. }
  90. }
  91. }
  92. .octopus {
  93. height: 20em;
  94. margin-top: 3em;
  95. margin-bottom: 3em;
  96. }
  97. // Mobile
  98. @media (max-width: 1020px) {
  99. .pages {
  100. .body {
  101. max-width: -webkit-calc(100% - @20);
  102. max-width: calc(100% - @20);
  103. }
  104. }
  105. .pages-small {
  106. &.head, .box-head {
  107. font-size: 25px !important;
  108. }
  109. }
  110. }