updates
This commit is contained in:
+25
-5
@@ -2,7 +2,7 @@
|
||||
|
||||
html {
|
||||
width: 100%;
|
||||
scroll-behavior: smooth;
|
||||
/* scroll-behavior: smooth; */
|
||||
font-family: "Cutive Mono", Helvetica;
|
||||
font-size: 16px;
|
||||
line-height: 1.5;
|
||||
@@ -19,12 +19,14 @@ html {
|
||||
:root {
|
||||
--main-color: #7174ff;
|
||||
--main-color-lighter: #9d9eff;
|
||||
--main-color-darker: #7072c9;
|
||||
--main-color-dark: #292a6b;
|
||||
--dark-color: #181515;
|
||||
--sec-color-3: #688e26;
|
||||
--sec-color-4: #adb2d3;
|
||||
--sec-color-5: #c2a878;
|
||||
--light-color-1: rgb(64, 37, 216);
|
||||
--test-color: rgb(113, 116, 255);
|
||||
--test-color: #7174ff;
|
||||
--transparent-white: rgba(255, 255, 255, 0.2);
|
||||
}
|
||||
|
||||
@@ -60,6 +62,13 @@ button,
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
button.outlined,
|
||||
.button.outlined {
|
||||
border: 1px solid white;
|
||||
background-color: transparent;
|
||||
color: white;
|
||||
}
|
||||
|
||||
hr {
|
||||
opacity: 0.3;
|
||||
}
|
||||
@@ -88,11 +97,11 @@ h1 {
|
||||
}
|
||||
|
||||
h2 {
|
||||
font-size: 38px;
|
||||
font-size: 44px;
|
||||
}
|
||||
|
||||
h3 {
|
||||
font-size: 30px;
|
||||
font-size: 28px;
|
||||
}
|
||||
|
||||
h4 {
|
||||
@@ -310,9 +319,15 @@ textarea {
|
||||
padding: 15px 20px;
|
||||
background-color: transparent;
|
||||
color: white;
|
||||
border: 1px solid rgba(255, 255, 255, 0.2);
|
||||
border: 1px solid rgba(255, 255, 255, 0.5);
|
||||
width: 100%;
|
||||
resize: none;
|
||||
font-size: 20px;
|
||||
}
|
||||
|
||||
input::placeholder,
|
||||
textarea::placeholder {
|
||||
color: rgba(255, 255, 255, 0.5);
|
||||
}
|
||||
|
||||
.message-response {
|
||||
@@ -407,6 +422,11 @@ html.is-animating .transition-fade {
|
||||
############################################################################################### */
|
||||
|
||||
@media (max-width: 1200px) {
|
||||
#main-image {
|
||||
position: fixed;
|
||||
top: 40px;
|
||||
z-index: -1;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 990px) {
|
||||
|
||||
+254
-42
@@ -110,14 +110,50 @@
|
||||
position: relative
|
||||
}
|
||||
|
||||
.bottom-\[20px\] {
|
||||
bottom: 20px
|
||||
}
|
||||
|
||||
.left-0 {
|
||||
left: 0px
|
||||
}
|
||||
|
||||
.right-0 {
|
||||
right: 0px
|
||||
}
|
||||
|
||||
.right-10 {
|
||||
right: 2.5rem
|
||||
}
|
||||
|
||||
.right-6 {
|
||||
right: 1.5rem
|
||||
}
|
||||
|
||||
.top-0 {
|
||||
top: 0px
|
||||
}
|
||||
|
||||
.bottom-\[40px\] {
|
||||
bottom: 40px
|
||||
}
|
||||
|
||||
.top-\[320px\] {
|
||||
top: 320px
|
||||
}
|
||||
|
||||
.top-\[340px\] {
|
||||
top: 340px
|
||||
}
|
||||
|
||||
.top-\[330px\] {
|
||||
top: 330px
|
||||
}
|
||||
|
||||
.z-0 {
|
||||
z-index: 0
|
||||
}
|
||||
|
||||
.z-10 {
|
||||
z-index: 10
|
||||
}
|
||||
@@ -134,6 +170,11 @@
|
||||
margin: 0px
|
||||
}
|
||||
|
||||
.my-8 {
|
||||
margin-top: 2rem;
|
||||
margin-bottom: 2rem
|
||||
}
|
||||
|
||||
.-mb-4 {
|
||||
margin-bottom: -1rem
|
||||
}
|
||||
@@ -142,18 +183,22 @@
|
||||
margin-top: -2.5rem
|
||||
}
|
||||
|
||||
.-mt-64 {
|
||||
margin-top: -16rem
|
||||
.-mt-\[80px\] {
|
||||
margin-top: -80px
|
||||
}
|
||||
|
||||
.-mt-\[120px\] {
|
||||
margin-top: -120px
|
||||
.mb-0 {
|
||||
margin-bottom: 0px
|
||||
}
|
||||
|
||||
.mb-2 {
|
||||
margin-bottom: 0.5rem
|
||||
}
|
||||
|
||||
.mb-32 {
|
||||
margin-bottom: 8rem
|
||||
}
|
||||
|
||||
.mb-4 {
|
||||
margin-bottom: 1rem
|
||||
}
|
||||
@@ -178,42 +223,90 @@
|
||||
margin-top: 1rem
|
||||
}
|
||||
|
||||
.-mt-\[80px\] {
|
||||
margin-top: -80px
|
||||
}
|
||||
|
||||
.flex {
|
||||
display: flex
|
||||
}
|
||||
|
||||
.hidden {
|
||||
display: none
|
||||
}
|
||||
|
||||
.h-1 {
|
||||
height: 0.25rem
|
||||
}
|
||||
|
||||
.h-10 {
|
||||
height: 2.5rem
|
||||
}
|
||||
|
||||
.h-14 {
|
||||
height: 3.5rem
|
||||
}
|
||||
|
||||
.h-20 {
|
||||
height: 5rem
|
||||
}
|
||||
|
||||
.h-4 {
|
||||
height: 1rem
|
||||
}
|
||||
|
||||
.h-44 {
|
||||
height: 11rem
|
||||
}
|
||||
|
||||
.h-\[150px\] {
|
||||
height: 150px
|
||||
}
|
||||
|
||||
.h-\[200px\] {
|
||||
height: 200px
|
||||
}
|
||||
|
||||
.h-auto {
|
||||
height: auto
|
||||
}
|
||||
|
||||
.h-full {
|
||||
height: 100%
|
||||
}
|
||||
|
||||
.h-screen {
|
||||
height: 100vh
|
||||
}
|
||||
|
||||
.w-10 {
|
||||
width: 2.5rem
|
||||
}
|
||||
|
||||
.w-14 {
|
||||
width: 3.5rem
|
||||
}
|
||||
|
||||
.w-8 {
|
||||
width: 2rem
|
||||
}
|
||||
|
||||
.w-full {
|
||||
width: 100%
|
||||
}
|
||||
|
||||
.w-screen {
|
||||
width: 100vw
|
||||
}
|
||||
|
||||
.max-w-2xl {
|
||||
max-width: 42rem
|
||||
}
|
||||
|
||||
.max-w-3xl {
|
||||
max-width: 48rem
|
||||
}
|
||||
|
||||
.max-w-6xl {
|
||||
max-width: 72rem
|
||||
}
|
||||
|
||||
.max-w-\[400px\] {
|
||||
max-width: 400px
|
||||
}
|
||||
|
||||
.max-w-\[450px\] {
|
||||
max-width: 450px
|
||||
}
|
||||
@@ -222,6 +315,15 @@
|
||||
flex-grow: 1
|
||||
}
|
||||
|
||||
.-rotate-45 {
|
||||
--tw-rotate: -45deg;
|
||||
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
|
||||
}
|
||||
|
||||
.transform {
|
||||
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
|
||||
}
|
||||
|
||||
.cursor-pointer {
|
||||
cursor: pointer
|
||||
}
|
||||
@@ -278,16 +380,33 @@
|
||||
gap: 1rem
|
||||
}
|
||||
|
||||
.gap-44 {
|
||||
gap: 11rem
|
||||
}
|
||||
|
||||
.gap-6 {
|
||||
gap: 1.5rem
|
||||
}
|
||||
|
||||
.gap-8 {
|
||||
gap: 2rem
|
||||
}
|
||||
|
||||
.overflow-hidden {
|
||||
overflow: hidden
|
||||
.gap-x-6 {
|
||||
-moz-column-gap: 1.5rem;
|
||||
column-gap: 1.5rem
|
||||
}
|
||||
|
||||
.whitespace-nowrap {
|
||||
white-space: nowrap
|
||||
.gap-y-2 {
|
||||
row-gap: 0.5rem
|
||||
}
|
||||
|
||||
.overflow-auto {
|
||||
overflow: auto
|
||||
}
|
||||
|
||||
.overflow-hidden {
|
||||
overflow: hidden
|
||||
}
|
||||
|
||||
.rounded-full {
|
||||
@@ -316,15 +435,52 @@
|
||||
background-color: rgb(62 63 156 / var(--tw-bg-opacity))
|
||||
}
|
||||
|
||||
.bg-\[black\] {
|
||||
--tw-bg-opacity: 1;
|
||||
background-color: rgb(0 0 0 / var(--tw-bg-opacity))
|
||||
}
|
||||
|
||||
.bg-\[black\]\/90 {
|
||||
background-color: rgb(0 0 0 / 0.9)
|
||||
}
|
||||
|
||||
.bg-\[white\] {
|
||||
--tw-bg-opacity: 1;
|
||||
background-color: rgb(255 255 255 / var(--tw-bg-opacity))
|
||||
}
|
||||
|
||||
.bg-primary\/10 {
|
||||
background-color: rgb(113 116 255 / 0.1)
|
||||
}
|
||||
|
||||
.bg-primary_light {
|
||||
--tw-bg-opacity: 1;
|
||||
background-color: rgb(157 158 255 / var(--tw-bg-opacity))
|
||||
}
|
||||
|
||||
.object-contain {
|
||||
-o-object-fit: contain;
|
||||
object-fit: contain
|
||||
}
|
||||
|
||||
.object-cover {
|
||||
-o-object-fit: cover;
|
||||
object-fit: cover
|
||||
}
|
||||
|
||||
.object-top {
|
||||
-o-object-position: top;
|
||||
object-position: top
|
||||
}
|
||||
|
||||
.p-10 {
|
||||
padding: 2.5rem
|
||||
}
|
||||
|
||||
.p-2 {
|
||||
padding: 0.5rem
|
||||
}
|
||||
|
||||
.p-4 {
|
||||
padding: 1rem
|
||||
}
|
||||
@@ -341,11 +497,21 @@
|
||||
padding: 150px
|
||||
}
|
||||
|
||||
.px-3 {
|
||||
padding-left: 0.75rem;
|
||||
padding-right: 0.75rem
|
||||
}
|
||||
|
||||
.px-4 {
|
||||
padding-left: 1rem;
|
||||
padding-right: 1rem
|
||||
}
|
||||
|
||||
.py-1 {
|
||||
padding-top: 0.25rem;
|
||||
padding-bottom: 0.25rem
|
||||
}
|
||||
|
||||
.py-2 {
|
||||
padding-top: 0.5rem;
|
||||
padding-bottom: 0.5rem
|
||||
@@ -365,12 +531,8 @@
|
||||
padding-bottom: 10rem
|
||||
}
|
||||
|
||||
.pt-\[450px\] {
|
||||
padding-top: 450px
|
||||
}
|
||||
|
||||
.pt-\[480px\] {
|
||||
padding-top: 480px
|
||||
.pl-6 {
|
||||
padding-left: 1.5rem
|
||||
}
|
||||
|
||||
.pt-\[500px\] {
|
||||
@@ -382,8 +544,8 @@
|
||||
line-height: 1
|
||||
}
|
||||
|
||||
.text-\[300px\] {
|
||||
font-size: 300px
|
||||
.text-\[24px\] {
|
||||
font-size: 24px
|
||||
}
|
||||
|
||||
.text-base {
|
||||
@@ -401,31 +563,43 @@
|
||||
line-height: 1.25rem
|
||||
}
|
||||
|
||||
.text-\[20px\] {
|
||||
font-size: 20px
|
||||
}
|
||||
|
||||
.text-xl {
|
||||
font-size: 1.25rem;
|
||||
line-height: 1.75rem
|
||||
}
|
||||
|
||||
.text-4xl {
|
||||
font-size: 2.25rem;
|
||||
line-height: 2.5rem
|
||||
.font-bold {
|
||||
font-weight: 700
|
||||
}
|
||||
|
||||
.uppercase {
|
||||
text-transform: uppercase
|
||||
}
|
||||
|
||||
.leading-\[1\.1\] {
|
||||
line-height: 1.1
|
||||
}
|
||||
|
||||
.leading-snug {
|
||||
line-height: 1.375
|
||||
}
|
||||
|
||||
.text-primary-light {
|
||||
.tracking-wide {
|
||||
letter-spacing: 0.025em
|
||||
}
|
||||
|
||||
.text-\[\#BBE572\] {
|
||||
--tw-text-opacity: 1;
|
||||
color: rgb(157 158 255 / var(--tw-text-opacity))
|
||||
color: rgb(187 229 114 / var(--tw-text-opacity))
|
||||
}
|
||||
|
||||
.text-\[black\] {
|
||||
--tw-text-opacity: 1;
|
||||
color: rgb(0 0 0 / var(--tw-text-opacity))
|
||||
}
|
||||
|
||||
.text-\[black\]\/80 {
|
||||
color: rgb(0 0 0 / 0.8)
|
||||
}
|
||||
|
||||
.opacity-20 {
|
||||
@@ -448,6 +622,17 @@
|
||||
opacity: 0.8
|
||||
}
|
||||
|
||||
.shadow-2xl {
|
||||
--tw-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
|
||||
--tw-shadow-colored: 0 25px 50px -12px var(--tw-shadow-color);
|
||||
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)
|
||||
}
|
||||
|
||||
.shadow-\[black\] {
|
||||
--tw-shadow-color: black;
|
||||
--tw-shadow: var(--tw-shadow-colored)
|
||||
}
|
||||
|
||||
.blur {
|
||||
--tw-blur: blur(8px);
|
||||
filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)
|
||||
@@ -478,6 +663,10 @@
|
||||
transition-duration: 150ms
|
||||
}
|
||||
|
||||
.hover\:bg-\[white\]\/90:hover {
|
||||
background-color: rgb(255 255 255 / 0.9)
|
||||
}
|
||||
|
||||
.hover\:opacity-60:hover {
|
||||
opacity: 0.6
|
||||
}
|
||||
@@ -506,17 +695,20 @@
|
||||
padding-bottom: 2.5rem
|
||||
}
|
||||
|
||||
.md\:pt-0 {
|
||||
padding-top: 0px
|
||||
}
|
||||
|
||||
.md\:text-5xl {
|
||||
font-size: 3rem;
|
||||
line-height: 1
|
||||
.md\:text-\[58px\] {
|
||||
font-size: 58px
|
||||
}
|
||||
}
|
||||
|
||||
@media (min-width: 1200px) {
|
||||
.xl\:sticky {
|
||||
position: sticky
|
||||
}
|
||||
|
||||
.xl\:z-50 {
|
||||
z-index: 50
|
||||
}
|
||||
|
||||
.xl\:-mr-14 {
|
||||
margin-right: -3.5rem
|
||||
}
|
||||
@@ -525,14 +717,26 @@
|
||||
margin-top: -160px
|
||||
}
|
||||
|
||||
.xl\:w-\[120\%\] {
|
||||
width: 120%
|
||||
.xl\:flex {
|
||||
display: flex
|
||||
}
|
||||
|
||||
.xl\:hidden {
|
||||
display: none
|
||||
}
|
||||
|
||||
.xl\:h-\[220px\] {
|
||||
height: 220px
|
||||
}
|
||||
|
||||
.xl\:w-\[40\%\] {
|
||||
width: 40%
|
||||
}
|
||||
|
||||
.xl\:w-\[50\%\] {
|
||||
width: 50%
|
||||
}
|
||||
|
||||
.xl\:w-\[60\%\] {
|
||||
width: 60%
|
||||
}
|
||||
@@ -544,4 +748,12 @@
|
||||
.xl\:flex-col {
|
||||
flex-direction: column
|
||||
}
|
||||
|
||||
.xl\:items-center {
|
||||
align-items: center
|
||||
}
|
||||
|
||||
.xl\:pt-0 {
|
||||
padding-top: 0px
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user