2020-12-02 10:59:03 -05:00
|
|
|
/*==================================================
|
|
|
|
Main
|
|
|
|
==================================================*/
|
|
|
|
|
2020-12-01 18:21:50 -05:00
|
|
|
body {
|
|
|
|
font-family: Helvetica;
|
|
|
|
background-color: whitesmoke;
|
2020-12-02 10:59:03 -05:00
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
overflow-x: hidden;
|
|
|
|
overflow-y: scroll;
|
|
|
|
scroll-snap-type: y mandatory;
|
|
|
|
}
|
|
|
|
|
|
|
|
::-webkit-scrollbar {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*==================================================
|
|
|
|
Scrolling
|
|
|
|
==================================================*/
|
|
|
|
|
|
|
|
.scroll-container {
|
|
|
|
height: 100vh;
|
|
|
|
overflow-y: scroll;
|
|
|
|
scroll-snap-type: y mandatory;
|
2020-12-01 18:21:50 -05:00
|
|
|
}
|
|
|
|
|
2020-12-02 10:59:03 -05:00
|
|
|
section {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/*==================================================
|
|
|
|
Navigation Bar
|
|
|
|
==================================================*/
|
|
|
|
|
2020-12-01 18:21:50 -05:00
|
|
|
nav {
|
2020-12-02 10:59:03 -05:00
|
|
|
position: absolute;
|
2020-12-01 18:21:50 -05:00
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
background-color: #262626;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
padding: 8px;
|
2020-12-02 10:59:03 -05:00
|
|
|
scroll-snap-align: center;
|
|
|
|
box-shadow: 0 8px 15px #262626;
|
2020-12-01 18:21:50 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
nav a {
|
|
|
|
color: #fff;
|
|
|
|
text-decoration: none;
|
|
|
|
margin: 8px;
|
|
|
|
}
|
|
|
|
|
2020-12-02 10:59:03 -05:00
|
|
|
/*==================================================
|
|
|
|
Main Sectors
|
|
|
|
==================================================*/
|
|
|
|
|
|
|
|
.project {
|
|
|
|
margin: 0;
|
|
|
|
height: 100vh;
|
|
|
|
scroll-snap-align: center;
|
|
|
|
}
|
|
|
|
|
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%;
|
|
|
|
background-color: whitesmoke;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
#style {
|
|
|
|
height: 100vh;
|
|
|
|
width: 100%;
|
|
|
|
background-color: #282828;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
#hillside {
|
|
|
|
height: 100vh;
|
|
|
|
width: 100%;
|
|
|
|
background-color: whitesmoke;
|
|
|
|
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%;
|
|
|
|
background-color: whitesmoke;
|
|
|
|
position: relative;
|
|
|
|
scroll-snap-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
#personal {
|
|
|
|
height: 100vh;
|
|
|
|
width: 100%;
|
|
|
|
background-color: whitesmoke;
|
|
|
|
position: relative;
|
|
|
|
scroll-snap-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*==================================================
|
|
|
|
Project Contents
|
|
|
|
==================================================*/
|
|
|
|
|
|
|
|
.project h2, .project h4, .project p {
|
|
|
|
margin: 25px 25px;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*==================================================
|
|
|
|
Other
|
|
|
|
==================================================*/
|