You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

344 lines
6.4 KiB

2 years ago
  1. @import "variables";
  2. .no-text-transform {
  3. text-transform: none !important;
  4. }
  5. .orange-opacity {
  6. color: #ee9546;
  7. opacity: 0.4;
  8. }
  9. @for $i from 8 to 65 {
  10. .text-size-#{$i} {
  11. font-size: #{$i}px !important;
  12. }
  13. }
  14. @for $i from 1 to 6 {
  15. .text-space-#{$i} {
  16. letter-spacing: $i * 0.3px !important;
  17. }
  18. }
  19. @for $i from 15 to 35 {
  20. .text-height-#{$i} {
  21. line-height: $i * 1px !important;
  22. }
  23. }
  24. @for $i from 10 to 35 {
  25. .border-radius-#{$i} {
  26. border-radius: $i * 1px !important;
  27. }
  28. }
  29. body.vld-shown {
  30. overflow: auto;
  31. }
  32. img {
  33. max-width: 100%;
  34. height: auto;
  35. image-rendering: -webkit-optimize-contrast;
  36. }
  37. .test {
  38. height: 400vh;
  39. }
  40. .flow-x-hidden {
  41. overflow-x: hidden;
  42. }
  43. .px-30 {
  44. padding: 0 30px;
  45. }
  46. .px-md-0 {
  47. @media (min-width: 768px) {
  48. padding: 0;
  49. }
  50. }
  51. .container-1366 {
  52. max-width: 1366px !important;
  53. }
  54. .container-1246 {
  55. max-width: 100% !important;
  56. padding-left: 30px !important;
  57. padding-right: 30px !important;
  58. @media (min-width: 1366px) {
  59. max-width: 1246px !important;
  60. padding-left: 0 !important;
  61. padding-right: 0 !important;
  62. margin-left: auto !important;
  63. margin-right: auto !important;
  64. }
  65. &_pc {
  66. @media (min-width: 1366px) {
  67. max-width: 1246px !important;
  68. padding-left: 0 !important;
  69. padding-right: 0 !important;
  70. margin-left: auto !important;
  71. margin-right: auto !important;
  72. }
  73. }
  74. }
  75. .main-container {
  76. max-width: 100% !important;
  77. padding-left: 30px !important;
  78. padding-right: 30px !important;
  79. @media (min-width: 1366px) {
  80. max-width: 1276px !important;
  81. padding-left: 0 !important;
  82. padding-right: 0 !important;
  83. margin-left: auto !important;
  84. margin-right: auto !important;
  85. }
  86. &-scroll {
  87. max-width: 100% !important;
  88. margin-left: 30px !important;
  89. margin-right: 30px !important;
  90. @media (min-width: 1366px) {
  91. max-width: 1276px !important;
  92. margin-left: auto !important;
  93. margin-right: auto !important;
  94. }
  95. }
  96. }
  97. .myGrid {
  98. display: grid !important;
  99. &__2 {
  100. grid-template-columns: 1fr 1fr;
  101. }
  102. }
  103. .Grid {
  104. &__column_gap {
  105. &__20 {
  106. grid-column-gap: 20px;
  107. }
  108. &__30 {
  109. grid-column-gap: 30px;
  110. }
  111. }
  112. &__row_gap {
  113. &__20 {
  114. grid-row-gap: 20px;
  115. }
  116. }
  117. }
  118. .width-100vw {
  119. width: 100vw;
  120. position: relative;
  121. padding: 0;
  122. left: calc(50% - 50vw);
  123. @media (min-width: 1366px) {
  124. width: 100%;
  125. left: initial;
  126. }
  127. }
  128. .circle-decoration {
  129. width: 6px;
  130. height: 6px;
  131. background-color: #ee9546;
  132. border-radius: 50%;
  133. }
  134. .circle-decoration-location {
  135. width: 3px;
  136. height: 3px;
  137. background-color: #e5e5e5;
  138. border-radius: 50%;
  139. font-weight: 300;
  140. display: inline-block;
  141. }
  142. .input-border {
  143. border: 1.5px solid #e5e5e5;
  144. }
  145. .arrow {
  146. border: 1px solid !important;
  147. padding: 10px 15px !important;
  148. border-radius: 10px !important;
  149. width: 50px !important;
  150. }
  151. .disable-arrow {
  152. border: 1px solid #9c9c9c !important;
  153. padding: 10px 15px !important;
  154. border-radius: 10px !important;
  155. width: 50px !important;
  156. }
  157. .heart {
  158. position: absolute !important;
  159. top: 10% !important;
  160. right: 10% !important;
  161. }
  162. .text-field-center {
  163. position: relative !important;
  164. top: 15px !important;
  165. }
  166. .remove-underline {
  167. text-decoration: none !important;
  168. color: inherit !important;
  169. }
  170. .long-text {
  171. div {
  172. white-space: pre-wrap;
  173. }
  174. background-color: $Neutrals-100;
  175. height: 100%;
  176. padding-top: 60px;
  177. padding-bottom: 120px;
  178. }
  179. .html-text {
  180. div {
  181. white-space: pre-wrap;
  182. }
  183. }
  184. // title
  185. .title-icon {
  186. &-left {
  187. background-image: url("~/assets/img/Highlight.png");
  188. background-size: 18px 8px;
  189. background-position: left 10px center;
  190. background-repeat:no-repeat;
  191. padding-left: 58px;
  192. }
  193. }
  194. //element input
  195. .element {
  196. input[type="radio"] {
  197. margin-right: 12px;
  198. }
  199. input[type="radio"]:checked,
  200. input[type="radio"]:not(:checked) {
  201. position: absolute;
  202. left: -9999px;
  203. }
  204. input[type="radio"]:checked + label,
  205. input[type="radio"]:not(:checked) + label {
  206. position: relative;
  207. padding-left: 40px;
  208. cursor: pointer;
  209. line-height: 20px;
  210. display: inline-block;
  211. }
  212. input[type="radio"]:not(:checked) + label:before {
  213. content: "";
  214. position: absolute;
  215. left: 0;
  216. top: 0;
  217. width: 20px;
  218. height: 20px;
  219. border: 2px solid #faae69;
  220. border-radius: 100%;
  221. background: #fff;
  222. }
  223. input[type="radio"]:checked + label:before {
  224. content: "";
  225. position: absolute;
  226. left: 0;
  227. top: 0;
  228. width: 20px;
  229. height: 20px;
  230. border: 2px solid #f48800;
  231. border-radius: 100%;
  232. background: #fff;
  233. }
  234. input[type="radio"]:checked + label:after,
  235. input[type="radio"]:not(:checked) + label:after {
  236. content: "";
  237. width: 8px;
  238. height: 8px;
  239. background: #f48800;
  240. position: absolute;
  241. top: 6px;
  242. left: 6px;
  243. border-radius: 100%;
  244. -webkit-transition: all 0.2s ease;
  245. transition: all 0.2s ease;
  246. }
  247. input[type="radio"]:not(:checked) + label:after {
  248. opacity: 0;
  249. -webkit-transform: scale(0);
  250. transform: scale(0);
  251. }
  252. input[type="radio"]:checked + label:after {
  253. opacity: 1;
  254. -webkit-transform: scale(1);
  255. transform: scale(1);
  256. }
  257. }
  258. // card
  259. .rounded-xxl {
  260. border-radius: 30px !important;
  261. }
  262. .rounded-10 {
  263. border-radius: 10px !important;
  264. }
  265. .padding-6 {
  266. padding: 3px 6px;
  267. }
  268. .fw-border-5 {
  269. font-weight: 500;
  270. }
  271. .fw-border-3 {
  272. font-weight: 300;
  273. }
  274. .cols-4 {
  275. max-width: 380px;
  276. }
  277. .of-hidden {
  278. overflow: hidden;
  279. max-width: 610px;
  280. height: 45px;
  281. }
  282. //modal
  283. .v--modal-overlay .v--modal-background-click {
  284. @media (min-width: 768px) {
  285. display: flex;
  286. justify-content: center;
  287. align-items: center;
  288. }
  289. }
  290. .v--modal-overlay.scrollable {
  291. min-height: 100vh !important;
  292. min-height: -webkit-fill-available !important;
  293. @media (min-width: 768px) {
  294. min-height: max-content !important;
  295. }
  296. }
  297. .v--modal {
  298. max-width: 664px;
  299. top: 0 !important;
  300. left: 0 !important;
  301. right: 0 !important;
  302. margin: 0 auto;
  303. height: 100vh;
  304. @media (min-width: 768px) {
  305. min-height: max-content !important;
  306. }
  307. }
  308. //ant-calendar
  309. .ant-calendar-picker-container {
  310. .ant-calendar-date {
  311. border-radius: 24px;
  312. &:hover {
  313. background: #f48800;
  314. color: #fefefe !important;
  315. }
  316. }
  317. .ant-calendar-selected-day .ant-calendar-date {
  318. background: #f48800;
  319. color: #fefefe !important;
  320. font-weight: bold;
  321. }
  322. .ant-calendar-today .ant-calendar-date {
  323. color: #f48800;
  324. font-weight: bold;
  325. border-color: #fff6ee;
  326. }
  327. }
  328. //photoswipe
  329. div[role="dialog"].pswp {
  330. z-index: 10000;
  331. }