Skip to content

Commit

Permalink
Wordpress Theme
Browse files Browse the repository at this point in the history
  • Loading branch information
AG-jpg authored Nov 6, 2022
0 parents commit b943847
Show file tree
Hide file tree
Showing 43 changed files with 3,105 additions and 0 deletions.
105 changes: 105 additions & 0 deletions css/about-style.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions css/about-style.css.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

133 changes: 133 additions & 0 deletions css/about-style.scss
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%);
}
}
45 changes: 45 additions & 0 deletions css/contact-style.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions css/contact-style.css.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

63 changes: 63 additions & 0 deletions css/contact-style.scss
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;
}
Loading

0 comments on commit b943847

Please sign in to comment.