1854 lines
31 KiB
CSS
1854 lines
31 KiB
CSS
html {
|
|
width: 100%;
|
|
overflow-x: hidden;
|
|
/* font-display: swap; */
|
|
scroll-behavior: smooth;
|
|
}
|
|
|
|
* {
|
|
-webkit-box-sizing: border-box;
|
|
-moz-box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
font-family: "Titillium Web", Helvetica;
|
|
/* font-display: swap; */
|
|
font-size: 18px;
|
|
line-height: 1.5;
|
|
color: #222;
|
|
position: relative;
|
|
/*
|
|
animation-timing-function: linear;
|
|
transition-timing-function: linear;
|
|
*/
|
|
}
|
|
|
|
:root {
|
|
--main-color: #747bef;
|
|
--base-color: #222;
|
|
--sec-color-1: #ed7d71;
|
|
--sec-color-2: #faa096;
|
|
--sec-color-3: #75F0E6;
|
|
--dark-color: #1c3766;
|
|
}
|
|
|
|
|
|
/*................................................... Body */
|
|
|
|
body {
|
|
width: 100%;
|
|
margin: 0px;
|
|
overflow: hidden;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
}
|
|
|
|
header {
|
|
position: fixed;
|
|
left: 0;
|
|
top: 0;
|
|
width: 100%;
|
|
z-index: 1000;
|
|
padding: 40px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
height: 140px;
|
|
overflow: hidden;
|
|
perspective: 500px;
|
|
transition: all .3s ease;
|
|
}
|
|
|
|
header * {
|
|
/* transition: all .5s ease;*/
|
|
}
|
|
|
|
header > div:nth-of-type(1) {
|
|
position: relative;
|
|
transform-style: preserve-3d;
|
|
}
|
|
|
|
header > div:nth-of-type(2) {
|
|
position: relative;
|
|
transform-style: preserve-3d;
|
|
}
|
|
|
|
header.scrolled {
|
|
padding: 20px;
|
|
background-color: white;
|
|
/* box-shadow: 0px 0px 20px -5px rgba(0,0,0,0.4);*/
|
|
height: 80px;
|
|
}
|
|
|
|
#header-controller {
|
|
position: absolute;
|
|
width: 100%;
|
|
height: 15vh;
|
|
top: 0;
|
|
left: 0;
|
|
background: lightgray;
|
|
}
|
|
|
|
header img:not(#linkedin img) {
|
|
width: 40px;
|
|
margin-right: 10px;
|
|
/* transition: all .3s ease;*/
|
|
position: relative;
|
|
top: 0;
|
|
}
|
|
|
|
header > a {
|
|
font-family: "Titillium Web";
|
|
border: none;
|
|
color: inherit;
|
|
display: flex;
|
|
align-items: center;
|
|
font-weight: 700;
|
|
position: relative;
|
|
perspective: 500px;
|
|
transform-style: preserve-3d;
|
|
z-index: 10;
|
|
}
|
|
|
|
header > a > div {
|
|
line-height: 16px;
|
|
font-size: 24px;
|
|
color: var(--dark-color);
|
|
/* transition: all .3s ease;*/
|
|
}
|
|
|
|
nav {
|
|
display: flex;
|
|
align-items: center;
|
|
color: inherit;
|
|
height: 100%;
|
|
}
|
|
|
|
.nav-link {
|
|
font-size: 17px;
|
|
font-weight: 600;
|
|
padding: 10px 15px;
|
|
background-size: 100%;
|
|
background-repeat: no-repeat;
|
|
background-position: -200px 43px;
|
|
background-image: linear-gradient(90deg, var(--main-color), var(--sec-color-1));
|
|
color: inherit;
|
|
transition: background .3s ease;
|
|
}
|
|
|
|
.nav-link:hover {
|
|
color: var(--sec-color-2);
|
|
background-position: 0px 43px;
|
|
}
|
|
|
|
.active-anchor {
|
|
color: var(--sec-color-1);
|
|
background-position: 0px 43px;
|
|
}
|
|
|
|
.hamburger-button {
|
|
width: 40px;
|
|
min-width: 40px;
|
|
height: 40px;
|
|
padding: 10px 0;
|
|
display: none;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: space-around;
|
|
}
|
|
|
|
.hamburger-button div {
|
|
width: 25px;
|
|
height: 3px;
|
|
background-color: white;
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
section {
|
|
display: flex;
|
|
position: relative;
|
|
width: 100%;
|
|
perspective: 500px;
|
|
padding: 0;
|
|
margin: 0;
|
|
height: 100vh;
|
|
overflow: hidden;
|
|
align-items: stretch;
|
|
}
|
|
|
|
section > div {
|
|
width: 50%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: flex-start;
|
|
justify-content: center;
|
|
perspective: 500px;
|
|
transform-style: preserve-3d;
|
|
padding: 15%;
|
|
position: relative;
|
|
}
|
|
|
|
section > div p{
|
|
width: 350px;
|
|
color: inherit;
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*############################################# -- Text */
|
|
|
|
a {
|
|
text-decoration: none;
|
|
color: var(--dark-color);
|
|
border: none;
|
|
cursor: pointer;
|
|
font-size: inherit;
|
|
/* transition: all .3s ease-out;*/
|
|
}
|
|
|
|
a:hover {
|
|
border: none;
|
|
}
|
|
|
|
h1, h2, h3, h4 {
|
|
font-family: "Titillium Web";
|
|
margin-top: 0px;
|
|
margin-bottom: 15px;
|
|
width: 100%;
|
|
line-height: 1.2;
|
|
color: inherit;
|
|
font-weight: 700;
|
|
}
|
|
|
|
h1 {
|
|
|
|
font-size: 46px;
|
|
}
|
|
|
|
h2 {
|
|
font-size: 50px;
|
|
width: auto;
|
|
line-height: 1;
|
|
}
|
|
|
|
h3 {
|
|
|
|
}
|
|
|
|
h4 {
|
|
|
|
}
|
|
|
|
p {
|
|
font-size: 20px;
|
|
line-height: 1.5;
|
|
margin-top: 0px;
|
|
margin-bottom: 20px;
|
|
width: 100%;
|
|
font-weight: 400;
|
|
letter-spacing: .5px;
|
|
}
|
|
|
|
p a {
|
|
color: var(--main-color);
|
|
border-bottom: 1px solid var(--main-color);
|
|
}
|
|
|
|
span {
|
|
font-size: inherit;
|
|
font-weight: inherit;
|
|
font-family: inherit;
|
|
color: inherit;
|
|
letter-spacing: inherit;
|
|
line-height: inherit;
|
|
}
|
|
|
|
span > a {
|
|
font-size: inherit;
|
|
font-weight: inherit;
|
|
font-family: inherit;
|
|
color: inherit;
|
|
letter-spacing: inherit;
|
|
line-height: inherit;
|
|
border: inherit;
|
|
border-color: inherit;
|
|
}
|
|
|
|
span > a:hover {
|
|
border: inherit;
|
|
border-color: inherit;
|
|
}
|
|
|
|
|
|
|
|
|
|
/*###################################################### -- Interactives */
|
|
|
|
button {
|
|
border: none;
|
|
background-color: var(--dark-color);
|
|
padding: 10px 20px;
|
|
color: white;
|
|
cursor: pointer;
|
|
background-image: linear-gradient(var(--main-color),var(--main-color));
|
|
background-repeat: no-repeat;
|
|
background-position: 0px 67px;
|
|
transition: background .3s ease;
|
|
}
|
|
|
|
button:hover {
|
|
background-position: 0px 0px;
|
|
}
|
|
|
|
input, textarea {
|
|
padding: 15px;
|
|
border-radius: 5px;
|
|
border: 1px solid rgba(0,0,0,0.2);
|
|
margin-bottom: 15px;
|
|
width: 100%;
|
|
font-size: 14px;
|
|
}
|
|
|
|
input:focus {
|
|
border: 1px solid blue;
|
|
box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.2);
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*############################################################# -- General classes and IDs -- */
|
|
|
|
|
|
|
|
.social-media-links {
|
|
width: 40px;
|
|
height: 40px;
|
|
border-radius: 50%;
|
|
margin: 5px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
color: white;
|
|
font-size: 18px;
|
|
background-color: var(--sec-color-1);
|
|
padding: 0;
|
|
overflow: hidden;
|
|
}
|
|
|
|
#linkedin img {
|
|
width: 20px;
|
|
height: 20px;
|
|
}
|
|
|
|
/* #mail {
|
|
background-color: var(--sec-color-2);
|
|
} */
|
|
|
|
#mail {
|
|
background-color: var(--main-color);
|
|
}
|
|
|
|
#linkedin {
|
|
background-color: var(--dark-color);
|
|
}
|
|
|
|
#linkedin:hover {
|
|
background-color: var(--main-color);
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.scroll-into-view {
|
|
padding: 0;
|
|
width: 0;
|
|
transition: all .7s cubic-bezier(0.93, 0, 0.09, 1);
|
|
}
|
|
|
|
.scrolled-into-view {
|
|
width: 50%;
|
|
padding: 40px;
|
|
}
|
|
|
|
.scroll-into-view-content, .scroll-into-view-content-2 {
|
|
transform: translateY(80px) rotateX(5deg) translateZ(20px);
|
|
/* transition: all 1s cubic-bezier(0.1, 0.63, 0.355, 1); */
|
|
opacity: 0;
|
|
transform-style: preserve-3d;
|
|
}
|
|
|
|
/* .scrolled-into-view-content {
|
|
transform: none;
|
|
opacity: 1;
|
|
} */
|
|
|
|
|
|
|
|
|
|
|
|
#preloader-container {
|
|
position: fixed;
|
|
width: 100vw;
|
|
height: 100vh;
|
|
top: 0;
|
|
left: 0;
|
|
background-color: #1b239b;
|
|
z-index: 50000;
|
|
}
|
|
|
|
#preloader-container img:nth-child(1) {
|
|
min-width: 110%;
|
|
min-height: 110vh;
|
|
left: -5%;
|
|
top: -5%;
|
|
position: absolute;
|
|
opacity: .2;
|
|
}
|
|
|
|
#preloader-container img:nth-child(2) {
|
|
width: 50px;
|
|
align-self: center;
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
transform: translate(-50%,-50%);
|
|
animation: preloaderanimation 2s ease-in-out infinite normal both;
|
|
}
|
|
|
|
@keyframes preloaderanimation {
|
|
0%{filter: hue-rotate(0deg);}
|
|
50%{filter: hue-rotate(90deg);}
|
|
100%{filter: hue-rotate(0deg);}
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*############################################################# -- Hero -- */
|
|
|
|
.hero-section {
|
|
background-color: #1b239b;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.hero-section > div:nth-child(1) {
|
|
}
|
|
|
|
.hero-section > div:nth-child(2) {
|
|
background-color: white;
|
|
padding: 25vh 40px 40px 6.1vw;
|
|
font-size: 2.8vw;
|
|
display: inline;
|
|
z-index: 100;
|
|
transform-style: preserve-3d;
|
|
perspective: 600px;
|
|
z-index: 100;
|
|
/* opacity: 0;*/
|
|
}
|
|
|
|
.main-text-block {
|
|
font-size: inherit;
|
|
max-width: 80%;
|
|
transform-style: preserve-3d;
|
|
z-index: 100;
|
|
transform: translateZ(10px);
|
|
font-weight: 500;
|
|
}
|
|
|
|
.main-text-block h1 a {
|
|
color: var(--main-color);
|
|
background-image: linear-gradient(var(--main-color),var(--main-color));
|
|
background-position: 0px 5vw;
|
|
background-repeat: no-repeat;
|
|
transition: all .3s ease;
|
|
/* font-weight: 600; */
|
|
}
|
|
.main-text-block h1 a:hover {
|
|
color: var(--dark-color);
|
|
background-position: 0px 4.8vw;
|
|
background-image: linear-gradient(var(--dark-color),var(--dark-color));
|
|
padding: 5px 10px;
|
|
}
|
|
|
|
.hero-text-section-graphic {
|
|
position: absolute;
|
|
top: 0;
|
|
right: 5vw;
|
|
width: 15vw;
|
|
height: 90%;
|
|
background-color: rgba(28,55,102,0.05);
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: flex-end;
|
|
perspective: 600px;
|
|
padding-bottom: 30px;
|
|
transform-style: preserve-3d;
|
|
}
|
|
|
|
.hero-text-section-graphic img, .hero-text-section-graphic a {
|
|
position: relative;
|
|
transform-style: preserve-3d;
|
|
}
|
|
|
|
.hero-text-section-graphic a {
|
|
width: 20px;
|
|
height: 20px;
|
|
}
|
|
|
|
.hero-text-section-graphic img {
|
|
width: 100%;
|
|
}
|
|
|
|
.hero-text-section-graphic > div:nth-of-type(1) {
|
|
position: absolute;
|
|
width: 1vw;
|
|
height: 1vw;
|
|
background-color: var(--sec-color-1);
|
|
top: 30vh;
|
|
left: -6vw;
|
|
transform: translateZ(100px) rotate(5deg);
|
|
}
|
|
|
|
.hero-text-section-graphic > div:nth-of-type(2) {
|
|
position: absolute;
|
|
width: 2vw;
|
|
height: 2vw;
|
|
background-color: var(--sec-color-3);
|
|
bottom: 30vh;
|
|
left: -8vw;
|
|
transform: translateZ(120px) rotate(-25deg);
|
|
z-index: -1;
|
|
}
|
|
|
|
.hero-text-section-graphic > div:nth-of-type(3) {
|
|
position: absolute;
|
|
width: 1.5vw;
|
|
height: 1.5vw;
|
|
background-color: rgba(99,105,176,0.2);
|
|
top: 50vh;
|
|
right: 13vw;
|
|
transform: translateZ(100px) rotate(-2deg);
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Hero Left Hand Section */
|
|
|
|
.main-hero-text {
|
|
font-size: inherit;
|
|
font-weight: 500;
|
|
width: auto;
|
|
display: inline;
|
|
}
|
|
|
|
.hero-section img {
|
|
position: absolute;
|
|
z-index: -1;
|
|
}
|
|
|
|
#clouds {
|
|
min-width: 110%;
|
|
min-height: 110vh;
|
|
left: -5%;
|
|
top: -5%;
|
|
opacity: 1;
|
|
}
|
|
|
|
#mountains {
|
|
width: 100%;
|
|
min-height: 100vh;
|
|
bottom: -20vh;
|
|
/* transition: all .5s ease-out; */
|
|
}
|
|
|
|
.benjamin-image-block-wrapper {
|
|
width: 15vw;
|
|
height: 80vh;
|
|
position: absolute;
|
|
bottom: -10px;
|
|
background-color: transparent;
|
|
left: 15vw;
|
|
background-size: cover;
|
|
opacity: 1;
|
|
padding: 0;
|
|
transform-style: preserve-3d;
|
|
}
|
|
|
|
.benjamin-image-block {
|
|
width: 100%;
|
|
height: 100%;
|
|
background-color: var(--sec-color-2);
|
|
background-image: url("images/hero-image-ben.jpg");
|
|
background-size: cover;
|
|
opacity: .8;
|
|
transform-style: preserve-3d;
|
|
transition: all .8s cubic-bezier(0.1, 0.63, 0.355, 1);
|
|
}
|
|
|
|
.benjamin-image-block-overlay {
|
|
width: 100%;
|
|
height: 100%;
|
|
opacity: 1;
|
|
transform-style: preserve-3d;
|
|
z-index: 10;
|
|
transition: all 1.5s cubic-bezier(0.1, 0.63, 0.355, 1);
|
|
}
|
|
|
|
.benjamin-big-text-block {
|
|
position: absolute;
|
|
/* width: 500px;
|
|
height: 300px; */
|
|
font-size: 10.5vw;
|
|
bottom: 0px;
|
|
left: 5%;
|
|
font-weight: 700;
|
|
line-height: .8;
|
|
color: white;
|
|
mix-blend-mode: overlay;
|
|
filter: drop-shadow(0 0 20px rgba(0,0,0,0.4));
|
|
padding: 40px;
|
|
transform-style: preserve-3d;
|
|
/* background-color: #747bef; */
|
|
/* transition: all .5s ease; */
|
|
}
|
|
|
|
.main-cta-button {
|
|
font-size: 24px;
|
|
padding: 0;
|
|
margin-top: 20px;
|
|
background-color: var(--sec-color-1);
|
|
transition: all .3s ease-out;
|
|
background-image: linear-gradient(var(--dark-color),var(--dark-color));
|
|
padding: 15px 0px;
|
|
transform: translateZ(10px);
|
|
}
|
|
|
|
.main-cta-button a {
|
|
/* font-size: 24px; */
|
|
padding: 15px 40px;
|
|
color: white;
|
|
}
|
|
|
|
.main-cta-button:hover {
|
|
background-image: linear-gradient(var(--dark-color),var(--dark-color));
|
|
background-position: 0px 0px;
|
|
background-repeat: no-repeat;
|
|
}
|
|
|
|
.main-cta-button a:hover {
|
|
/* font-size: 24px; */
|
|
padding: 15px 40px;
|
|
}
|
|
|
|
.hero-scroll-down-block {
|
|
position: absolute;
|
|
right: 7vw;
|
|
bottom: 10vh;
|
|
height: auto;
|
|
}
|
|
|
|
.hero-scroll-down-block > a {
|
|
display: flex;
|
|
flex-direction: column;
|
|
height: auto;
|
|
align-items: center;
|
|
}
|
|
|
|
.hero-scroll-down-block div {
|
|
transform: rotate(-90deg);
|
|
font-size: 70px;
|
|
}
|
|
|
|
.rotating-text-image {
|
|
position: absolute;
|
|
width: 120px;
|
|
height: 120px;
|
|
opacity: .3;
|
|
top: 50%;
|
|
left: 50%;
|
|
transform: translate(-50%, -50%);
|
|
}
|
|
|
|
.service-display-block {
|
|
width: 300px;
|
|
height: 200px;
|
|
position: absolute;
|
|
background-color: white;
|
|
border-radius: 20px;
|
|
z-index: 200;
|
|
top: -20px;
|
|
right: -200px;
|
|
box-shadow: 0px 0px 30px -5px rgba(0,0,0,0.2);
|
|
transition: all .8s cubic-bezier(0.075, 0.82, 0.165, 1);
|
|
opacity: 0;
|
|
transform-style: preserve-3d;
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*############################################################# -- My Work -- */
|
|
|
|
.my-work-section {
|
|
|
|
}
|
|
|
|
.my-work-section > div:nth-of-type(1) {
|
|
color: rgba(0,0,0,0.6);
|
|
align-items: flex-end;
|
|
}
|
|
|
|
.my-work-section > div:nth-of-type(2) {
|
|
background-color: var(--sec-color-2);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
perspective: 600px;
|
|
transform-style: preserve-3d;
|
|
padding: 0;
|
|
/* width: 20%;*/
|
|
}
|
|
|
|
.my-work-section h2 {
|
|
text-align: right;
|
|
color: rgba(0,0,0,.8);
|
|
}
|
|
|
|
.my-work-section p {
|
|
text-align: right;
|
|
}
|
|
|
|
.portfolio-items-container {
|
|
width: 100%;
|
|
height: 100%;
|
|
/* background-color: white;
|
|
box-shadow: 0px 10px 20px -5px rgba(0,0,0,0.2);
|
|
transform-style: preserve-3d; */
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
perspective: 600px;
|
|
transform-style: preserve-3d;
|
|
}
|
|
|
|
.portfolio-buttons-container {
|
|
display: flex;
|
|
}
|
|
|
|
.portfolio-buttons-container button {
|
|
width: 50px;
|
|
height: 50px;
|
|
background-color: var(--main-color);
|
|
border-radius: 50%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
margin: 5px;
|
|
transition: background .3s ease-out;
|
|
}
|
|
|
|
.portfolio-buttons-container button:hover {
|
|
background-color: var(--dark-color);
|
|
background-position: -100px 0px;
|
|
}
|
|
|
|
.portfolio-buttons-container button img {
|
|
width: 15px;
|
|
height: 15px;
|
|
}
|
|
|
|
.portfolio-right-button {
|
|
transform: rotate(-90deg);
|
|
}
|
|
|
|
.portfolio-left-button {
|
|
transform: rotate(90deg);
|
|
}
|
|
|
|
.portfolio-entry {
|
|
position: absolute;
|
|
width: 80%;
|
|
height: 80%;
|
|
background-color: yellow;
|
|
overflow: hidden;
|
|
background-color: white;
|
|
box-shadow: 0px 10px 20px -5px rgba(0,0,0,0.2);
|
|
transform-style: preserve-3d;
|
|
}
|
|
|
|
.portfolio-entry > img {
|
|
width: 100%;
|
|
position: relative;
|
|
pointer-events: none;
|
|
}
|
|
|
|
.portfolio-entry > div:nth-of-type(1) {
|
|
width: 90%;
|
|
padding: 40px 40px 80px 40px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
background-color: rgba(28,55,102,0.9);
|
|
color: white;
|
|
position: absolute;
|
|
z-index: 2000;
|
|
bottom: 20px;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
text-align: center;
|
|
opacity: 0;
|
|
transition: all .4s cubic-bezier( 0.1, 0.63, 0.355, 1 );
|
|
}
|
|
|
|
.portfolio-entry:hover > div:nth-of-type(1) {
|
|
opacity: 1;
|
|
}
|
|
|
|
.portfolio-entry > div:nth-of-type(1) h3, .portfolio-entry div:nth-of-type(1) p {
|
|
text-align: inherit;
|
|
}
|
|
|
|
.portfolio-entry > div:nth-of-type(1) p {
|
|
font-size: 16px;
|
|
}
|
|
|
|
.portfolio-entry > div:nth-of-type(2) {
|
|
padding: 10px;
|
|
display: flex;
|
|
align-items: center;
|
|
color: white;
|
|
position: absolute;
|
|
z-index: 2000;
|
|
bottom: 10px;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
transition: all .4s cubic-bezier( 0.1, 0.63, 0.355, 1 );
|
|
}
|
|
|
|
.portfolio-entry:hover > div:nth-of-type(2) {
|
|
bottom: 30px;
|
|
}
|
|
|
|
.portfolio-entry:hover .specialty-skill {
|
|
background-color: var(--sec-color-1);
|
|
}
|
|
|
|
.portfolio-entry:hover .specialty-skill:hover {
|
|
background-color: rgba(99,105,176,0.6);
|
|
}
|
|
|
|
.portfolio-entry .specialty-skill {
|
|
background-color: var(--main-color);
|
|
width: 40px;
|
|
height: 40px;
|
|
padding: 10px;
|
|
}
|
|
|
|
.portfolio-entry .specialty-skill img {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
#github-to-asana-animation {
|
|
width: 250px;
|
|
height: 400px;
|
|
filter: drop-shadow(0px 10px 20px rgba(0,0,0,0.2));
|
|
position: absolute;
|
|
top: 20px;
|
|
right: 20px;
|
|
}
|
|
|
|
#github-to-asana > img {
|
|
width: 80%;
|
|
box-shadow: 0px 0px 40px -5px rgba(0,0,0,0.2);
|
|
margin-left: 40px;
|
|
margin-top: -550px;
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*############################################################# -- About Me -- */
|
|
|
|
.about-me-section {
|
|
justify-content: flex-end;
|
|
}
|
|
|
|
.about-me-section > div:nth-child(1) {
|
|
background-color: var(--sec-color-3);
|
|
overflow: hidden;
|
|
padding: 0;
|
|
align-items: flex-start;
|
|
justify-content: flex-start;
|
|
}
|
|
|
|
.about-me-section img {
|
|
mix-blend-mode: multiply;
|
|
opacity: 0;
|
|
position: relative;
|
|
top: -150px;
|
|
width: 100%;
|
|
}
|
|
|
|
.about-me-section > div:nth-child(2) p {
|
|
color: rgba(0,0,0,.7);
|
|
}
|
|
|
|
|
|
|
|
|
|
/*############################################################# -- My Specialties -- */
|
|
|
|
.my-specialties-section {
|
|
justify-content: flex-start;
|
|
align-items: center;
|
|
flex-direction: column;
|
|
background-color: var(--dark-color);
|
|
color: white;
|
|
text-align: center;
|
|
padding: 150px 80px 120px 80px;
|
|
height: 100vh;
|
|
justify-content: center;
|
|
}
|
|
|
|
.my-specialties-section h2 {
|
|
|
|
}
|
|
|
|
.my-specialties-section p {
|
|
color: rgba(255,255,255,0.70);
|
|
max-width: 800px;
|
|
}
|
|
|
|
.my-specialties-section > div {
|
|
max-width: 960px;
|
|
width: 100%;
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
flex-direction: row;
|
|
padding: 0;
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
/* .my-specialties-section > div > div {
|
|
width: 80px;
|
|
height: 80px;
|
|
background-color: var(--main-color);
|
|
margin: 10px;
|
|
border-radius: 50%;
|
|
transform-style: preserve-3d;
|
|
padding: 20px;
|
|
cursor: pointer;
|
|
transition: all .8s cubic-bezier(0.075, 0.82, 0.165, 1);
|
|
position: relative;
|
|
} */
|
|
|
|
.specialty-skill {
|
|
width: 80px;
|
|
height: 80px;
|
|
background-color: var(--main-color);
|
|
margin: 10px;
|
|
border-radius: 50%;
|
|
transform-style: preserve-3d;
|
|
padding: 20px;
|
|
/* cursor: pointer; */
|
|
transition: all .8s cubic-bezier(0.075, 0.82, 0.165, 1);
|
|
position: relative;
|
|
}
|
|
|
|
.my-specialties-section > div > div:hover {
|
|
background-color: rgba(99,105,176,0.6);
|
|
}
|
|
|
|
.specialty-skill:hover {
|
|
background-color: rgba(99,105,176,0.6);
|
|
}
|
|
|
|
.my-specialties-section > div > div:nth-of-type(4) {
|
|
/* padding: 10px; */
|
|
}
|
|
|
|
.my-specialties-section > div img {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
/* .my-specialties-section > div > div > div {
|
|
padding: 20px;
|
|
border-radius: 10px;
|
|
background-color: var(--sec-color-1);
|
|
color: white;
|
|
position: absolute;
|
|
top: -70px;
|
|
left: 50%;
|
|
box-shadow: 0px 10px 20px -5px rgba(0,0,0,0.3);
|
|
white-space: nowrap;
|
|
transition: all .4s cubic-bezier(0.075, 0.82, 0.165, 1);
|
|
opacity: 0;
|
|
pointer-events: none;
|
|
transform: translateX(-50%);
|
|
} */
|
|
|
|
.specialty-skill > div {
|
|
padding: 20px;
|
|
border-radius: 10px;
|
|
background-color: var(--sec-color-1);
|
|
color: white;
|
|
position: absolute;
|
|
top: -70px;
|
|
left: 50%;
|
|
box-shadow: 0px 10px 20px -5px rgba(0,0,0,0.3);
|
|
white-space: nowrap;
|
|
transition: all .4s cubic-bezier(0.075, 0.82, 0.165, 1);
|
|
opacity: 0;
|
|
pointer-events: none;
|
|
transform: translateX(-50%);
|
|
}
|
|
|
|
/* .my-specialties-section > div > div:hover > div {
|
|
opacity: 1;
|
|
top: -80px;
|
|
} */
|
|
|
|
.specialty-skill:hover > div {
|
|
opacity: 1;
|
|
top: -80px;
|
|
}
|
|
|
|
.my-specialties-section > button {
|
|
background: transparent;
|
|
border: 2px solid rgba(255,255,255,0.4);
|
|
}
|
|
|
|
.my-specialties-section > button:hover {
|
|
background: var(--sec-color-1);
|
|
border: 2px solid transparent;
|
|
}
|
|
|
|
/* .my-specialties-section > button::before {
|
|
content: "";
|
|
width: 200px;
|
|
height: 50px;
|
|
background-color: salmon;
|
|
position: absolute;
|
|
top: -200px;
|
|
} */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*############################################################# -- Contact Me/footer -- */
|
|
|
|
.contact-section {
|
|
position: relative;
|
|
justify-content: flex-start;
|
|
}
|
|
|
|
.contact-section > div:nth-of-type(1) {
|
|
align-items: flex-end;
|
|
text-align: right;
|
|
}
|
|
|
|
.contact-section > div:nth-of-type(1) a {
|
|
color: var(--main-color);
|
|
border-bottom: 1px solid var(--main-color);
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.contact-section > div:nth-of-type(1) > div {
|
|
display: flex;
|
|
align-items: center;
|
|
height: 50px;
|
|
border: 1px solid #efefef;
|
|
padding: 10px;
|
|
color: #777;
|
|
margin-top: 20px;
|
|
}
|
|
|
|
.contact-section > div:nth-of-type(1) > div > div {
|
|
font-size: 14px;
|
|
color: inherit;
|
|
}
|
|
|
|
.contact-section > div:nth-of-type(2) {
|
|
background-color: var(--sec-color-1);
|
|
height: 100%;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
transform-style: preserve-3d;
|
|
}
|
|
|
|
.contact-section > div:nth-of-type(2) > div {
|
|
transform-style: preserve-3d;
|
|
perspective: 600px;
|
|
}
|
|
|
|
.contact-section-controller {
|
|
width: 100%;
|
|
height: 80px;
|
|
position: absolute;
|
|
bottom: 0;
|
|
left: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
.footer-bar {
|
|
position: absolute;
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: flex-end;
|
|
width: 960px;
|
|
height: 240px;
|
|
padding: 0px;
|
|
bottom: 40px;
|
|
pointer-events: none;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
}
|
|
|
|
.main-cta-form {
|
|
max-width: 500px;
|
|
/* mix-blend-mode: darken;*/
|
|
transform-style: preserve-3d;
|
|
}
|
|
|
|
/* .main-cta-form * {
|
|
transform-style: preserve-3d;
|
|
transition: all .3s ease;
|
|
} */
|
|
|
|
.main-cta-form input {
|
|
background-color: transparent;
|
|
border: none;
|
|
border-bottom: 2px solid white;
|
|
height: 50px;
|
|
color: white;
|
|
border-radius: 0px;
|
|
margin-bottom: 0px;
|
|
font-size: 20px;
|
|
}
|
|
|
|
.main-cta-form input:focus {
|
|
outline: 2px solid white;
|
|
box-shadow: none;
|
|
}
|
|
|
|
.main-cta-form textarea {
|
|
background-color: transparent;
|
|
border: none;
|
|
border-bottom: 2px solid white;
|
|
color: white;
|
|
border-radius: 0px;
|
|
margin-bottom: 20px;
|
|
font-size: 20px;
|
|
}
|
|
|
|
.main-cta-form textarea::placeholder,
|
|
.main-cta-form input::placeholder {
|
|
color: rgba(255,255,255,0.70);
|
|
}
|
|
|
|
.main-cta-form textarea:focus {
|
|
outline: 2px solid white;
|
|
}
|
|
|
|
.main-cta-form button {
|
|
width: 100%;
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* ################################################### Animations*/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*##################################################################################################### -- Mobile Styles */
|
|
|
|
@media (max-width: 1200px) {
|
|
|
|
section {
|
|
height: auto;
|
|
}
|
|
|
|
section > div {
|
|
padding: 100px 60px;
|
|
}
|
|
|
|
.hero-section > div:nth-child(2) {
|
|
padding: 140px 60px 60px 60px;
|
|
font-size: 36px;
|
|
}
|
|
|
|
.hero-section {
|
|
height: 600px;
|
|
}
|
|
|
|
.hero-text-section-graphic {
|
|
height: 100%;
|
|
width: 40%;
|
|
}
|
|
|
|
.main-text-block {
|
|
max-width: 100%;
|
|
}
|
|
|
|
.main-text-block h1 a {
|
|
background-position: 0px 60px;
|
|
}
|
|
|
|
.main-text-block h1 a:hover {
|
|
background-position: 0px 50px;
|
|
}
|
|
|
|
.benjamin-image-block-wrapper {
|
|
height: 80%;
|
|
width: 200px;
|
|
}
|
|
|
|
.contact-section {
|
|
height: 100vh;
|
|
}
|
|
|
|
section > div p {
|
|
width: 100%;
|
|
}
|
|
|
|
.hero-text-section-graphic > div:nth-of-type(1) {
|
|
display: none;
|
|
}
|
|
|
|
.hero-text-section-graphic > div:nth-of-type(2) {
|
|
display: none;
|
|
}
|
|
|
|
.hero-text-section-graphic > div:nth-of-type(3) {
|
|
display: none;
|
|
}
|
|
|
|
.about-me-section > div:nth-child(1) {
|
|
height: 600px;
|
|
}
|
|
|
|
.about-me-section > div:nth-child(2) {
|
|
max-height: 600px;
|
|
}
|
|
|
|
.about-me-section img {
|
|
width: 120%;
|
|
top: -50px;
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@media (max-width: 800px) {
|
|
|
|
.hamburger-button {
|
|
display: flex;
|
|
}
|
|
|
|
header > a > div {
|
|
position: absolute;
|
|
left: 46px;
|
|
}
|
|
|
|
header img:not(#linkedin img) {
|
|
margin-right: 0;
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
section > div p {
|
|
width: 100%;
|
|
text-align: center;
|
|
}
|
|
|
|
section {
|
|
flex-direction: column;
|
|
}
|
|
|
|
section > div {
|
|
width: 100%;
|
|
align-items: center;
|
|
}
|
|
|
|
h1,h2,h3,h4,h4 {
|
|
text-align: center;
|
|
width: 100%;
|
|
}
|
|
|
|
section {
|
|
height: auto;
|
|
}
|
|
|
|
section > div {
|
|
padding: 60px 40px;
|
|
}
|
|
|
|
.scrolled-into-view {
|
|
width: 100%;
|
|
}
|
|
|
|
header {
|
|
overflow: visible;
|
|
}
|
|
|
|
nav {
|
|
/* opacity: .4; */
|
|
flex-direction: column;
|
|
width: 100%;
|
|
position: relative;
|
|
}
|
|
|
|
header > div:nth-of-type(1) {
|
|
position: fixed;
|
|
top: 0px;
|
|
opacity: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
pointer-events: none;
|
|
overflow: hidden;
|
|
height: 0px;
|
|
background-color: white;
|
|
border-bottom: 2px solid #ddd;
|
|
z-index: 0;
|
|
padding-top: 120px;
|
|
box-shadow: 0px 10px 20px rgba(0,0,0,0.1);
|
|
}
|
|
|
|
header > div:nth-of-type(2) {
|
|
position: relative;
|
|
transform-style: preserve-3d;
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Hero section */
|
|
|
|
.hero-section {
|
|
flex-direction: row;
|
|
transition: all .5s ease;
|
|
height: 500px;
|
|
}
|
|
|
|
.hero-section > div:nth-child(2) {
|
|
|
|
}
|
|
|
|
.hero-text-section-graphic {
|
|
height: 100%;
|
|
width: 40%;
|
|
right: 0;
|
|
}
|
|
|
|
.benjamin-image-block-wrapper {
|
|
|
|
}
|
|
|
|
#clouds {
|
|
height: 100%;
|
|
min-height: auto;
|
|
top: auto;
|
|
bottom: 0;
|
|
min-width: auto;
|
|
/* width: 1200px; */
|
|
}
|
|
|
|
#mountains {
|
|
height: auto;
|
|
min-height: auto;
|
|
width: 1200px;
|
|
}
|
|
|
|
.hero-section > div:nth-child(1) {
|
|
width: 20%;
|
|
}
|
|
|
|
.hero-section > div:nth-child(2) {
|
|
padding: 120px 40px 120px 60px;
|
|
font-size: 30px;
|
|
}
|
|
|
|
.main-text-block {
|
|
padding: 0;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.benjamin-big-text-block {
|
|
position: absolute;
|
|
font-size: 8.5vw;
|
|
bottom: 0px;
|
|
left: -25%;
|
|
}
|
|
|
|
.benjamin-image-block-wrapper {
|
|
height: 70%;
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* My work section */
|
|
|
|
.my-work-section {
|
|
height: auto;
|
|
padding: 60px 0;
|
|
}
|
|
|
|
.my-work-section > div:nth-child(2) {
|
|
width: 100%;
|
|
height: auto;
|
|
padding: 40px;
|
|
}
|
|
|
|
.my-work-section h2 {
|
|
text-align: center;
|
|
}
|
|
|
|
.my-work-section p {
|
|
text-align: center;
|
|
}
|
|
|
|
.portfolio-items-container {
|
|
height: 600px;
|
|
}
|
|
|
|
.portfolio-buttons-container {
|
|
justify-content: center;
|
|
}
|
|
|
|
.my-work-section > div:nth-of-type(1) {
|
|
align-items: center;
|
|
}
|
|
|
|
.portfolio-entry {
|
|
width: 100%;
|
|
height: 500px;
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* About Me section */
|
|
.about-me-section {
|
|
justify-content: flex-start;
|
|
flex-direction: column-reverse;
|
|
}
|
|
|
|
.about-me-section > div:nth-child(1) {
|
|
height: 600px;
|
|
}
|
|
|
|
.about-me-section > div:nth-child(2) {
|
|
padding: 60px;
|
|
}
|
|
|
|
.about-me-section img {
|
|
top: -100px;
|
|
width: 100%;
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Contact Me section */
|
|
.contact-section {
|
|
height: auto;
|
|
}
|
|
|
|
.contact-section > div:nth-of-type(1) {
|
|
align-items: center;
|
|
}
|
|
|
|
.contact-section-controller {
|
|
height: 0px;
|
|
display: none;
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@media (max-width: 600px) {
|
|
|
|
h1 {
|
|
font-size: 36px;
|
|
}
|
|
|
|
h2 {
|
|
font-size: 36px;
|
|
}
|
|
|
|
section > div {
|
|
padding: 60px 20px;
|
|
}
|
|
|
|
header {
|
|
padding: 20px;
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Hero section */
|
|
|
|
.hero-section {
|
|
flex-direction: column;
|
|
align-items: center;
|
|
overflow: visible;
|
|
z-index: 100;
|
|
height: auto;
|
|
}
|
|
|
|
.hero-section > div:nth-child(2) {
|
|
padding: 40px;
|
|
width: 100%;
|
|
}
|
|
|
|
.hero-section > div:nth-child(1) {
|
|
width: 100%;
|
|
height: 400px;
|
|
}
|
|
|
|
.hero-text-section-graphic {
|
|
height: 120%;
|
|
width: 40%;
|
|
}
|
|
|
|
.benjamin-image-block-wrapper {
|
|
top: 0px;
|
|
bottom: auto;
|
|
left: auto;
|
|
right: auto;
|
|
margin-left: 80px;
|
|
}
|
|
|
|
#clouds {
|
|
height: 100%;
|
|
min-height: auto;
|
|
top: -100px;
|
|
bottom: 0;
|
|
min-width: auto;
|
|
/* width: 1200px; */
|
|
}
|
|
|
|
#mountains {
|
|
top: -200px;
|
|
bottom: auto;
|
|
}
|
|
|
|
.main-text-block {
|
|
padding: 0;
|
|
}
|
|
|
|
.benjamin-big-text-block {
|
|
top: 190px;
|
|
font-size: 100px;
|
|
bottom: auto;
|
|
left: 0;
|
|
}
|
|
|
|
.benjamin-image-block-wrapper {
|
|
height: 70%;
|
|
}
|
|
|
|
|
|
/* My work section */
|
|
|
|
.my-work-section > div:nth-child(2) {
|
|
padding: 20px;
|
|
}
|
|
|
|
.portfolio-items-container {
|
|
height: 600px;
|
|
width: 100%;
|
|
}
|
|
|
|
.portfolio-entry > div:nth-of-type(2) {
|
|
flex-wrap: wrap;
|
|
justify-content: center;
|
|
width: 100%;
|
|
}
|
|
|
|
.portfolio-entry > div:nth-of-type(1) {
|
|
padding: 40px 20px 160px 20px;
|
|
width: 100%;
|
|
bottom: 0;
|
|
height: 100%;
|
|
}
|
|
|
|
#github-to-asana > img {
|
|
margin-left: 0px;
|
|
margin-top: -550px;
|
|
width: 90%;
|
|
}
|
|
|
|
#github-to-asana-animation {
|
|
width: 200px;
|
|
height: 300px;
|
|
position: absolute;
|
|
top: 10px;
|
|
right: 10px;
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.about-me-section > div:nth-child(2) {
|
|
padding: 20px;
|
|
}
|
|
|
|
.about-me-section img {
|
|
top: 0;
|
|
width: 120%;
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Contact Me section */
|
|
.contact-section {
|
|
height: auto;
|
|
}
|
|
|
|
.contact-section > div:nth-of-type(1) {
|
|
align-items: center;
|
|
}
|
|
|
|
.contact-section-controller {
|
|
height: 0px;
|
|
display: none;
|
|
}
|
|
|
|
|
|
/* My Specialties Section */
|
|
|
|
.my-specialties-section {
|
|
padding: 100px 20px;
|
|
height: auto;
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@media (max-width: 430px) {
|
|
|
|
p {
|
|
font-size: 16px;
|
|
}
|
|
|
|
/* Hero section */
|
|
|
|
.hero-section > div:nth-child(2) {
|
|
padding: 60px 40PX;
|
|
font-size: 24PX;
|
|
}
|
|
|
|
.hero-section > div:nth-child(1) {
|
|
width: 100%;
|
|
height: 400px;
|
|
}
|
|
|
|
.benjamin-image-block-wrapper {
|
|
width: 50%;
|
|
top: 0px;
|
|
bottom: auto;
|
|
left: auto;
|
|
right: 0;
|
|
margin-left: 0px;
|
|
}
|
|
|
|
#clouds {
|
|
height: 100%;
|
|
min-height: auto;
|
|
top: -100px;
|
|
bottom: 0;
|
|
min-width: auto;
|
|
/* width: 1200px; */
|
|
}
|
|
|
|
#mountains {
|
|
top: -200px;
|
|
bottom: auto;
|
|
left: -500px;
|
|
}
|
|
|
|
.benjamin-big-text-block {
|
|
top: 235px;
|
|
font-size: 75px;
|
|
bottom: auto;
|
|
left: 0;
|
|
}
|
|
|
|
.benjamin-image-block-wrapper {
|
|
height: 70%;
|
|
}
|
|
|
|
header > div:nth-of-type(2) {
|
|
margin-top: 165px;
|
|
opacity: 0;
|
|
border-top: 1px solid #ddd;
|
|
width: 100%;
|
|
justify-content: center;
|
|
padding-top: 15px;
|
|
}
|
|
|
|
header > div:nth-of-type(1) {
|
|
padding-top: 200px;
|
|
}
|
|
|
|
.hero-text-section-graphic {
|
|
height: 105%;
|
|
width: 60%;
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@media (max-width: 382px) {
|
|
|
|
.about-me-section img {
|
|
width: auto;
|
|
min-height: 100%;
|
|
top: 0;
|
|
}
|
|
}
|
|
|
|
|
|
@media (max-width: 320px) {
|
|
|
|
#github-to-asana > img {
|
|
width: 120%;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|