Skip to content

Commit

Permalink
Merge branch 'main' of github.com:brunoosella/devias-web
Browse files Browse the repository at this point in the history
  • Loading branch information
brunoosella committed Jan 16, 2024
2 parents 8612285 + 9959bb0 commit be4ee66
Show file tree
Hide file tree
Showing 7 changed files with 121 additions and 30 deletions.
29 changes: 15 additions & 14 deletions devias-web/src/Components/ItemStep/ItemStep.scss
Original file line number Diff line number Diff line change
Expand Up @@ -54,10 +54,12 @@

/* Content step */
.container-step-description {
height: 0;
max-height: 0;
border-top: 0;
overflow: hidden;
transition: all .35s ease-in-out;
transition:
max-height .35s ease-out,
border-top .35s ease;

.step-description {
color: #333;
Expand All @@ -66,19 +68,8 @@
}

&.show {
height: 150px;
display: flex;
max-height: 300px;
border-top: 0.5px solid #9d9d9d40;

@media (max-width: 767px){
height: 130px;
}
@media (max-width: 575px){
height: 145px;
}
@media (max-width: 459px){
height: 190px;
}
}
}

Expand All @@ -96,6 +87,16 @@
&.step-3 {
border-right: 0;
border-left: 0;
}

&.step-4 {
border-right: 0;
border-left: 0;
}

&.step-5 {
border-right: 0;
border-left: 0;
border-bottom: 0;
}
}
Expand Down
17 changes: 2 additions & 15 deletions devias-web/src/Components/TeamCard/TeamCard.scss
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
@media (max-width: 767px) {
margin-top: 1rem;
}
}
}

h5 {
color: #333;
Expand All @@ -57,20 +57,7 @@
font-weight: 300;
margin: 0px;
line-height: 1.2;
}

.line {
border: 1px solid rgba(0, 0, 0, 0.1882352941);
margin: 1rem 0 0 0;
width: 85%;
padding: 0;
}

p {
color: #828282;
font-size: 0.9rem;
margin-top: 1rem;
margin-bottom: 0;
text-align: center;
}
}

Expand Down
2 changes: 1 addition & 1 deletion devias-web/src/Components/TeamCard/teamCard.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
"img": 7,
"job": "Talent Manager"
},{
"name": "Fer Sydor",
"name": "Fer",
"img": 8,
"job": "Designer"
},{
Expand Down
26 changes: 26 additions & 0 deletions devias-web/src/Screens/AboutUs/AboutUs.scss
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
font-family: 'Ubuntu', sans-serif;
font-weight: 300;
color: #828282;
animation: slideRight 0.5s ease-in-out;
}
h1{
font-size: 6rem;
Expand All @@ -18,6 +19,7 @@
margin-bottom: 0.5rem;
font-weight: 500;
line-height: 1.2;
animation: slideRight 1s ease-in-out;

@media (max-width: 991px) {
font-size: 3rem;
Expand All @@ -33,6 +35,8 @@
}
}
.section-info{
animation: slideDown 1.5s ease-in-out;

.container{
.container-card{
width: 100%;
Expand Down Expand Up @@ -87,4 +91,26 @@
}
}
}
}

@keyframes slideRight {
0% {
transform: translateX(100%);
opacity: 0;
}
100%{
transform: translateX(0);
opacity: 1;
}
}

@keyframes slideDown {
0% {
transform: translateY(100%);
opacity: 0;
}
100% {
transform: translateY(0);
opacity: 1;
}
}
25 changes: 25 additions & 0 deletions devias-web/src/Screens/ContactUs/ContactUs.scss
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
font-size: 6rem;
font-weight: 500;
margin: 0;
animation: slideRight 1s ease-in-out;

@media (max-width: 991px) {
font-size: 3rem;
Expand All @@ -28,6 +29,7 @@
font-family: 'Ubuntu', sans-serif;
font-weight: 300;
color: #828282;
animation: slideRight 0.5s ease-in-out;
}

@media (max-width: 991px) {
Expand All @@ -46,9 +48,32 @@
align-items: center;
gap: 10px;
flex-wrap: wrap;
animation: slideDown 1.5s ease-in-out;

@media all and (max-width: 768px) {
flex-direction: column;
}
}
}

@keyframes slideRight {
0% {
transform: translateX(100%);
opacity: 0;
}
100%{
transform: translateX(0);
opacity: 1;
}
}

@keyframes slideDown {
0% {
transform: translateY(100%);
opacity: 0;
}
100% {
transform: translateY(0);
opacity: 1;
}
}
27 changes: 27 additions & 0 deletions devias-web/src/Screens/OurCustomers/OurCustomers.scss
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,14 @@
.container {
.main-title {
margin: 100px 0 64px 0;


h5 {
font-size: 1.5rem;
font-family: 'Ubuntu', sans-serif;
font-weight: 300;
color: #828282;
animation: slideRight 0.5s ease-in-out;
}

h1 {
Expand All @@ -21,6 +23,7 @@
margin-bottom: 0.5rem;
font-weight: 500;
line-height: 1.2;
animation: slideRight 1s ease-in-out;

@media (max-width: 991px) {
font-size: 3rem;
Expand All @@ -35,6 +38,8 @@
}

.info {
animation: slideDown 1.5s ease-in-out;

.container {
.container-card {
width: 100%;
Expand Down Expand Up @@ -112,4 +117,26 @@
}
}
}
}

@keyframes slideRight {
0% {
transform: translateX(100%);
opacity: 0;
}
100%{
transform: translateX(0);
opacity: 1;
}
}

@keyframes slideDown {
0% {
transform: translateY(100%);
opacity: 0;
}
100% {
transform: translateY(0);
opacity: 1;
}
}
25 changes: 25 additions & 0 deletions devias-web/src/Screens/OurWay/OurWay.scss
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
font-size: 6rem;
font-weight: 500;
margin: 0;
animation: slideRight 1s ease-in-out;

@media (max-width: 991px) {
font-size: 3rem;
Expand All @@ -28,6 +29,7 @@
font-family: 'Ubuntu', sans-serif;
font-weight: 300;
color: #828282;
animation: slideRight 0.5s ease-in-out;
}

@media (max-width: 991px){
Expand All @@ -52,6 +54,7 @@

.process-steps {
margin: 95px 0px 115px 0px;
animation: slideDown 1.5s ease-in-out;
}

.services-cards {
Expand Down Expand Up @@ -199,4 +202,26 @@
}
}
}
}

@keyframes slideRight {
0% {
transform: translateX(100%);
opacity: 0;
}
100%{
transform: translateX(0);
opacity: 1;
}
}

@keyframes slideDown {
0% {
transform: translateY(100%);
opacity: 0;
}
100% {
transform: translateY(0);
opacity: 1;
}
}

0 comments on commit be4ee66

Please sign in to comment.