uploaded base version
This commit is contained in:
251
assets/css/style.css
Normal file
251
assets/css/style.css
Normal file
@@ -0,0 +1,251 @@
|
||||
body {
|
||||
margin: 0;
|
||||
background-color: black;
|
||||
}
|
||||
|
||||
a {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-family: 'Montserrat', 'sans-serif';
|
||||
color: white;
|
||||
}
|
||||
|
||||
.flexparent_row {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
flex-wrap: wrap;
|
||||
width: 100vw;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.flexparent_column {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
flex-wrap: nowrap;
|
||||
width: 100vw;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.flex_center_top {
|
||||
justify-content: center;
|
||||
align-items: flex-start;
|
||||
align-content: flex-start;
|
||||
}
|
||||
|
||||
.flex_center {
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
align-content: flex-start;
|
||||
}
|
||||
|
||||
.flex_center_left {
|
||||
justify-content: flex-start;
|
||||
align-items: flex-start;
|
||||
align-content: flex-start;
|
||||
}
|
||||
|
||||
.centeredtext {
|
||||
text-align: center;
|
||||
width: 100%;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
#content {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
#background {
|
||||
background-image: url("/assets/img/background.svg");
|
||||
background-size: 100%, 100%;
|
||||
background-repeat: no-repeat;
|
||||
width: 100vw;
|
||||
height: 100vh;
|
||||
z-index: -99;
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
}
|
||||
|
||||
.spanfull {
|
||||
position: fixed;
|
||||
left: 0;
|
||||
top: 0;
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
/* index video */
|
||||
#video_bg {
|
||||
position: fixed;
|
||||
}
|
||||
|
||||
#videocontainer {
|
||||
z-index: -2;
|
||||
}
|
||||
|
||||
#container {
|
||||
z-index: -1;
|
||||
}
|
||||
|
||||
#logo_center {
|
||||
width: 30%;
|
||||
}
|
||||
|
||||
/* portfolio & projects */
|
||||
|
||||
.portentity {
|
||||
position: static;
|
||||
background-color: #111111;
|
||||
margin: 20px;
|
||||
border: 3px solid #0074D9;
|
||||
border-radius: 25px;
|
||||
text-align: center;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.portentity:hover {
|
||||
background-color: #001f3f;
|
||||
}
|
||||
|
||||
.portimg {
|
||||
position: relative;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
border-bottom: #0074D9 solid;
|
||||
}
|
||||
|
||||
.portcomment {
|
||||
padding: 5px;
|
||||
}
|
||||
|
||||
.porttitle {
|
||||
font-family: 'Montserrat', 'sans-serif';
|
||||
color: #0074D9;
|
||||
margin-top: 8px;
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
|
||||
.porttext {
|
||||
font-family: 'Roboto', 'sans-serif';
|
||||
color: white;
|
||||
}
|
||||
|
||||
/* Contact page */
|
||||
#contact_div{
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
position: relative;
|
||||
text-align: center;
|
||||
width: 100vw;
|
||||
}
|
||||
|
||||
ul.mycontactinfo {
|
||||
list-style-type: none;
|
||||
padding-left: 0;
|
||||
|
||||
}
|
||||
|
||||
li.mycontactinfo {
|
||||
font-family: 'Roboto', 'sans-serif';
|
||||
color: white;
|
||||
font-size: 18px;
|
||||
}
|
||||
|
||||
img.mycontactinfo {
|
||||
width: 24px;
|
||||
height: 24px;
|
||||
padding-right: 5px;
|
||||
}
|
||||
|
||||
input[type=text].contact {
|
||||
width: 100%;
|
||||
padding: 12px 20px;
|
||||
margin: 8px 0;
|
||||
display: inline-block;
|
||||
border: 3px solid #0074D9;
|
||||
border-radius: 4px;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
input[type=submit].contact {
|
||||
background-color: #0074D9;
|
||||
padding: 14px 20px;
|
||||
margin: 8px 10%;
|
||||
border: solid #0074D9;
|
||||
border-radius: 2px;
|
||||
cursor: pointer;
|
||||
font-family: 'Roboto', 'sans-serif';
|
||||
color: white;
|
||||
}
|
||||
|
||||
input[type=submit]:hover.contact {
|
||||
background-color: #001f3f;
|
||||
color: white;
|
||||
}
|
||||
|
||||
label.contact {
|
||||
font-family: 'Roboto', 'sans-serif';
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
textarea.contact {
|
||||
width: 96%;
|
||||
height: 200px;
|
||||
padding: 14px 2%;
|
||||
margin: 8px 0;
|
||||
border: 3px solid #0074D9;
|
||||
border-radius: 4px;
|
||||
cursor: pointer;
|
||||
font-family: 'Roboto', 'sans-serif';
|
||||
resize: none;
|
||||
}
|
||||
|
||||
/* resume */
|
||||
|
||||
.resumetitle{
|
||||
color: #0074D9;
|
||||
}
|
||||
|
||||
.resumetbl {
|
||||
font-family: 'Roboto', 'sans-serif';
|
||||
color: white;
|
||||
}
|
||||
|
||||
td.resume {
|
||||
padding: 0 6px;
|
||||
}
|
||||
|
||||
.interests {
|
||||
width: 71px;
|
||||
height: 71px;
|
||||
padding: 10px;
|
||||
position: static;
|
||||
background-color: #333333;
|
||||
margin: 5px;
|
||||
border: 3px solid #0074D9;
|
||||
border-radius: 15px;
|
||||
text-align: center;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.resumeitems {
|
||||
position: static;
|
||||
background-color: #111111;
|
||||
margin: 20px;
|
||||
border: 3px solid #0074D9;
|
||||
border-radius: 25px;
|
||||
text-align: center;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
h6 {
|
||||
font-family: 'Roboto', 'sans-serif';
|
||||
color: white;
|
||||
margin-top: 10px;
|
||||
}
|
||||
179
assets/css/style_desktop.css
Normal file
179
assets/css/style_desktop.css
Normal file
@@ -0,0 +1,179 @@
|
||||
/* Hide Mobile Divs */
|
||||
#nav_mobile_div {
|
||||
visibility: hidden;
|
||||
display: none;
|
||||
}
|
||||
|
||||
#mobilenavbar {
|
||||
visibility: hidden;
|
||||
display: none;
|
||||
}
|
||||
|
||||
#mobilenavbar_spacer {
|
||||
visibility: hidden;
|
||||
display: none;
|
||||
}
|
||||
|
||||
#mobilenavbtn {
|
||||
visibility: hidden;
|
||||
display: none;
|
||||
}
|
||||
|
||||
#closebtn {
|
||||
visibility: hidden;
|
||||
display: none;
|
||||
}
|
||||
|
||||
.flexparent_row {
|
||||
width: 95vw;
|
||||
}
|
||||
|
||||
#content {
|
||||
margin: auto;
|
||||
width: 90vw;
|
||||
background-color: #222222;
|
||||
}
|
||||
|
||||
/* Desktop split page */
|
||||
.halfpage {
|
||||
width: 46%;
|
||||
margin:0 2%;
|
||||
}
|
||||
|
||||
/* Nav Desktop */
|
||||
#nav_desktop {
|
||||
height: 85px;
|
||||
background-color: #111111;
|
||||
position: fixed;
|
||||
width: 100%;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
#nav_desktop_spacer {
|
||||
height: 85px;
|
||||
position: relative;
|
||||
width: 100%;
|
||||
z-index: 0;
|
||||
}
|
||||
|
||||
#navlogo {
|
||||
top: 15px;
|
||||
height: 55px;
|
||||
position: fixed;
|
||||
right: 20px;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
/* Bottom Navbar */
|
||||
#nav_bottom_div {
|
||||
width: 100%;
|
||||
height: 80px;
|
||||
align-items: center;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
position: fixed;
|
||||
bottom: 0;
|
||||
}
|
||||
|
||||
ul.nav_bottom {
|
||||
list-style-type: none;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
z-index: 1;
|
||||
display: flex;
|
||||
flex-flow: row nowrap;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
li.nav {
|
||||
float: left;
|
||||
display: inline;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
li a.nav {
|
||||
display: inline-block;
|
||||
color: white;
|
||||
text-align: center;
|
||||
padding: 30px 16px 15px;
|
||||
text-decoration: none;
|
||||
position: relative;
|
||||
font-family: 'Montserrat', 'sans-serif';
|
||||
}
|
||||
|
||||
li a:after {
|
||||
content: "";
|
||||
position: relative;
|
||||
width: 100%;
|
||||
height: 3px;
|
||||
background: #0074D9;
|
||||
visibility: hidden;
|
||||
border-radius: 5px;
|
||||
transform: scaleX(0);
|
||||
transition: .25s linear;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
li a:hover:after,
|
||||
li a:focus:after {
|
||||
visibility: visible;
|
||||
transform: scaleX(1);
|
||||
}
|
||||
|
||||
/* Desktop Contact Form */
|
||||
#contact_form {
|
||||
border-radius: 5px;
|
||||
border: 3px solid #0074D9;
|
||||
background-color: #111111;
|
||||
padding: 20px;
|
||||
color: white;
|
||||
margin: 20px 20px;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
input[type=submit].contact {
|
||||
width: 100px;
|
||||
margin: 8px 0;
|
||||
}
|
||||
|
||||
#contactinput {
|
||||
order: 1;
|
||||
}
|
||||
|
||||
#contacttextbox {
|
||||
order: 2;
|
||||
}
|
||||
|
||||
#contactinfo {
|
||||
order: 3;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
#contactbtn {
|
||||
order: 4;
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
/* portfolio & projects */
|
||||
.portentity {
|
||||
width: 90vw;
|
||||
max-width: 450px;
|
||||
}
|
||||
|
||||
/* resume */
|
||||
#resumeleft {
|
||||
position: fixed;
|
||||
width: 400px;
|
||||
}
|
||||
|
||||
.fourhundred {
|
||||
width: 400px;
|
||||
margin:0 2%;
|
||||
}
|
||||
.eighthundred {
|
||||
min-width: 600px;
|
||||
max-width: 800px;
|
||||
margin:0 2%;
|
||||
}
|
||||
162
assets/css/style_mobile.css
Normal file
162
assets/css/style_mobile.css
Normal file
@@ -0,0 +1,162 @@
|
||||
/* Hide desktop divs */
|
||||
#nav_desktop {
|
||||
visibility: hidden;
|
||||
display: none;
|
||||
}
|
||||
|
||||
#nav_desktop_spacer {
|
||||
visibility: hidden;
|
||||
display: none;
|
||||
}
|
||||
|
||||
#navlogo {
|
||||
visibility: hidden;
|
||||
display: none;
|
||||
}
|
||||
|
||||
#nav_bottom_div {
|
||||
visibility: hidden;
|
||||
display: none;
|
||||
}
|
||||
|
||||
.mobilecenteredtext {
|
||||
text-align: center;
|
||||
width: 100%;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.flexparent_row {
|
||||
width: 100vw;
|
||||
}
|
||||
|
||||
/* page layout */
|
||||
.halfpage {
|
||||
width: 96%;
|
||||
margin:0 2%;
|
||||
}
|
||||
|
||||
.fourhundred {
|
||||
width: 96%;
|
||||
margin:0 2%;
|
||||
}
|
||||
|
||||
.eighthundred {
|
||||
width: 96%;
|
||||
margin:0 2%;;
|
||||
}
|
||||
|
||||
/* Mobile navigation */
|
||||
#nav_mobile {
|
||||
padding-left: 0;
|
||||
}
|
||||
|
||||
#mobilenavbar_spacer {
|
||||
height: 85px;
|
||||
width: 100%;
|
||||
position: relative;
|
||||
z-index: 0;
|
||||
}
|
||||
|
||||
#mobilenavbar {
|
||||
height: 85px;
|
||||
width: 100%;
|
||||
position: fixed;
|
||||
background-color: #111111;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
#mobilenavlogo {
|
||||
height: 65px;
|
||||
left: 50%;
|
||||
top: 10px;
|
||||
width: auto;
|
||||
position: absolute;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
#mobilenavbtn{
|
||||
position: fixed;
|
||||
cursor:pointer;
|
||||
color: white;
|
||||
top: 20px;
|
||||
right: 20px;
|
||||
display: inline;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.overlay {
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
display: none;
|
||||
position: fixed;
|
||||
z-index: 2;
|
||||
top: 0;
|
||||
left: 0;
|
||||
background-color: rgb(0, 0, 0);
|
||||
background-color: rgba(0,0,0, 0.8);
|
||||
font-family: 'Montserrat', 'sans-serif';
|
||||
}
|
||||
|
||||
.overlay-content {
|
||||
position: relative;
|
||||
width: 100%;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.overlay a {
|
||||
padding: 8px;
|
||||
text-decoration: none;
|
||||
font-size: 5vh;
|
||||
color: white;
|
||||
display: block;
|
||||
transition: 0.3s;
|
||||
}
|
||||
|
||||
.overlay a:hover, .overlay a:focus {
|
||||
color: #0074D9;
|
||||
}
|
||||
|
||||
.overlay .closebtn {
|
||||
position: fixed;
|
||||
cursor:pointer;
|
||||
top: 20px;
|
||||
right: 20px;
|
||||
display: block;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
/* Mobile Contact Form */
|
||||
#contact_form {
|
||||
padding: 20px;
|
||||
color: white;
|
||||
position: relative;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
input[type=submit].contact {
|
||||
width: 80%;
|
||||
}
|
||||
|
||||
#contactinput {
|
||||
order: 1;
|
||||
}
|
||||
|
||||
#contacttextbox {
|
||||
order: 2;
|
||||
}
|
||||
|
||||
#contactinfo {
|
||||
order: 4;
|
||||
}
|
||||
|
||||
#contactbtn {
|
||||
order: 3;
|
||||
}
|
||||
|
||||
/* portfolio & projects */
|
||||
|
||||
.portentity {
|
||||
width: 90vw;
|
||||
max-width: 320px;
|
||||
}
|
||||
Reference in New Issue
Block a user