|
| 1 | +/*** Tailwind CSS */ |
| 2 | +@tailwind base; |
| 3 | +@tailwind components; |
| 4 | +@tailwind utilities; |
| 5 | + |
| 6 | +/*** CSS Variables */ |
| 7 | +:root { |
| 8 | + --black-gradient: linear-gradient(144.39deg, #ffffff -278.56%, #6d6d6d -78.47%, #11101d 91.61%); |
| 9 | + --card-shadow: 0px 20px 100px -10px rgba(66, 71, 91, 0.1); |
| 10 | +} |
| 11 | + |
| 12 | +/*** CSS Resets */ |
| 13 | +* { |
| 14 | + scroll-behavior: smooth; |
| 15 | +} |
1 | 16 | body {
|
2 |
| - margin: 0; |
3 |
| - font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; |
| 17 | + font-family: 'Poppins', sans-serif; |
4 | 18 | -webkit-font-smoothing: antialiased;
|
5 | 19 | -moz-osx-font-smoothing: grayscale;
|
6 | 20 | }
|
7 | 21 |
|
8 |
| -code { |
9 |
| - font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New', monospace; |
| 22 | +/*** Boilerplate Built-In Gradient Colors Start */ |
| 23 | + |
| 24 | +.text-gradient { |
| 25 | + background: radial-gradient(64.18% 64.18% at 71.16% 35.69%, #def9fa 0.89%, #bef3f5 17.23%, #9dedf0 42.04%, #7de7eb 55.12%, #5ce1e6 71.54%, #33bbcf 100%); |
| 26 | + -webkit-text-fill-color: transparent; |
| 27 | + -webkit-background-clip: text; |
| 28 | + background-clip: text; |
| 29 | +} |
| 30 | + |
| 31 | +.bg-black-gradient { |
| 32 | + background: linear-gradient(144.39deg, #ffffff -278.56%, #6d6d6d -78.47%, #11101d 91.61%); |
| 33 | +} |
| 34 | +.bg-gray-gradient { |
| 35 | + background: linear-gradient(153.47deg, rgba(255, 255, 255, 0) -341.94%, #14101d 95.11%); |
| 36 | +} |
| 37 | +.bg-blue-gradient { |
| 38 | + background: linear-gradient(157.81deg, #def9fa -43.27%, #bef3f5 -21.24%, #9dedf0 12.19%, #7de7eb 29.82%, #5ce1e6 51.94%, #33bbcf 90.29%); |
| 39 | +} |
| 40 | +.bg-discount-gradient { |
| 41 | + background: linear-gradient(125.17deg, #272727 0%, #11101d 100%); |
| 42 | +} |
| 43 | + |
| 44 | +.blue-gradient { |
| 45 | + background: linear-gradient(180deg, rgba(188, 165, 255, 0) 0%, #214d76 100%); |
| 46 | + filter: blur(123px); |
| 47 | +} |
| 48 | +.pink-gradient { |
| 49 | + background: linear-gradient(90deg, #f4c4f3 0%, #fc67fa 100%); |
| 50 | + filter: blur(900px); |
| 51 | +} |
| 52 | +.white-gradient { |
| 53 | + background: rgba(255, 255, 255, 0.6); |
| 54 | + filter: blur(750px); |
| 55 | +} |
| 56 | + |
| 57 | +/*** Boilerplate Built-In Gradient Colors End */ |
| 58 | + |
| 59 | +/*** Boilerplate Built-In Card Style Start */ |
| 60 | + |
| 61 | +.box-shadow { |
| 62 | + box-shadow: 0px 20px 100px -10px rgba(66, 71, 91, 0.1); |
10 | 63 | }
|
| 64 | + |
| 65 | +.feedback-card { |
| 66 | + background: transparent; |
| 67 | +} |
| 68 | + |
| 69 | +.feature-card:hover { |
| 70 | + background: var(--black-gradient); |
| 71 | + box-shadow: var(--card-shadow); |
| 72 | +} |
| 73 | + |
| 74 | +.feedback-container .feedback-card:last-child { |
| 75 | + margin-right: 0px; |
| 76 | +} |
| 77 | + |
| 78 | +/*** Boilerplate Built-In Card Style End */ |
| 79 | + |
| 80 | +/*** And Design Customize Start */ |
| 81 | + |
| 82 | +.ant-btn-primary { |
| 83 | + @apply text-textColorWhite bg-primaryColor hover:bg-primaryColorHover border-primaryColor hover:border-primaryColorHover !important; |
| 84 | +} |
| 85 | + |
| 86 | +.ant-divider-horizontal.ant-divider-with-text-center::before, |
| 87 | +.ant-divider-horizontal.ant-divider-with-text-center::after { |
| 88 | + border-top: 2px solid !important; |
| 89 | + @apply border-primaryColor text-center !important; |
| 90 | +} |
| 91 | + |
| 92 | +.ant-message-custom-content { |
| 93 | + @apply inline-flex items-center; |
| 94 | +} |
| 95 | + |
| 96 | +.ant-popover-title { |
| 97 | + @apply bg-backgroundColorBlack; |
| 98 | +} |
| 99 | + |
| 100 | +/*** And Design Customize End */ |
0 commit comments