-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit b943847
Showing
43 changed files
with
3,105 additions
and
0 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,133 @@ | ||
$primary-color: #FEDD01; | ||
$secondary-color: #3080EC; | ||
$secondary-700: #283FA6; | ||
|
||
//Dark Theme | ||
$dark-300: #ADB0BB; | ||
$dark-400: #42464D; | ||
$dark-500: #282C34; | ||
$dark-600: #1C2025; | ||
$dark-700: #0E1117; | ||
|
||
//Light Theme | ||
$text: #ffffff; | ||
$light-600: #F4F6F8; | ||
|
||
|
||
* { | ||
font-family: 'Roboto' | ||
} | ||
|
||
.about-section { | ||
min-height: 300px; | ||
display: flex; | ||
align-items: center; | ||
justify-content: center; | ||
flex-direction: column; | ||
padding: 50px; | ||
|
||
#about { | ||
font-size: 18px; | ||
font-weight: 700; | ||
line-height: 22px; | ||
color: $secondary-700; | ||
} | ||
|
||
h2 { | ||
font-size: 36px; | ||
line-height: 45px; | ||
text-align: center; | ||
margin: 20px; | ||
} | ||
|
||
|
||
} | ||
|
||
.team { | ||
display: flex; | ||
align-items: center; | ||
justify-content: center; | ||
flex-direction: column; | ||
padding: 50px; | ||
background-color: $light-600; | ||
|
||
h3 { | ||
font-size: 32px; | ||
font-weight: 700; | ||
line-height: 42px; | ||
margin: 20px; | ||
} | ||
|
||
#we-are { | ||
font-size: 18px; | ||
line-height: 20px; | ||
font-weight: 700; | ||
color: $secondary-700; | ||
} | ||
|
||
} | ||
|
||
.paragraph { | ||
display: block; | ||
max-width: 750px; | ||
line-height: 20px; | ||
font-size: 14px; | ||
text-align: center; | ||
margin: 20px; | ||
|
||
} | ||
|
||
.photo-team { | ||
display: flex; | ||
align-items: center; | ||
justify-content: center; | ||
padding: 50px; | ||
background-color: $light-600; | ||
|
||
h4{ | ||
font-size: 24px; | ||
line-height: 30px; | ||
text-align: center; | ||
margin: 10px; | ||
} | ||
|
||
p{ | ||
font-size: 16px; | ||
line-height: 24px; | ||
text-align: center; | ||
} | ||
} | ||
|
||
#board { | ||
display: grid; | ||
grid-template-columns: 1fr 1fr; | ||
grid-template-rows: 1fr; | ||
gap: 150px 150px; | ||
grid-template-areas: | ||
". ."; | ||
|
||
img{ | ||
width: 240px; | ||
height: auto; | ||
margin-right: 50px; | ||
margin-left: 50px; | ||
clip-path: circle(50% at 50% 50%); | ||
} | ||
} | ||
|
||
#other-team { | ||
display: grid; | ||
grid-template-columns: 1fr 1fr 1fr; | ||
grid-template-rows: 1fr; | ||
gap: 20px 20px; | ||
grid-template-areas: | ||
". . ."; | ||
|
||
img{ | ||
width: 150px; | ||
height: auto; | ||
margin-right: 100px; | ||
margin-left: 100px; | ||
clip-path: circle(50% at 50% 50%); | ||
} | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
$primary-color: #FEDD01; | ||
$secondary-color: #3080EC; | ||
$secondary-700: #283FA6; | ||
|
||
//Dark Theme | ||
$dark-300: #ADB0BB; | ||
$dark-400: #42464D; | ||
$dark-500: #282C34; | ||
$dark-600: #1C2025; | ||
$dark-700: #0E1117; | ||
|
||
//Light Theme | ||
$text: #ffffff; | ||
$light-600: #F4F6F8; | ||
|
||
.contact-form { | ||
min-width: 500px; | ||
height: auto; | ||
display: flex; | ||
flex-direction: column; | ||
padding: 20px; | ||
margin-top: 30px; | ||
border-radius: 5px; | ||
box-shadow: 2px 2px 20px 10px rgba(0, 0, 0, 0.15); | ||
|
||
input, | ||
textarea { | ||
height: 50px; | ||
font-size: 16px; | ||
line-height: 20px; | ||
color: $dark-400; | ||
margin: 10px; | ||
border-radius: 5px; | ||
border: 1px solid $dark-700; | ||
} | ||
|
||
.contact-input { | ||
padding-left: 20px; | ||
} | ||
|
||
.contact-input:focus { | ||
border: 2px solid $primary-color; | ||
color: $dark-700; | ||
outline: none; | ||
} | ||
|
||
h4 { | ||
margin: 10px; | ||
} | ||
|
||
#message { | ||
min-height: 100px; | ||
padding: 20px; | ||
margin-bottom: 20px; | ||
} | ||
} | ||
|
||
#contact-container { | ||
max-width: 1200px; | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
} |
Oops, something went wrong.