Created
November 11, 2021 13:19
-
-
Save adrianhajdin/f944d6e74d2ce1922efebe55c908d0d8 to your computer and use it in GitHub Desktop.
Build and Deploy a Fully Responsive Website with Modern UI/UX in React JS
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.gpt3__whatgpt3 { | |
display: flex; | |
flex-direction: column; | |
padding: 2rem; | |
background: var(--color-footer); | |
/* ff 3.6+ */ | |
background:-moz-radial-gradient(circle at 30% -100%, #042c54 25%, rgba(4, 44, 84, 1) 85%, rgba(27, 120, 222, 1) 100%); | |
/* safari 5.1+,chrome 10+ */ | |
background:-webkit-radial-gradient(circle at 30% -100%, #042c54 25%, rgba(4, 44, 84, 1) 85%, rgba(27, 120, 222, 1) 100%); | |
/* opera 11.10+ */ | |
background:-o-radial-gradient(circle at 30% -100%, #042c54 25%, rgba(4, 44, 84, 1) 85%, rgba(27, 120, 222, 1) 100%); | |
/* ie 10+ */ | |
background:-ms-radial-gradient(circle at 30% -100%, #042c54 25%, rgba(4, 44, 84, 1) 85%, rgba(27, 120, 222, 1) 100%); | |
/* global 92%+ browsers support */ | |
background:radial-gradient(circle at 30% -100%, #042c54 25%, rgba(4, 44, 84, 1) 85%, rgba(27, 120, 222, 1) 100%); | |
filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25)); | |
} | |
.gpt3__whatgpt3-feature { | |
display: flex; | |
} | |
/* Customizing feature component as per needs */ | |
.gpt3__whatgpt3-feature .gpt3__features-container__feature { | |
margin: 0; | |
} | |
/* Customizing feature component as per needs */ | |
.gpt3__whatgpt3-feature .gpt3__features-container_feature-text { | |
max-width: 700px; | |
} | |
.gpt3__whatgpt3-heading { | |
display: flex; | |
flex-direction: row; | |
justify-content: space-between; | |
align-items: center; | |
margin: 4rem 0 2rem; | |
} | |
.gpt3__whatgpt3-heading h1 { | |
font-size: 34px; | |
line-height: 45px; | |
font-weight: 800; | |
font-family: var(--font-family); | |
max-width: 510px; | |
} | |
.gpt3__whatgpt3-heading p { | |
font-family: var(--font-family); | |
font-weight: 500; | |
font-size: 16px; | |
line-height: 30px; | |
color: var(--color-subtext); | |
cursor: pointer; | |
} | |
.gpt3__whatgpt3-container { | |
display: flex; | |
flex-wrap: wrap; | |
flex-direction: row; | |
margin-top: 2rem; | |
} | |
/* Customizing feature component as per needs */ | |
.gpt3__whatgpt3-container .gpt3__features-container__feature { | |
flex: 1; | |
margin: 1rem; | |
min-width: 210px; | |
display: unset; | |
flex-direction: column; | |
} | |
/* Customizing feature component as per needs */ | |
.gpt3__whatgpt3-container .gpt3__features-container_feature-text { | |
margin-top: 0.5rem; | |
} | |
@media screen and (max-width: 850px) { | |
.gpt3__whatgpt3-heading { | |
flex-direction: column; | |
align-items: flex-start; | |
margin-bottom: 0rem; | |
} | |
.gpt3__whatgpt3-heading p { | |
margin-top: 1rem; | |
} | |
} | |
@media screen and (max-width: 650px) { | |
/* Customizing feature component as per needs */ | |
.gpt3__whatgpt3-feature .gpt3__features-container__feature { | |
flex-direction: column; | |
} | |
/* Customizing feature component as per needs */ | |
.gpt3__whatgpt3-feature .gpt3__features-container_feature-text { | |
margin-top: 0.5rem; | |
} | |
.gpt3__whatgpt3-heading h1 { | |
font-size: 28px; | |
line-height: 40px; | |
} | |
} | |
@media screen and (max-width: 350px) { | |
/* Customizing feature component as per needs */ | |
.gpt3__whatgpt3-container .gpt3__features-container__feature { | |
margin: 1rem 0; | |
min-width: 100%; | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700;800&display=swap'); | |
:root { | |
--font-family: 'Manrope', sans-serif; | |
--gradient-text: linear-gradient(89.97deg, #AE67FA 1.84%, #F49867 102.67%); | |
--gradient-bar: linear-gradient(103.22deg, #AE67FA -13.86%, #F49867 99.55%); | |
--color-bg: #040C18; | |
--color-footer : #031B34; | |
--color-blog: #042c54; | |
--color-text: #81AFDD; | |
--color-subtext: #FF8A71; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thank you for sharing code