2020-12-02 10:59:03 -05:00
|
|
|
/*==================================================
|
|
|
|
Main
|
|
|
|
==================================================*/
|
|
|
|
|
2021-01-13 17:02:16 -05:00
|
|
|
* {
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
2020-12-02 14:12:33 -05:00
|
|
|
}
|
|
|
|
|
2021-01-13 17:02:16 -05:00
|
|
|
html, body {
|
2020-12-02 10:59:03 -05:00
|
|
|
margin: 0;
|
2021-01-13 17:02:16 -05:00
|
|
|
padding: 0;
|
2021-01-13 19:16:17 -05:00
|
|
|
overflow: hidden;
|
2020-12-02 10:59:03 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
::-webkit-scrollbar {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*==================================================
|
2021-01-13 17:02:16 -05:00
|
|
|
Common Classes
|
2020-12-02 10:59:03 -05:00
|
|
|
==================================================*/
|
|
|
|
|
2021-01-13 17:02:16 -05:00
|
|
|
.block {
|
|
|
|
height: 100vh;
|
2021-01-14 14:40:08 -05:00
|
|
|
background-color: #f5f5f5;
|
2021-01-13 17:02:16 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.next {
|
|
|
|
height: 80px;
|
|
|
|
width: 80px;
|
|
|
|
background-color: #fff;
|
|
|
|
color: aquamarine;
|
2020-12-02 10:59:03 -05:00
|
|
|
position: absolute;
|
2021-01-13 17:02:16 -05:00
|
|
|
bottom: 50px;
|
|
|
|
right: 50px;
|
|
|
|
box-shadow: 0 0 8px #262626;
|
2020-12-01 18:21:50 -05:00
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
2021-01-13 17:02:16 -05:00
|
|
|
font-size: 250%;
|
|
|
|
border-radius: 50%;
|
|
|
|
transition: 0.8s;
|
|
|
|
font-weight: 900;
|
|
|
|
}
|
|
|
|
|
2021-01-14 07:30:54 -05:00
|
|
|
.last {
|
|
|
|
height: 80px;
|
|
|
|
width: 80px;
|
|
|
|
background-color: #fff;
|
|
|
|
color: aquamarine;
|
2021-01-14 14:40:08 -05:00
|
|
|
position: relative;
|
2021-01-14 07:30:54 -05:00
|
|
|
bottom: 50px;
|
|
|
|
left: 50px;
|
|
|
|
box-shadow: 0 0 8px #262626;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
font-size: 250%;
|
|
|
|
border-radius: 50%;
|
|
|
|
transition: 0.8s;
|
|
|
|
font-weight: 900;
|
|
|
|
}
|
|
|
|
|
2021-01-13 17:02:16 -05:00
|
|
|
.next:hover {
|
|
|
|
transform: rotate(720deg);
|
2020-12-01 18:21:50 -05:00
|
|
|
}
|
|
|
|
|
2021-01-14 07:30:54 -05:00
|
|
|
.last:hover {
|
|
|
|
transform: rotate(720deg);
|
|
|
|
}
|
|
|
|
|
2021-01-13 17:02:16 -05:00
|
|
|
.arrow {
|
2021-01-13 19:13:19 -05:00
|
|
|
animation: nudge 3s linear infinite;
|
2021-01-13 17:02:16 -05:00
|
|
|
transition: .2s;
|
2021-01-13 19:13:19 -05:00
|
|
|
transform: scale(1);
|
2021-01-13 17:02:16 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes nudge {
|
|
|
|
0% {
|
|
|
|
margin-right: 0px;
|
|
|
|
}
|
2021-01-13 19:13:19 -05:00
|
|
|
20% {
|
2021-01-13 17:02:16 -05:00
|
|
|
margin-right: -8px;
|
|
|
|
}
|
2021-01-13 19:13:19 -05:00
|
|
|
40% {
|
|
|
|
margin-right: 0px;
|
|
|
|
}
|
|
|
|
60% {
|
|
|
|
margin-right: -8px;
|
|
|
|
}
|
|
|
|
80% {
|
|
|
|
margin-right: 0px;
|
|
|
|
}
|
|
|
|
100% {
|
2021-01-13 17:02:16 -05:00
|
|
|
margin-right: 0px;
|
|
|
|
}
|
2020-12-01 18:21:50 -05:00
|
|
|
}
|
|
|
|
|
2021-01-14 07:30:54 -05:00
|
|
|
/* Links */
|
|
|
|
|
|
|
|
/* Should have nice hover that shows some content from link */
|
|
|
|
|
2020-12-02 10:59:03 -05:00
|
|
|
/*==================================================
|
2021-01-13 17:02:16 -05:00
|
|
|
Landing
|
2020-12-02 10:59:03 -05:00
|
|
|
==================================================*/
|
|
|
|
|
2021-01-13 17:02:16 -05:00
|
|
|
.landing {
|
|
|
|
height: 100vh;
|
|
|
|
background-color: #f5f5f5;
|
|
|
|
}
|
|
|
|
|
|
|
|
.text {
|
|
|
|
text-align: center;
|
|
|
|
font-family: Nunito;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Hi Animation */
|
|
|
|
|
|
|
|
.hi {
|
|
|
|
padding: 50px;
|
|
|
|
font-size: 250%;
|
|
|
|
display: inline-block;
|
|
|
|
transition: all .3s;
|
|
|
|
transition-delay: .3s;
|
|
|
|
}
|
|
|
|
|
|
|
|
.landing:hover .hi {
|
|
|
|
color: #f9f9f9;
|
|
|
|
font-size: 280%;
|
|
|
|
background-color: #262626;
|
|
|
|
border-radius: 2%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.hi:before, .hi:after {
|
|
|
|
content: "";
|
|
|
|
position: absolute;
|
|
|
|
height: 50px;
|
|
|
|
width: 50px;
|
|
|
|
background-color: #262626;
|
|
|
|
border-radius: 50%;
|
|
|
|
transition: all 0.3s;
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.hi:before {
|
|
|
|
left: -50px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.hi:after {
|
|
|
|
right: -50px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.landing:hover .hi:before {
|
|
|
|
left: 50%;
|
|
|
|
transform: scale(1.5);
|
|
|
|
animation: hi-opacity .6s 1 forwards;
|
|
|
|
}
|
|
|
|
|
|
|
|
.landing:hover .hi:after {
|
|
|
|
right: 50%;
|
|
|
|
transform: scale(1.5);
|
|
|
|
animation: hi-opacity .6s 1 forwards;
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes hi-opacity {
|
|
|
|
0% {
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
50% {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
100% {
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* About Me */
|
|
|
|
|
|
|
|
.about-me {
|
|
|
|
margin: 0 80px;
|
|
|
|
font-size: 120%;
|
|
|
|
transform: translateY(-50px);
|
|
|
|
opacity: 0;
|
|
|
|
transition: all 1.5s;
|
|
|
|
transition-delay: .6s;
|
|
|
|
}
|
|
|
|
|
|
|
|
.landing:hover .about-me {
|
|
|
|
transform: translateY(2px);
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
|
2021-01-14 07:30:54 -05:00
|
|
|
/*==================================================
|
|
|
|
Vegetable Dash
|
2021-01-14 14:40:08 -05:00
|
|
|
==================================================*/
|
2021-01-13 17:02:16 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*==================================================
|
|
|
|
Main Sectors
|
|
|
|
==================================================
|
|
|
|
|
2020-12-02 10:59:03 -05:00
|
|
|
.project {
|
|
|
|
height: 100vh;
|
2020-12-02 14:12:33 -05:00
|
|
|
overflow: scroll;
|
2020-12-02 11:25:05 -05:00
|
|
|
scroll-snap-align: start;
|
2020-12-02 10:59:03 -05:00
|
|
|
}
|
|
|
|
|
2021-01-13 17:02:16 -05:00
|
|
|
#vegetable-dash {
|
|
|
|
height: 100vh;
|
|
|
|
width: 100%;
|
|
|
|
background-color: #272727;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
#glish-translate {
|
|
|
|
height: 100vh;
|
|
|
|
width: 100%;
|
|
|
|
background-color: #f5f5f5;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
2020-12-01 18:21:50 -05:00
|
|
|
#gold-rush {
|
|
|
|
height: 100vh;
|
2020-12-02 10:59:03 -05:00
|
|
|
width: 100%;
|
2020-12-01 18:21:50 -05:00
|
|
|
background-color: #272727;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
2020-12-02 10:59:03 -05:00
|
|
|
#incremental {
|
|
|
|
height: 100vh;
|
|
|
|
width: 100%;
|
2021-01-13 17:02:16 -05:00
|
|
|
background-color: #f5f5f5;
|
2020-12-02 10:59:03 -05:00
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
#style {
|
|
|
|
height: 100vh;
|
|
|
|
width: 100%;
|
|
|
|
background-color: #282828;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
#hillside {
|
|
|
|
height: 100vh;
|
|
|
|
width: 100%;
|
2021-01-13 17:02:16 -05:00
|
|
|
background-color: #f5f5f5;
|
2020-12-02 10:59:03 -05:00
|
|
|
position: relative;
|
2020-12-01 18:21:50 -05:00
|
|
|
}
|
|
|
|
|
2020-12-02 10:59:03 -05:00
|
|
|
#schoolarly-bay {
|
2020-12-01 18:21:50 -05:00
|
|
|
height: 100vh;
|
2020-12-02 10:59:03 -05:00
|
|
|
width: 100%;
|
|
|
|
background-color: #282828;
|
|
|
|
position: relative;
|
2020-12-01 18:21:50 -05:00
|
|
|
}
|
2020-12-02 10:59:03 -05:00
|
|
|
|
|
|
|
#squirrel {
|
|
|
|
height: 100vh;
|
|
|
|
width: 100%;
|
2021-01-13 17:02:16 -05:00
|
|
|
background-color: #f5f5f5;
|
2020-12-02 10:59:03 -05:00
|
|
|
position: relative;
|
2020-12-02 11:25:05 -05:00
|
|
|
scroll-snap-align: start;
|
2020-12-02 10:59:03 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#personal {
|
2020-12-02 18:19:16 -05:00
|
|
|
height: auto;
|
2020-12-02 10:59:03 -05:00
|
|
|
width: 100%;
|
2021-01-13 17:02:16 -05:00
|
|
|
background-color: #f5f5f5;
|
2020-12-02 10:59:03 -05:00
|
|
|
position: relative;
|
2020-12-02 14:12:33 -05:00
|
|
|
overflow: scroll;
|
2020-12-02 11:25:05 -05:00
|
|
|
scroll-snap-align: start;
|
2020-12-02 18:19:16 -05:00
|
|
|
text-align: center;
|
|
|
|
overflow-y: hidden;
|
2020-12-02 10:59:03 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/*==================================================
|
|
|
|
Project Contents
|
2021-01-13 17:02:16 -05:00
|
|
|
==================================================
|
2020-12-02 10:59:03 -05:00
|
|
|
|
|
|
|
.project h2, .project h4, .project p {
|
|
|
|
margin: 25px 25px;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*==================================================
|
|
|
|
Other
|
2021-01-13 17:02:16 -05:00
|
|
|
==================================================
|
2020-12-02 11:25:05 -05:00
|
|
|
|
2020-12-02 12:17:29 -05:00
|
|
|
@keyframes heavenly-glow {
|
|
|
|
0% {
|
|
|
|
box-shadow: none;
|
|
|
|
}
|
|
|
|
50% {
|
|
|
|
box-shadow: 5px 5px 5px whitesmoke,
|
|
|
|
5px -5px 5px whitesmoke,
|
|
|
|
-5px 5px 5px whitesmoke,
|
|
|
|
-5px -5px 5px whitesmoke;
|
|
|
|
}
|
|
|
|
100% {
|
|
|
|
box-shadow: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes darkness-grows {
|
|
|
|
0% {
|
|
|
|
box-shadow: none;
|
|
|
|
}
|
|
|
|
50% {
|
|
|
|
box-shadow: 5px 5px 5px #262626,
|
|
|
|
5px -5px 5px #262626,
|
|
|
|
-5px 5px 5px #262626,
|
|
|
|
-5px -5px 5px #262626;
|
|
|
|
}
|
|
|
|
100% {
|
|
|
|
box-shadow: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-12-02 13:02:52 -05:00
|
|
|
@keyframes rainbow-glow {
|
|
|
|
0% {
|
|
|
|
box-shadow: none;
|
|
|
|
}
|
|
|
|
50% {
|
|
|
|
box-shadow: 2px 2px 1px red,
|
|
|
|
4px 4px 1px orange,
|
|
|
|
6px 6px 1px yellow,
|
|
|
|
8px 8px 1px lightgreen,
|
|
|
|
10px 10px 1px lightblue,
|
|
|
|
12px 12px 1px purple,
|
|
|
|
|
|
|
|
2px -2px 1px red,
|
|
|
|
4px -4px 1px orange,
|
|
|
|
6px -6px 1px yellow,
|
|
|
|
8px -8px 1px lightgreen,
|
|
|
|
10px -10px 1px lightblue,
|
|
|
|
12px -12px 1px purple,
|
|
|
|
|
|
|
|
-2px 2px 1px red,
|
|
|
|
-4px 4px 1px orange,
|
|
|
|
-6px 6px 1px yellow,
|
|
|
|
-8px 8px 1px lightgreen,
|
|
|
|
-10px 10px 1px lightblue,
|
|
|
|
-12px 12px 1px purple,
|
|
|
|
|
|
|
|
-2px -2px 1px red,
|
|
|
|
-4px -4px 1px orange,
|
|
|
|
-6px -6px 1px yellow,
|
|
|
|
-8px -8px 1px lightgreen,
|
|
|
|
-10px -10px 1px lightblue,
|
|
|
|
-12px -12px 1px purple;
|
|
|
|
}
|
|
|
|
100% {
|
|
|
|
box-shadow: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-12-02 12:17:29 -05:00
|
|
|
/*==================================================
|
|
|
|
Display Images
|
2021-01-13 17:02:16 -05:00
|
|
|
==================================================
|
2020-12-02 12:17:29 -05:00
|
|
|
|
|
|
|
.display-image-dark {
|
|
|
|
width: 150px;
|
|
|
|
position: absolute;
|
|
|
|
bottom: 30px;
|
|
|
|
right: 60px;
|
|
|
|
border-radius: 50%;
|
2020-12-02 13:02:52 -05:00
|
|
|
transition: all .8s;
|
2020-12-02 12:17:29 -05:00
|
|
|
animation: darkness-grows 3s infinite;
|
|
|
|
}
|
|
|
|
|
2020-12-02 13:02:52 -05:00
|
|
|
.display-image-dark:hover {
|
|
|
|
transform: rotateX(360deg);
|
|
|
|
}
|
|
|
|
|
2020-12-02 12:17:29 -05:00
|
|
|
.display-image-light {
|
2020-12-02 11:25:05 -05:00
|
|
|
width: 150px;
|
2020-12-02 12:17:29 -05:00
|
|
|
height: 150px;
|
2020-12-02 11:25:05 -05:00
|
|
|
position: absolute;
|
|
|
|
bottom: 30px;
|
|
|
|
right: 60px;
|
|
|
|
border-radius: 50%;
|
2020-12-02 13:02:52 -05:00
|
|
|
transition: all .8s;
|
2020-12-02 12:17:29 -05:00
|
|
|
animation: heavenly-glow 3s infinite;
|
|
|
|
}
|
|
|
|
|
2020-12-02 13:02:52 -05:00
|
|
|
.display-image-light:hover {
|
|
|
|
transform: rotateY(360deg);
|
|
|
|
}
|
|
|
|
|
2020-12-02 12:17:29 -05:00
|
|
|
#schoolarly-bay img:nth-child(2) {
|
2020-12-02 18:19:16 -05:00
|
|
|
bottom: 25%;
|
|
|
|
left: 5%;
|
2020-12-02 12:17:29 -05:00
|
|
|
width: 175px;
|
|
|
|
height: 175px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#schoolarly-bay img:nth-child(3) {
|
|
|
|
bottom: 20%;
|
2020-12-02 18:19:16 -05:00
|
|
|
right: 10%;
|
2020-12-02 11:25:05 -05:00
|
|
|
}
|
|
|
|
|
2020-12-02 12:17:29 -05:00
|
|
|
#schoolarly-bay img:nth-child(4) {
|
2020-12-02 18:19:16 -05:00
|
|
|
bottom: 10%;
|
|
|
|
left: 25%;
|
2020-12-02 12:17:29 -05:00
|
|
|
width: 125px;
|
|
|
|
height: 125px;
|
2020-12-02 11:25:05 -05:00
|
|
|
}
|
2020-12-02 14:12:33 -05:00
|
|
|
|
|
|
|
/*==================================================
|
|
|
|
End Section
|
2021-01-13 17:02:16 -05:00
|
|
|
==================================================
|
2020-12-02 14:12:33 -05:00
|
|
|
|
2020-12-02 18:19:16 -05:00
|
|
|
.find-me {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
text-align: center;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
margin: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.find-me a {
|
|
|
|
width: 90px;
|
|
|
|
height: 90px;
|
|
|
|
background-color: #f1f1f1;
|
|
|
|
margin: 10px;
|
|
|
|
border-radius: 30%;
|
|
|
|
color: #10ac84;
|
|
|
|
box-shadow: 0 5px 15px -5px #00000070;
|
|
|
|
position: relative;
|
|
|
|
overflow: hidden;
|
|
|
|
transition: all 0.2s;
|
|
|
|
}
|
|
|
|
|
|
|
|
i {
|
|
|
|
line-height: 90px;
|
|
|
|
font-size: 25px;
|
|
|
|
transition: all 0.2s;
|
|
|
|
margin-top: 35%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.find-me a:hover i {
|
|
|
|
transform: scale(1.5);
|
|
|
|
color: whitesmoke;
|
|
|
|
}
|
|
|
|
|
|
|
|
.find-me a:hover {
|
|
|
|
background-color: #262626;
|
|
|
|
}
|
|
|
|
|
2020-12-02 14:12:33 -05:00
|
|
|
#linux-rainbow {
|
|
|
|
size: auto;
|
2020-12-02 18:19:16 -05:00
|
|
|
max-width: 60%;
|
2020-12-02 14:12:33 -05:00
|
|
|
max-height: 60%;
|
|
|
|
border-radius: 50px;
|
|
|
|
animation: rainbow-glow 5s infinite;
|
2020-12-02 18:19:16 -05:00
|
|
|
margin-bottom: 75px;
|
|
|
|
}
|
|
|
|
|
|
|
|
hr {
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
2020-12-02 14:12:33 -05:00
|
|
|
}
|