mirror of
https://github.com/its-michaelroy/Simple_Portfolio.git
synced 2026-06-03 23:00:43 +00:00
Added capcha, functionality for senidng emails, and refactored code for the images to go to LiveCode/url and Github code if unavailable
This commit is contained in:
3
.vscode/settings.json
vendored
Normal file
3
.vscode/settings.json
vendored
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
{
|
||||||
|
"liveServer.settings.port": 5501
|
||||||
|
}
|
||||||
@@ -7,42 +7,128 @@
|
|||||||
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
|
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
html, body, div, span, applet, object,
|
html,
|
||||||
iframe, h1, h2, h3, h4, h5, h6, p, blockquote,
|
body,
|
||||||
pre, a, abbr, acronym, address, big, cite,
|
div,
|
||||||
code, del, dfn, em, img, ins, kbd, q, s, samp,
|
span,
|
||||||
small, strike, strong, sub, sup, tt, var, b,
|
applet,
|
||||||
u, i, center, dl, dt, dd, ol, ul, li, fieldset,
|
object,
|
||||||
form, label, legend, table, caption, tbody,
|
iframe,
|
||||||
tfoot, thead, tr, th, td, article, aside,
|
h1,
|
||||||
canvas, details, embed, figure, figcaption,
|
h2,
|
||||||
footer, header, hgroup, menu, nav, output, ruby,
|
h3,
|
||||||
section, summary, time, mark, audio, video {
|
h4,
|
||||||
|
h5,
|
||||||
|
h6,
|
||||||
|
p,
|
||||||
|
blockquote,
|
||||||
|
pre,
|
||||||
|
a,
|
||||||
|
abbr,
|
||||||
|
acronym,
|
||||||
|
address,
|
||||||
|
big,
|
||||||
|
cite,
|
||||||
|
code,
|
||||||
|
del,
|
||||||
|
dfn,
|
||||||
|
em,
|
||||||
|
img,
|
||||||
|
ins,
|
||||||
|
kbd,
|
||||||
|
q,
|
||||||
|
s,
|
||||||
|
samp,
|
||||||
|
small,
|
||||||
|
strike,
|
||||||
|
strong,
|
||||||
|
sub,
|
||||||
|
sup,
|
||||||
|
tt,
|
||||||
|
var,
|
||||||
|
b,
|
||||||
|
u,
|
||||||
|
i,
|
||||||
|
center,
|
||||||
|
dl,
|
||||||
|
dt,
|
||||||
|
dd,
|
||||||
|
ol,
|
||||||
|
ul,
|
||||||
|
li,
|
||||||
|
fieldset,
|
||||||
|
form,
|
||||||
|
label,
|
||||||
|
legend,
|
||||||
|
table,
|
||||||
|
caption,
|
||||||
|
tbody,
|
||||||
|
tfoot,
|
||||||
|
thead,
|
||||||
|
tr,
|
||||||
|
th,
|
||||||
|
td,
|
||||||
|
article,
|
||||||
|
aside,
|
||||||
|
canvas,
|
||||||
|
details,
|
||||||
|
embed,
|
||||||
|
figure,
|
||||||
|
figcaption,
|
||||||
|
footer,
|
||||||
|
header,
|
||||||
|
hgroup,
|
||||||
|
menu,
|
||||||
|
nav,
|
||||||
|
output,
|
||||||
|
ruby,
|
||||||
|
section,
|
||||||
|
summary,
|
||||||
|
time,
|
||||||
|
mark,
|
||||||
|
audio,
|
||||||
|
video {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
border: 0;
|
border: 0;
|
||||||
font-size: 100%;
|
font-size: 100%;
|
||||||
font: inherit;
|
font: inherit;
|
||||||
vertical-align: baseline;}
|
vertical-align: baseline;
|
||||||
|
}
|
||||||
|
|
||||||
article, aside, details, figcaption, figure,
|
article,
|
||||||
footer, header, hgroup, menu, nav, section {
|
aside,
|
||||||
display: block;}
|
details,
|
||||||
|
figcaption,
|
||||||
|
figure,
|
||||||
|
footer,
|
||||||
|
header,
|
||||||
|
hgroup,
|
||||||
|
menu,
|
||||||
|
nav,
|
||||||
|
section {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
body {
|
body {
|
||||||
line-height: 1;
|
line-height: 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
ol, ul {
|
ol,
|
||||||
|
ul {
|
||||||
list-style: none;
|
list-style: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
blockquote, q {
|
blockquote,
|
||||||
|
q {
|
||||||
quotes: none;
|
quotes: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
blockquote:before, blockquote:after, q:before, q:after {
|
blockquote:before,
|
||||||
content: '';
|
blockquote:after,
|
||||||
|
q:before,
|
||||||
|
q:after {
|
||||||
|
content: "";
|
||||||
content: none;
|
content: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -65,7 +151,9 @@ input::-moz-focus-inner {
|
|||||||
padding: 0;
|
padding: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
input, select, textarea {
|
input,
|
||||||
|
select,
|
||||||
|
textarea {
|
||||||
-moz-appearance: none;
|
-moz-appearance: none;
|
||||||
-webkit-appearance: none;
|
-webkit-appearance: none;
|
||||||
-ms-appearance: none;
|
-ms-appearance: none;
|
||||||
@@ -78,7 +166,9 @@ input, select, textarea {
|
|||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
}
|
}
|
||||||
|
|
||||||
*, *:before, *:after {
|
*,
|
||||||
|
*:before,
|
||||||
|
*:after {
|
||||||
box-sizing: inherit;
|
box-sizing: inherit;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -86,7 +176,9 @@ input, select, textarea {
|
|||||||
background: #fff;
|
background: #fff;
|
||||||
}
|
}
|
||||||
|
|
||||||
body.is-preload *, body.is-preload *:before, body.is-preload *:after {
|
body.is-preload *,
|
||||||
|
body.is-preload *:before,
|
||||||
|
body.is-preload *:after {
|
||||||
-moz-animation: none !important;
|
-moz-animation: none !important;
|
||||||
-webkit-animation: none !important;
|
-webkit-animation: none !important;
|
||||||
-ms-animation: none !important;
|
-ms-animation: none !important;
|
||||||
@@ -97,7 +189,10 @@ input, select, textarea {
|
|||||||
transition: none !important;
|
transition: none !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
body, input, select, textarea {
|
body,
|
||||||
|
input,
|
||||||
|
select,
|
||||||
|
textarea {
|
||||||
color: #a2a2a2;
|
color: #a2a2a2;
|
||||||
font-family: "Source Sans Pro", Helvetica, sans-serif;
|
font-family: "Source Sans Pro", Helvetica, sans-serif;
|
||||||
font-size: 16pt;
|
font-size: 16pt;
|
||||||
@@ -121,12 +216,14 @@ input, select, textarea {
|
|||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
strong, b {
|
strong,
|
||||||
|
b {
|
||||||
color: #787878;
|
color: #787878;
|
||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
}
|
}
|
||||||
|
|
||||||
em, i {
|
em,
|
||||||
|
i {
|
||||||
font-style: italic;
|
font-style: italic;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -134,14 +231,24 @@ input, select, textarea {
|
|||||||
margin: 0 0 2em 0;
|
margin: 0 0 2em 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
h1, h2, h3, h4, h5, h6 {
|
h1,
|
||||||
|
h2,
|
||||||
|
h3,
|
||||||
|
h4,
|
||||||
|
h5,
|
||||||
|
h6 {
|
||||||
color: #787878;
|
color: #787878;
|
||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
line-height: 1em;
|
line-height: 1em;
|
||||||
margin: 0 0 1em 0;
|
margin: 0 0 1em 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
|
h1 a,
|
||||||
|
h2 a,
|
||||||
|
h3 a,
|
||||||
|
h4 a,
|
||||||
|
h5 a,
|
||||||
|
h6 a {
|
||||||
color: inherit;
|
color: inherit;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
@@ -274,20 +381,16 @@ input, select, textarea {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (max-width: 980px) {
|
@media screen and (max-width: 980px) {
|
||||||
|
|
||||||
.container {
|
.container {
|
||||||
width: 100% !important;
|
width: 100% !important;
|
||||||
max-width: 100% !important;
|
max-width: 100% !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (max-width: 480px) {
|
@media screen and (max-width: 480px) {
|
||||||
|
|
||||||
.container {
|
.container {
|
||||||
max-width: calc(100% - 3em);
|
max-width: calc(100% - 3em);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Row */
|
/* Row */
|
||||||
@@ -534,7 +637,6 @@ input, select, textarea {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (max-width: 1800px) {
|
@media screen and (max-width: 1800px) {
|
||||||
|
|
||||||
.row {
|
.row {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-wrap: wrap;
|
flex-wrap: wrap;
|
||||||
@@ -775,11 +877,9 @@ input, select, textarea {
|
|||||||
.row.gtr-200.gtr-uniform > * {
|
.row.gtr-200.gtr-uniform > * {
|
||||||
padding-top: 5em;
|
padding-top: 5em;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (max-width: 1280px) {
|
@media screen and (max-width: 1280px) {
|
||||||
|
|
||||||
.row {
|
.row {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-wrap: wrap;
|
flex-wrap: wrap;
|
||||||
@@ -1020,11 +1120,9 @@ input, select, textarea {
|
|||||||
.row.gtr-200.gtr-uniform > * {
|
.row.gtr-200.gtr-uniform > * {
|
||||||
padding-top: 4em;
|
padding-top: 4em;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (max-width: 980px) {
|
@media screen and (max-width: 980px) {
|
||||||
|
|
||||||
.row {
|
.row {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-wrap: wrap;
|
flex-wrap: wrap;
|
||||||
@@ -1265,11 +1363,9 @@ input, select, textarea {
|
|||||||
.row.gtr-200.gtr-uniform > * {
|
.row.gtr-200.gtr-uniform > * {
|
||||||
padding-top: 4em;
|
padding-top: 4em;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (max-width: 736px) {
|
@media screen and (max-width: 736px) {
|
||||||
|
|
||||||
.row {
|
.row {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-wrap: wrap;
|
flex-wrap: wrap;
|
||||||
@@ -1510,11 +1606,9 @@ input, select, textarea {
|
|||||||
.row.gtr-200.gtr-uniform > * {
|
.row.gtr-200.gtr-uniform > * {
|
||||||
padding-top: 3em;
|
padding-top: 3em;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (max-width: 480px) {
|
@media screen and (max-width: 480px) {
|
||||||
|
|
||||||
.row {
|
.row {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-wrap: wrap;
|
flex-wrap: wrap;
|
||||||
@@ -1755,12 +1849,12 @@ input, select, textarea {
|
|||||||
.row.gtr-200.gtr-uniform > * {
|
.row.gtr-200.gtr-uniform > * {
|
||||||
padding-top: 3em;
|
padding-top: 3em;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Section/Article */
|
/* Section/Article */
|
||||||
|
|
||||||
section.special, article.special {
|
section.special,
|
||||||
|
article.special {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1915,7 +2009,7 @@ input, select, textarea {
|
|||||||
text-rendering: auto;
|
text-rendering: auto;
|
||||||
line-height: 1;
|
line-height: 1;
|
||||||
text-transform: none !important;
|
text-transform: none !important;
|
||||||
font-family: 'Font Awesome 5 Free';
|
font-family: "Font Awesome 5 Free";
|
||||||
font-weight: 900;
|
font-weight: 900;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1924,7 +2018,7 @@ input, select, textarea {
|
|||||||
background: #f7f7f7;
|
background: #f7f7f7;
|
||||||
border-radius: 0.35em;
|
border-radius: 0.35em;
|
||||||
border: solid 2px transparent;
|
border: solid 2px transparent;
|
||||||
content: '';
|
content: "";
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
font-size: 0.8em;
|
font-size: 0.8em;
|
||||||
height: 2.0625em;
|
height: 2.0625em;
|
||||||
@@ -1941,7 +2035,7 @@ input, select, textarea {
|
|||||||
background: #787878;
|
background: #787878;
|
||||||
border-color: #787878;
|
border-color: #787878;
|
||||||
color: #fff;
|
color: #fff;
|
||||||
content: '\f00c';
|
content: "\f00c";
|
||||||
}
|
}
|
||||||
|
|
||||||
input[type="checkbox"]:focus + label:before,
|
input[type="checkbox"]:focus + label:before,
|
||||||
@@ -1959,22 +2053,22 @@ input, select, textarea {
|
|||||||
|
|
||||||
::-webkit-input-placeholder {
|
::-webkit-input-placeholder {
|
||||||
color: #b2b2b2 !important;
|
color: #b2b2b2 !important;
|
||||||
opacity: 1.0;
|
opacity: 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
:-moz-placeholder {
|
:-moz-placeholder {
|
||||||
color: #b2b2b2 !important;
|
color: #b2b2b2 !important;
|
||||||
opacity: 1.0;
|
opacity: 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
::-moz-placeholder {
|
::-moz-placeholder {
|
||||||
color: #b2b2b2 !important;
|
color: #b2b2b2 !important;
|
||||||
opacity: 1.0;
|
opacity: 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
:-ms-input-placeholder {
|
:-ms-input-placeholder {
|
||||||
color: #b2b2b2 !important;
|
color: #b2b2b2 !important;
|
||||||
opacity: 1.0;
|
opacity: 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Box */
|
/* Box */
|
||||||
@@ -2015,7 +2109,7 @@ input, select, textarea {
|
|||||||
text-rendering: auto;
|
text-rendering: auto;
|
||||||
line-height: 1;
|
line-height: 1;
|
||||||
text-transform: none !important;
|
text-transform: none !important;
|
||||||
font-family: 'Font Awesome 5 Free';
|
font-family: "Font Awesome 5 Free";
|
||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -2032,7 +2126,7 @@ input, select, textarea {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.icon.brands:before {
|
.icon.brands:before {
|
||||||
font-family: 'Font Awesome 5 Brands';
|
font-family: "Font Awesome 5 Brands";
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Image */
|
/* Image */
|
||||||
@@ -2049,9 +2143,9 @@ input, select, textarea {
|
|||||||
-webkit-transition: opacity 0.2s ease-in-out;
|
-webkit-transition: opacity 0.2s ease-in-out;
|
||||||
-ms-transition: opacity 0.2s ease-in-out;
|
-ms-transition: opacity 0.2s ease-in-out;
|
||||||
transition: opacity 0.2s ease-in-out;
|
transition: opacity 0.2s ease-in-out;
|
||||||
background: url("images/overlay.png");
|
|
||||||
border-radius: 0.35em;
|
border-radius: 0.35em;
|
||||||
content: '';
|
content: "";
|
||||||
display: block;
|
display: block;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
left: 0;
|
left: 0;
|
||||||
@@ -2073,7 +2167,7 @@ input, select, textarea {
|
|||||||
border-radius: 0.35em;
|
border-radius: 0.35em;
|
||||||
border: solid 3px rgba(255, 255, 255, 0.5);
|
border: solid 3px rgba(255, 255, 255, 0.5);
|
||||||
color: #fff;
|
color: #fff;
|
||||||
content: 'View';
|
content: "See the Code";
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
font-size: 0.8em;
|
font-size: 0.8em;
|
||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
@@ -2090,12 +2184,11 @@ input, select, textarea {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.image.thumb:hover:after {
|
.image.thumb:hover:after {
|
||||||
opacity: 1.0;
|
opacity: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.image.thumb:hover:before {
|
.image.thumb:hover:before {
|
||||||
background: url("images/overlay.png"), url("images/overlay.png");
|
opacity: 0;
|
||||||
opacity: 1.0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.image img {
|
.image img {
|
||||||
@@ -2115,11 +2208,13 @@ input, select, textarea {
|
|||||||
top: 0.25em;
|
top: 0.25em;
|
||||||
}
|
}
|
||||||
|
|
||||||
.image.left, .image.right {
|
.image.left,
|
||||||
|
.image.right {
|
||||||
max-width: 40%;
|
max-width: 40%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.image.left img, .image.right img {
|
.image.left img,
|
||||||
|
.image.right img {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -2311,7 +2406,6 @@ input, select, textarea {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (max-width: 480px) {
|
@media screen and (max-width: 480px) {
|
||||||
|
|
||||||
ul.actions:not(.fixed) {
|
ul.actions:not(.fixed) {
|
||||||
-moz-flex-direction: column;
|
-moz-flex-direction: column;
|
||||||
-webkit-flex-direction: column;
|
-webkit-flex-direction: column;
|
||||||
@@ -2358,7 +2452,6 @@ input, select, textarea {
|
|||||||
ul.actions:not(.fixed) li .button.icon:before {
|
ul.actions:not(.fixed) li .button.icon:before {
|
||||||
margin-left: -0.5em;
|
margin-left: -0.5em;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Table */
|
/* Table */
|
||||||
@@ -2439,10 +2532,14 @@ input, select, textarea {
|
|||||||
-webkit-appearance: none;
|
-webkit-appearance: none;
|
||||||
-ms-appearance: none;
|
-ms-appearance: none;
|
||||||
appearance: none;
|
appearance: none;
|
||||||
-moz-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out;
|
-moz-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out,
|
||||||
-webkit-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out;
|
border-color 0.2s ease-in-out;
|
||||||
-ms-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out;
|
-webkit-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out,
|
||||||
transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out;
|
border-color 0.2s ease-in-out;
|
||||||
|
-ms-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out,
|
||||||
|
border-color 0.2s ease-in-out;
|
||||||
|
transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out,
|
||||||
|
border-color 0.2s ease-in-out;
|
||||||
background-color: transparent;
|
background-color: transparent;
|
||||||
border-radius: 0.35em;
|
border-radius: 0.35em;
|
||||||
border: solid 3px #efefef;
|
border: solid 3px #efefef;
|
||||||
@@ -2538,7 +2635,8 @@ input, select, textarea {
|
|||||||
border-color: #3eb08f;
|
border-color: #3eb08f;
|
||||||
}
|
}
|
||||||
|
|
||||||
input[type="submit"].disabled, input[type="submit"]:disabled,
|
input[type="submit"].disabled,
|
||||||
|
input[type="submit"]:disabled,
|
||||||
input[type="reset"].disabled,
|
input[type="reset"].disabled,
|
||||||
input[type="reset"]:disabled,
|
input[type="reset"]:disabled,
|
||||||
input[type="button"].disabled,
|
input[type="button"].disabled,
|
||||||
@@ -2558,7 +2656,7 @@ input, select, textarea {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.work-item .image {
|
.work-item .image {
|
||||||
margin: 0 0 1.5em 0;
|
margin: 0 0 1em 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.work-item h3 {
|
.work-item h3 {
|
||||||
@@ -2623,11 +2721,16 @@ input, select, textarea {
|
|||||||
margin: 0 0 2em 0;
|
margin: 0 0 2em 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
#header strong, #header b {
|
#header strong,
|
||||||
|
#header b {
|
||||||
color: #ffffff;
|
color: #ffffff;
|
||||||
}
|
}
|
||||||
|
|
||||||
#header h2, #header h3, #header h4, #header h5, #header h6 {
|
#header h2,
|
||||||
|
#header h3,
|
||||||
|
#header h4,
|
||||||
|
#header h5,
|
||||||
|
#header h6 {
|
||||||
color: #ffffff;
|
color: #ffffff;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -2804,12 +2907,12 @@ input, select, textarea {
|
|||||||
text-rendering: auto;
|
text-rendering: auto;
|
||||||
line-height: 1;
|
line-height: 1;
|
||||||
text-transform: none !important;
|
text-transform: none !important;
|
||||||
font-family: 'Font Awesome 5 Free';
|
font-family: "Font Awesome 5 Free";
|
||||||
font-weight: 900;
|
font-weight: 900;
|
||||||
}
|
}
|
||||||
|
|
||||||
.poptrox-popup .loader:before {
|
.poptrox-popup .loader:before {
|
||||||
content: '\f1ce';
|
content: "\f1ce";
|
||||||
}
|
}
|
||||||
|
|
||||||
.poptrox-popup .caption {
|
.poptrox-popup .caption {
|
||||||
@@ -2853,7 +2956,7 @@ input, select, textarea {
|
|||||||
text-rendering: auto;
|
text-rendering: auto;
|
||||||
line-height: 1;
|
line-height: 1;
|
||||||
text-transform: none !important;
|
text-transform: none !important;
|
||||||
font-family: 'Font Awesome 5 Free';
|
font-family: "Font Awesome 5 Free";
|
||||||
font-weight: 900;
|
font-weight: 900;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -2875,7 +2978,7 @@ input, select, textarea {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.poptrox-popup .nav-next:before {
|
.poptrox-popup .nav-next:before {
|
||||||
content: '\f105';
|
content: "\f105";
|
||||||
right: 0;
|
right: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -2884,7 +2987,7 @@ input, select, textarea {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.poptrox-popup .nav-previous:before {
|
.poptrox-popup .nav-previous:before {
|
||||||
content: '\f104';
|
content: "\f104";
|
||||||
left: 0;
|
left: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -2916,7 +3019,7 @@ input, select, textarea {
|
|||||||
text-rendering: auto;
|
text-rendering: auto;
|
||||||
line-height: 1;
|
line-height: 1;
|
||||||
text-transform: none !important;
|
text-transform: none !important;
|
||||||
font-family: 'Font Awesome 5 Free';
|
font-family: "Font Awesome 5 Free";
|
||||||
font-weight: 900;
|
font-weight: 900;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -2927,7 +3030,7 @@ input, select, textarea {
|
|||||||
box-sizing: content-box;
|
box-sizing: content-box;
|
||||||
border-radius: 100%;
|
border-radius: 100%;
|
||||||
border: solid 3px rgba(255, 255, 255, 0.5);
|
border: solid 3px rgba(255, 255, 255, 0.5);
|
||||||
content: '\f00d';
|
content: "\f00d";
|
||||||
display: block;
|
display: block;
|
||||||
font-size: 1em;
|
font-size: 1em;
|
||||||
height: 1.75em;
|
height: 1.75em;
|
||||||
@@ -2946,7 +3049,7 @@ input, select, textarea {
|
|||||||
|
|
||||||
.poptrox-popup:hover .nav-next:hover,
|
.poptrox-popup:hover .nav-next:hover,
|
||||||
.poptrox-popup:hover .nav-previous:hover {
|
.poptrox-popup:hover .nav-previous:hover {
|
||||||
opacity: 1.0;
|
opacity: 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
.poptrox-popup:hover .closer {
|
.poptrox-popup:hover .closer {
|
||||||
@@ -2954,7 +3057,7 @@ input, select, textarea {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.poptrox-popup:hover .closer:hover {
|
.poptrox-popup:hover .closer:hover {
|
||||||
opacity: 1.0;
|
opacity: 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Touch */
|
/* Touch */
|
||||||
@@ -2975,25 +3078,25 @@ input, select, textarea {
|
|||||||
body.is-touch .poptrox-popup .nav-next,
|
body.is-touch .poptrox-popup .nav-next,
|
||||||
body.is-touch .poptrox-popup .nav-previous,
|
body.is-touch .poptrox-popup .nav-previous,
|
||||||
body.is-touch .poptrox-popup .closer {
|
body.is-touch .poptrox-popup .closer {
|
||||||
opacity: 1.0 !important;
|
opacity: 1 !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* XLarge */
|
/* XLarge */
|
||||||
|
|
||||||
@media screen and (max-width: 1800px) {
|
@media screen and (max-width: 1800px) {
|
||||||
|
|
||||||
/* Basic */
|
/* Basic */
|
||||||
|
|
||||||
body, input, select, textarea {
|
body,
|
||||||
|
input,
|
||||||
|
select,
|
||||||
|
textarea {
|
||||||
font-size: 12pt;
|
font-size: 12pt;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Large */
|
/* Large */
|
||||||
|
|
||||||
@media screen and (max-width: 1280px) {
|
@media screen and (max-width: 1280px) {
|
||||||
|
|
||||||
/* Header */
|
/* Header */
|
||||||
|
|
||||||
#header {
|
#header {
|
||||||
@@ -3031,16 +3134,19 @@ input, select, textarea {
|
|||||||
padding: 6em 3em 3em 3em;
|
padding: 6em 3em 3em 3em;
|
||||||
width: calc(100% - 30%);
|
width: calc(100% - 30%);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Medium */
|
/* Medium */
|
||||||
|
|
||||||
@media screen and (max-width: 980px) {
|
@media screen and (max-width: 980px) {
|
||||||
|
|
||||||
/* Basic */
|
/* Basic */
|
||||||
|
|
||||||
h1 br, h2 br, h3 br, h4 br, h5 br, h6 br {
|
h1 br,
|
||||||
|
h2 br,
|
||||||
|
h3 br,
|
||||||
|
h4 br,
|
||||||
|
h5 br,
|
||||||
|
h6 br {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -3113,13 +3219,11 @@ input, select, textarea {
|
|||||||
padding: 6em 4em;
|
padding: 6em 4em;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Small */
|
/* Small */
|
||||||
|
|
||||||
@media screen and (max-width: 736px) {
|
@media screen and (max-width: 736px) {
|
||||||
|
|
||||||
/* Basic */
|
/* Basic */
|
||||||
|
|
||||||
h1 {
|
h1 {
|
||||||
@@ -3136,7 +3240,8 @@ input, select, textarea {
|
|||||||
|
|
||||||
/* Section/Article */
|
/* Section/Article */
|
||||||
|
|
||||||
section.special, article.special {
|
section.special,
|
||||||
|
article.special {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -3191,13 +3296,11 @@ input, select, textarea {
|
|||||||
.poptrox-popup .nav-previous:before {
|
.poptrox-popup .nav-previous:before {
|
||||||
margin-top: -1em;
|
margin-top: -1em;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* XSmall */
|
/* XSmall */
|
||||||
|
|
||||||
@media screen and (max-width: 480px) {
|
@media screen and (max-width: 480px) {
|
||||||
|
|
||||||
/* Header */
|
/* Header */
|
||||||
|
|
||||||
#header {
|
#header {
|
||||||
@@ -3217,5 +3320,27 @@ input, select, textarea {
|
|||||||
margin-left: 0;
|
margin-left: 0;
|
||||||
padding-left: 0;
|
padding-left: 0;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.button-container {
|
||||||
|
bottom: 10px; /* Adjust as needed */
|
||||||
|
left: 10px; /* Adjust as needed */
|
||||||
|
z-index: 10; /* Ensure they are above the image */
|
||||||
|
}
|
||||||
|
|
||||||
|
.image.fit {
|
||||||
|
position: relative; /* Ensure the image is the positioning context for the buttons */
|
||||||
|
}
|
||||||
|
|
||||||
|
.image.fit:hover .button-container {
|
||||||
|
display: flex; /* Show buttons on hover */
|
||||||
|
gap: 10px; /* Space between buttons */
|
||||||
|
}
|
||||||
|
|
||||||
|
.view-button {
|
||||||
|
display: none; /* Hide the existing view button by default */
|
||||||
|
}
|
||||||
|
|
||||||
|
.image.fit:hover .view-button {
|
||||||
|
display: inline-block; /* Show the existing view button on hover */
|
||||||
}
|
}
|
||||||
42
assets/js/formHandler.js
Normal file
42
assets/js/formHandler.js
Normal file
@@ -0,0 +1,42 @@
|
|||||||
|
let hcaptchaVerified = false;
|
||||||
|
|
||||||
|
// Callback function for hCaptcha
|
||||||
|
function onVerify() {
|
||||||
|
hcaptchaVerified = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Prevent form submission if hCaptcha is not verified
|
||||||
|
document.getElementById("contactForm").addEventListener("submit", function (e) {
|
||||||
|
e.preventDefault(); // Prevent the default form submission
|
||||||
|
if (hcaptchaVerified) {
|
||||||
|
const email = document.getElementById("email").value;
|
||||||
|
document.getElementById("subject").value = `New submission from ${email}`;
|
||||||
|
|
||||||
|
// Use fetch to submit the form data
|
||||||
|
fetch(this.action, {
|
||||||
|
method: "POST",
|
||||||
|
body: new FormData(this),
|
||||||
|
})
|
||||||
|
.then((response) => {
|
||||||
|
if (response.ok) {
|
||||||
|
clearFormFields(); // Clear fields on successful submission
|
||||||
|
alert("Your message has been sent!");
|
||||||
|
} else {
|
||||||
|
alert("There was a problem with your submission.");
|
||||||
|
}
|
||||||
|
})
|
||||||
|
.catch((error) => {
|
||||||
|
console.error("Error:", error);
|
||||||
|
alert("There was a problem with your submission.");
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
alert("Please complete the hCaptcha challenge."); // Alert if hCaptcha is not verified
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
// Function to clear form fields
|
||||||
|
function clearFormFields() {
|
||||||
|
document.getElementById("name").value = "Name";
|
||||||
|
document.getElementById("email").value = "Email";
|
||||||
|
document.getElementById("message").value = "Message";
|
||||||
|
}
|
||||||
@@ -87,22 +87,22 @@
|
|||||||
|
|
||||||
// Main Sections: Two.
|
// Main Sections: Two.
|
||||||
|
|
||||||
// Lightbox gallery.
|
// // Lightbox gallery.
|
||||||
$window.on("load", function () {
|
// $window.on("load", function () {
|
||||||
$("#two").poptrox({
|
// $("#two").poptrox({
|
||||||
caption: function ($a) {
|
// caption: function ($a) {
|
||||||
return $a.next("h3").text();
|
// return $a.next("h3").text();
|
||||||
},
|
// },
|
||||||
overlayColor: "#2c2c2c",
|
// overlayColor: "#2c2c2c",
|
||||||
overlayOpacity: 0.85,
|
// overlayOpacity: 0.85,
|
||||||
popupCloserText: "",
|
// popupCloserText: "",
|
||||||
popupLoaderText: "",
|
// popupLoaderText: "",
|
||||||
selector: ".work-item a.image",
|
// selector: ".work-item a.image",
|
||||||
usePopupCaption: true,
|
// usePopupCaption: true,
|
||||||
usePopupDefaultStyling: false,
|
// usePopupDefaultStyling: false,
|
||||||
usePopupEasyClose: false,
|
// usePopupEasyClose: false,
|
||||||
usePopupNav: true,
|
// usePopupNav: true,
|
||||||
windowMargin: breakpoints.active("<=small") ? 0 : 50,
|
// windowMargin: breakpoints.active("<=small") ? 0 : 50,
|
||||||
});
|
// });
|
||||||
});
|
// });
|
||||||
})(jQuery);
|
})(jQuery);
|
||||||
|
|||||||
BIN
documents/Michael_Roy_Dev_Resume_v10.pdf
Normal file
BIN
documents/Michael_Roy_Dev_Resume_v10.pdf
Normal file
Binary file not shown.
413
index.html
413
index.html
@@ -84,7 +84,10 @@
|
|||||||
<h2>Recent Work</h2>
|
<h2>Recent Work</h2>
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<article class="col-6 col-12-xsmall work-item">
|
<article class="col-6 col-12-xsmall work-item">
|
||||||
<a href="images/fulls/01.jpg" class="image fit thumb"
|
<a
|
||||||
|
href="https://deep-impact.onrender.com"
|
||||||
|
class="image fit thumb"
|
||||||
|
target="_blank"
|
||||||
><img src="images/DeepImpact.jpeg" alt="Michael Roy"
|
><img src="images/DeepImpact.jpeg" alt="Michael Roy"
|
||||||
/></a>
|
/></a>
|
||||||
<h3>Deep Impact (2024 Hackathon Winner!)</h3>
|
<h3>Deep Impact (2024 Hackathon Winner!)</h3>
|
||||||
@@ -96,7 +99,10 @@
|
|||||||
</p>
|
</p>
|
||||||
</article>
|
</article>
|
||||||
<article class="col-6 col-12-xsmall work-item">
|
<article class="col-6 col-12-xsmall work-item">
|
||||||
<a href="images/fulls/02.jpg" class="image fit thumb"
|
<a
|
||||||
|
href="https://github.com/L-Carr/Platoon-Console"
|
||||||
|
class="image fit thumb"
|
||||||
|
target="_blank"
|
||||||
><img src="images/platoon-console-v3.svg" alt="Michael Roy"
|
><img src="images/platoon-console-v3.svg" alt="Michael Roy"
|
||||||
/></a>
|
/></a>
|
||||||
<h3>Platoon Console</h3>
|
<h3>Platoon Console</h3>
|
||||||
@@ -108,7 +114,10 @@
|
|||||||
</p>
|
</p>
|
||||||
</article>
|
</article>
|
||||||
<article class="col-6 col-12-xsmall work-item">
|
<article class="col-6 col-12-xsmall work-item">
|
||||||
<a href="images/fulls/03.jpg" class="image fit thumb"
|
<a
|
||||||
|
href="https://github.com/vivekmishra9631/PayBridge"
|
||||||
|
class="image fit thumb"
|
||||||
|
target="_blank"
|
||||||
><img src="images/paybridge_logo.jpg" alt="Michael Roy"
|
><img src="images/paybridge_logo.jpg" alt="Michael Roy"
|
||||||
/></a>
|
/></a>
|
||||||
<h3>PayBridge</h3>
|
<h3>PayBridge</h3>
|
||||||
@@ -123,7 +132,10 @@
|
|||||||
</p>
|
</p>
|
||||||
</article>
|
</article>
|
||||||
<article class="col-6 col-12-xsmall work-item">
|
<article class="col-6 col-12-xsmall work-item">
|
||||||
<a href="images/fulls/04.jpg" class="image fit thumb"
|
<a
|
||||||
|
href="https://github.com/its-michaelroy/ValidationStation"
|
||||||
|
class="image fit thumb"
|
||||||
|
target="_blank"
|
||||||
><img src="images/validation.png" alt="Michael Roy"
|
><img src="images/validation.png" alt="Michael Roy"
|
||||||
/></a>
|
/></a>
|
||||||
<h3>Validation Station</h3>
|
<h3>Validation Station</h3>
|
||||||
@@ -141,7 +153,10 @@
|
|||||||
</p>
|
</p>
|
||||||
</article>
|
</article>
|
||||||
<article class="col-6 col-12-xsmall work-item">
|
<article class="col-6 col-12-xsmall work-item">
|
||||||
<a href="images/fulls/05.jpg" class="image fit thumb"
|
<a
|
||||||
|
href="https://mrcodewizard.com"
|
||||||
|
class="image fit thumb"
|
||||||
|
target="_blank"
|
||||||
><img src="images/website.png" alt="Michael Roy"
|
><img src="images/website.png" alt="Michael Roy"
|
||||||
/></a>
|
/></a>
|
||||||
<h3>Minimal Portfolio</h3>
|
<h3>Minimal Portfolio</h3>
|
||||||
@@ -151,7 +166,10 @@
|
|||||||
</p>
|
</p>
|
||||||
</article>
|
</article>
|
||||||
<article class="col-6 col-12-xsmall work-item">
|
<article class="col-6 col-12-xsmall work-item">
|
||||||
<a href="images/fulls/06.jpg" class="image fit thumb"
|
<a
|
||||||
|
href="https://mrcodewizard.com/p1/ShufflePuck"
|
||||||
|
class="image fit thumb"
|
||||||
|
target="_blank"
|
||||||
><img src="images/Shufflepuck.png" alt="Michael Roy"
|
><img src="images/Shufflepuck.png" alt="Michael Roy"
|
||||||
/></a>
|
/></a>
|
||||||
<h3>Shuffle Puck</h3>
|
<h3>Shuffle Puck</h3>
|
||||||
@@ -162,7 +180,10 @@
|
|||||||
</p>
|
</p>
|
||||||
</article>
|
</article>
|
||||||
<article class="col-6 col-12-xsmall work-item">
|
<article class="col-6 col-12-xsmall work-item">
|
||||||
<a href="images/fulls/06.jpg" class="image fit thumb"
|
<a
|
||||||
|
href="https://github.com/its-michaelroy/npx_business_card#readme"
|
||||||
|
class="image fit thumb"
|
||||||
|
target="_blank"
|
||||||
><img src="images/npx_Business_card_square.png" alt="Michael Roy"
|
><img src="images/npx_Business_card_square.png" alt="Michael Roy"
|
||||||
/></a>
|
/></a>
|
||||||
<h3>NPM Digital Business Card</h3>
|
<h3>NPM Digital Business Card</h3>
|
||||||
@@ -192,10 +213,20 @@
|
|||||||
</p>
|
</p>
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-8 col-12-small">
|
<div class="col-8 col-12-small">
|
||||||
<form method="post" action="#">
|
<form
|
||||||
<div class="row gtr-uniform gtr-50">
|
method="POST"
|
||||||
|
action="https://formspree.io/f/xldrgkro"
|
||||||
|
class="row gtr-uniform gtr-50"
|
||||||
|
>
|
||||||
|
<input type="hidden" name="subject" id="subject" />
|
||||||
<div class="col-6 col-12-xsmall">
|
<div class="col-6 col-12-xsmall">
|
||||||
<input type="text" name="name" id="name" placeholder="Name" />
|
<input
|
||||||
|
type="text"
|
||||||
|
name="name"
|
||||||
|
id="name"
|
||||||
|
placeholder="Name"
|
||||||
|
required
|
||||||
|
/>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-6 col-12-xsmall">
|
<div class="col-6 col-12-xsmall">
|
||||||
<input
|
<input
|
||||||
@@ -203,6 +234,7 @@
|
|||||||
name="email"
|
name="email"
|
||||||
id="email"
|
id="email"
|
||||||
placeholder="Email"
|
placeholder="Email"
|
||||||
|
required
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-12">
|
<div class="col-12">
|
||||||
@@ -211,334 +243,28 @@
|
|||||||
id="message"
|
id="message"
|
||||||
placeholder="Message"
|
placeholder="Message"
|
||||||
rows="4"
|
rows="4"
|
||||||
|
required
|
||||||
></textarea>
|
></textarea>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="col-12">
|
||||||
|
<div
|
||||||
|
class="h-captcha"
|
||||||
|
data-sitekey="a3a0feb2-f424-4848-8838-a640bea6ae62"
|
||||||
|
data-callback="onVerify"
|
||||||
|
></div>
|
||||||
|
</div>
|
||||||
|
<div class="col-12">
|
||||||
|
<ul class="actions">
|
||||||
|
<li>
|
||||||
|
<input type="submit" value="Send Message" />
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
</form>
|
</form>
|
||||||
<ul class="actions">
|
|
||||||
<li><input type="submit" value="Send Message" /></li>
|
|
||||||
</ul>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<!-- Four -->
|
|
||||||
<!--
|
|
||||||
<section id="four">
|
|
||||||
<h2>Elements</h2>
|
|
||||||
|
|
||||||
<section>
|
|
||||||
<h4>Text</h4>
|
|
||||||
<p>This is <b>bold</b> and this is <strong>strong</strong>. This is <i>italic</i> and this is <em>emphasized</em>.
|
|
||||||
This is <sup>superscript</sup> text and this is <sub>subscript</sub> text.
|
|
||||||
This is <u>underlined</u> and this is code: <code>for (;;) { ... }</code>. Finally, <a href="#">this is a link</a>.</p>
|
|
||||||
<hr />
|
|
||||||
<header>
|
|
||||||
<h4>Heading with a Subtitle</h4>
|
|
||||||
<p>Lorem ipsum dolor sit amet nullam id egestas urna aliquam</p>
|
|
||||||
</header>
|
|
||||||
<p>Nunc lacinia ante nunc ac lobortis. Interdum adipiscing gravida odio porttitor sem non mi integer non faucibus ornare mi ut ante amet placerat aliquet. Volutpat eu sed ante lacinia sapien lorem accumsan varius montes viverra nibh in adipiscing blandit tempus accumsan.</p>
|
|
||||||
<header>
|
|
||||||
<h5>Heading with a Subtitle</h5>
|
|
||||||
<p>Lorem ipsum dolor sit amet nullam id egestas urna aliquam</p>
|
|
||||||
</header>
|
|
||||||
<p>Nunc lacinia ante nunc ac lobortis. Interdum adipiscing gravida odio porttitor sem non mi integer non faucibus ornare mi ut ante amet placerat aliquet. Volutpat eu sed ante lacinia sapien lorem accumsan varius montes viverra nibh in adipiscing blandit tempus accumsan.</p>
|
|
||||||
<hr />
|
|
||||||
<h2>Heading Level 2</h2>
|
|
||||||
<h3>Heading Level 3</h3>
|
|
||||||
<h4>Heading Level 4</h4>
|
|
||||||
<h5>Heading Level 5</h5>
|
|
||||||
<h6>Heading Level 6</h6>
|
|
||||||
<hr />
|
|
||||||
<h5>Blockquote</h5>
|
|
||||||
<blockquote>Fringilla nisl. Donec accumsan interdum nisi, quis tincidunt felis sagittis eget tempus euismod. Vestibulum ante ipsum primis in faucibus vestibulum. Blandit adipiscing eu felis iaculis volutpat ac adipiscing accumsan faucibus. Vestibulum ante ipsum primis in faucibus lorem ipsum dolor sit amet nullam adipiscing eu felis.</blockquote>
|
|
||||||
<h5>Preformatted</h5>
|
|
||||||
<pre><code>i = 0;
|
|
||||||
|
|
||||||
while (!deck.isInOrder()) {
|
|
||||||
print 'Iteration ' + i;
|
|
||||||
deck.shuffle();
|
|
||||||
i++;
|
|
||||||
}
|
|
||||||
|
|
||||||
print 'It took ' + i + ' iterations to sort the deck.';</code></pre>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<section>
|
|
||||||
<h4>Lists</h4>
|
|
||||||
<div class="row">
|
|
||||||
<div class="col-6 col-12-xsmall">
|
|
||||||
<h5>Unordered</h5>
|
|
||||||
<ul>
|
|
||||||
<li>Dolor pulvinar etiam magna etiam.</li>
|
|
||||||
<li>Sagittis adipiscing lorem eleifend.</li>
|
|
||||||
<li>Felis enim feugiat dolore viverra.</li>
|
|
||||||
</ul>
|
|
||||||
<h5>Alternate</h5>
|
|
||||||
<ul class="alt">
|
|
||||||
<li>Dolor pulvinar etiam magna etiam.</li>
|
|
||||||
<li>Sagittis adipiscing lorem eleifend.</li>
|
|
||||||
<li>Felis enim feugiat dolore viverra.</li>
|
|
||||||
</ul>
|
|
||||||
</div>
|
</div>
|
||||||
<div class="col-6 col-12-xsmall">
|
|
||||||
<h5>Ordered</h5>
|
|
||||||
<ol>
|
|
||||||
<li>Dolor pulvinar etiam magna etiam.</li>
|
|
||||||
<li>Etiam vel felis at lorem sed viverra.</li>
|
|
||||||
<li>Felis enim feugiat dolore viverra.</li>
|
|
||||||
<li>Dolor pulvinar etiam magna etiam.</li>
|
|
||||||
<li>Etiam vel felis at lorem sed viverra.</li>
|
|
||||||
<li>Felis enim feugiat dolore viverra.</li>
|
|
||||||
</ol>
|
|
||||||
<h5>Icons</h5>
|
|
||||||
<ul class="icons">
|
|
||||||
<li><a href="#" class="icon brands fa-twitter"><span class="label">Twitter</span></a></li>
|
|
||||||
<li><a href="#" class="icon brands fa-facebook-f"><span class="label">Facebook</span></a></li>
|
|
||||||
<li><a href="#" class="icon brands fa-instagram"><span class="label">Instagram</span></a></li>
|
|
||||||
<li><a href="#" class="icon brands fa-github"><span class="label">Github</span></a></li>
|
|
||||||
<li><a href="#" class="icon brands fa-dribbble"><span class="label">Dribbble</span></a></li>
|
|
||||||
<li><a href="#" class="icon brands fa-tumblr"><span class="label">Tumblr</span></a></li>
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<h5>Actions</h5>
|
|
||||||
<ul class="actions">
|
|
||||||
<li><a href="#" class="button primary">Default</a></li>
|
|
||||||
<li><a href="#" class="button">Default</a></li>
|
|
||||||
</ul>
|
|
||||||
<ul class="actions small">
|
|
||||||
<li><a href="#" class="button primary small">Small</a></li>
|
|
||||||
<li><a href="#" class="button small">Small</a></li>
|
|
||||||
</ul>
|
|
||||||
<div class="row">
|
|
||||||
<div class="col-6 col-12-small">
|
|
||||||
<ul class="actions stacked">
|
|
||||||
<li><a href="#" class="button primary">Default</a></li>
|
|
||||||
<li><a href="#" class="button">Default</a></li>
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
<div class="col-6 col-12-small">
|
|
||||||
<ul class="actions stacked">
|
|
||||||
<li><a href="#" class="button primary small">Small</a></li>
|
|
||||||
<li><a href="#" class="button small">Small</a></li>
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
<div class="col-6 col-12-small">
|
|
||||||
<ul class="actions stacked">
|
|
||||||
<li><a href="#" class="button primary fit">Default</a></li>
|
|
||||||
<li><a href="#" class="button fit">Default</a></li>
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
<div class="col-6 col-12-small">
|
|
||||||
<ul class="actions stacked">
|
|
||||||
<li><a href="#" class="button primary small fit">Small</a></li>
|
|
||||||
<li><a href="#" class="button small fit">Small</a></li>
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<section>
|
|
||||||
<h4>Table</h4>
|
|
||||||
<h5>Default</h5>
|
|
||||||
<div class="table-wrapper">
|
|
||||||
<table>
|
|
||||||
<thead>
|
|
||||||
<tr>
|
|
||||||
<th>Name</th>
|
|
||||||
<th>Description</th>
|
|
||||||
<th>Price</th>
|
|
||||||
</tr>
|
|
||||||
</thead>
|
|
||||||
<tbody>
|
|
||||||
<tr>
|
|
||||||
<td>Item One</td>
|
|
||||||
<td>Ante turpis integer aliquet porttitor.</td>
|
|
||||||
<td>29.99</td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td>Item Two</td>
|
|
||||||
<td>Vis ac commodo adipiscing arcu aliquet.</td>
|
|
||||||
<td>19.99</td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td>Item Three</td>
|
|
||||||
<td> Morbi faucibus arcu accumsan lorem.</td>
|
|
||||||
<td>29.99</td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td>Item Four</td>
|
|
||||||
<td>Vitae integer tempus condimentum.</td>
|
|
||||||
<td>19.99</td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td>Item Five</td>
|
|
||||||
<td>Ante turpis integer aliquet porttitor.</td>
|
|
||||||
<td>29.99</td>
|
|
||||||
</tr>
|
|
||||||
</tbody>
|
|
||||||
<tfoot>
|
|
||||||
<tr>
|
|
||||||
<td colspan="2"></td>
|
|
||||||
<td>100.00</td>
|
|
||||||
</tr>
|
|
||||||
</tfoot>
|
|
||||||
</table>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<h5>Alternate</h5>
|
|
||||||
<div class="table-wrapper">
|
|
||||||
<table class="alt">
|
|
||||||
<thead>
|
|
||||||
<tr>
|
|
||||||
<th>Name</th>
|
|
||||||
<th>Description</th>
|
|
||||||
<th>Price</th>
|
|
||||||
</tr>
|
|
||||||
</thead>
|
|
||||||
<tbody>
|
|
||||||
<tr>
|
|
||||||
<td>Item One</td>
|
|
||||||
<td>Ante turpis integer aliquet porttitor.</td>
|
|
||||||
<td>29.99</td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td>Item Two</td>
|
|
||||||
<td>Vis ac commodo adipiscing arcu aliquet.</td>
|
|
||||||
<td>19.99</td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td>Item Three</td>
|
|
||||||
<td> Morbi faucibus arcu accumsan lorem.</td>
|
|
||||||
<td>29.99</td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td>Item Four</td>
|
|
||||||
<td>Vitae integer tempus condimentum.</td>
|
|
||||||
<td>19.99</td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td>Item Five</td>
|
|
||||||
<td>Ante turpis integer aliquet porttitor.</td>
|
|
||||||
<td>29.99</td>
|
|
||||||
</tr>
|
|
||||||
</tbody>
|
|
||||||
<tfoot>
|
|
||||||
<tr>
|
|
||||||
<td colspan="2"></td>
|
|
||||||
<td>100.00</td>
|
|
||||||
</tr>
|
|
||||||
</tfoot>
|
|
||||||
</table>
|
|
||||||
</div>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<section>
|
|
||||||
<h4>Buttons</h4>
|
|
||||||
<ul class="actions">
|
|
||||||
<li><a href="#" class="button primary">Primary</a></li>
|
|
||||||
<li><a href="#" class="button">Default</a></li>
|
|
||||||
</ul>
|
|
||||||
<ul class="actions">
|
|
||||||
<li><a href="#" class="button large">Large</a></li>
|
|
||||||
<li><a href="#" class="button">Default</a></li>
|
|
||||||
<li><a href="#" class="button small">Small</a></li>
|
|
||||||
</ul>
|
|
||||||
<ul class="actions fit">
|
|
||||||
<li><a href="#" class="button primary fit">Fit</a></li>
|
|
||||||
<li><a href="#" class="button fit">Fit</a></li>
|
|
||||||
</ul>
|
|
||||||
<ul class="actions fit small">
|
|
||||||
<li><a href="#" class="button primary fit small">Fit + Small</a></li>
|
|
||||||
<li><a href="#" class="button fit small">Fit + Small</a></li>
|
|
||||||
</ul>
|
|
||||||
<ul class="actions">
|
|
||||||
<li><a href="#" class="button primary icon solid fa-download">Icon</a></li>
|
|
||||||
<li><a href="#" class="button icon solid fa-download">Icon</a></li>
|
|
||||||
</ul>
|
|
||||||
<ul class="actions">
|
|
||||||
<li><span class="button primary disabled">Primary</span></li>
|
|
||||||
<li><span class="button disabled">Default</span></li>
|
|
||||||
</ul>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<section>
|
|
||||||
<h4>Form</h4>
|
|
||||||
<form method="post" action="#">
|
|
||||||
<div class="row gtr-uniform gtr-50">
|
|
||||||
<div class="col-6 col-12-xsmall">
|
|
||||||
<input type="text" name="demo-name" id="demo-name" value="" placeholder="Name" />
|
|
||||||
</div>
|
|
||||||
<div class="col-6 col-12-xsmall">
|
|
||||||
<input type="email" name="demo-email" id="demo-email" value="" placeholder="Email" />
|
|
||||||
</div>
|
|
||||||
<div class="col-12">
|
|
||||||
<select name="demo-category" id="demo-category">
|
|
||||||
<option value="">- Category -</option>
|
|
||||||
<option value="1">Manufacturing</option>
|
|
||||||
<option value="1">Shipping</option>
|
|
||||||
<option value="1">Administration</option>
|
|
||||||
<option value="1">Human Resources</option>
|
|
||||||
</select>
|
|
||||||
</div>
|
|
||||||
<div class="col-4 col-12-small">
|
|
||||||
<input type="radio" id="demo-priority-low" name="demo-priority" checked>
|
|
||||||
<label for="demo-priority-low">Low Priority</label>
|
|
||||||
</div>
|
|
||||||
<div class="col-4 col-12-small">
|
|
||||||
<input type="radio" id="demo-priority-normal" name="demo-priority">
|
|
||||||
<label for="demo-priority-normal">Normal Priority</label>
|
|
||||||
</div>
|
|
||||||
<div class="col-4 col-12-small">
|
|
||||||
<input type="radio" id="demo-priority-high" name="demo-priority">
|
|
||||||
<label for="demo-priority-high">High Priority</label>
|
|
||||||
</div>
|
|
||||||
<div class="col-6 col-12-small">
|
|
||||||
<input type="checkbox" id="demo-copy" name="demo-copy">
|
|
||||||
<label for="demo-copy">Email me a copy of this message</label>
|
|
||||||
</div>
|
|
||||||
<div class="col-6 col-12-small">
|
|
||||||
<input type="checkbox" id="demo-human" name="demo-human" checked>
|
|
||||||
<label for="demo-human">I am a human and not a robot</label>
|
|
||||||
</div>
|
|
||||||
<div class="col-12">
|
|
||||||
<textarea name="demo-message" id="demo-message" placeholder="Enter your message" rows="6"></textarea>
|
|
||||||
</div>
|
|
||||||
<div class="col-12">
|
|
||||||
<ul class="actions">
|
|
||||||
<li><input type="submit" value="Send Message" class="primary" /></li>
|
|
||||||
<li><input type="reset" value="Reset" /></li>
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</form>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<section>
|
|
||||||
<h4>Image</h4>
|
|
||||||
<h5>Fit</h5>
|
|
||||||
<div class="box alt">
|
|
||||||
<div class="row gtr-50 gtr-uniform">
|
|
||||||
<div class="col-12"><span class="image fit"><img src="images/fulls/05.jpg" alt="" /></span></div>
|
|
||||||
<div class="col-4"><span class="image fit"><img src="images/thumbs/01.jpg" alt="" /></span></div>
|
|
||||||
<div class="col-4"><span class="image fit"><img src="images/thumbs/02.jpg" alt="" /></span></div>
|
|
||||||
<div class="col-4"><span class="image fit"><img src="images/thumbs/03.jpg" alt="" /></span></div>
|
|
||||||
<div class="col-4"><span class="image fit"><img src="images/thumbs/04.jpg" alt="" /></span></div>
|
|
||||||
<div class="col-4"><span class="image fit"><img src="images/thumbs/05.jpg" alt="" /></span></div>
|
|
||||||
<div class="col-4"><span class="image fit"><img src="images/thumbs/06.jpg" alt="" /></span></div>
|
|
||||||
<div class="col-4"><span class="image fit"><img src="images/thumbs/03.jpg" alt="" /></span></div>
|
|
||||||
<div class="col-4"><span class="image fit"><img src="images/thumbs/02.jpg" alt="" /></span></div>
|
|
||||||
<div class="col-4"><span class="image fit"><img src="images/thumbs/01.jpg" alt="" /></span></div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<h5>Left & Right</h5>
|
|
||||||
<p><span class="image left"><img src="images/avatar.jpg" alt="" /></span>Fringilla nisl. Donec accumsan interdum nisi, quis tincidunt felis sagittis eget. tempus euismod. Vestibulum ante ipsum primis in faucibus vestibulum. Blandit adipiscing eu felis iaculis volutpat ac adipiscing accumsan eu faucibus. Integer ac pellentesque praesent tincidunt felis sagittis eget. tempus euismod. Vestibulum ante ipsum primis in faucibus vestibulum. Blandit adipiscing eu felis iaculis volutpat ac adipiscing accumsan eu faucibus. Integer ac pellentesque praesent. Donec accumsan interdum nisi, quis tincidunt felis sagittis eget. tempus euismod. Vestibulum ante ipsum primis in faucibus vestibulum. Blandit adipiscing eu felis iaculis volutpat ac adipiscing accumsan eu faucibus. Integer ac pellentesque praesent tincidunt felis sagittis eget. tempus euismod. Vestibulum ante ipsum primis in faucibus vestibulum. Blandit adipiscing eu felis iaculis volutpat ac adipiscing accumsan eu faucibus. Integer ac pellentesque praesent.</p>
|
|
||||||
<p><span class="image right"><img src="images/avatar.jpg" alt="" /></span>Fringilla nisl. Donec accumsan interdum nisi, quis tincidunt felis sagittis eget. tempus euismod. Vestibulum ante ipsum primis in faucibus vestibulum. Blandit adipiscing eu felis iaculis volutpat ac adipiscing accumsan eu faucibus. Integer ac pellentesque praesent tincidunt felis sagittis eget. tempus euismod. Vestibulum ante ipsum primis in faucibus vestibulum. Blandit adipiscing eu felis iaculis volutpat ac adipiscing accumsan eu faucibus. Integer ac pellentesque praesent. Donec accumsan interdum nisi, quis tincidunt felis sagittis eget. tempus euismod. Vestibulum ante ipsum primis in faucibus vestibulum. Blandit adipiscing eu felis iaculis volutpat ac adipiscing accumsan eu faucibus. Integer ac pellentesque praesent tincidunt felis sagittis eget. tempus euismod. Vestibulum ante ipsum primis in faucibus vestibulum. Blandit adipiscing eu felis iaculis volutpat ac adipiscing accumsan eu faucibus. Integer ac pellentesque praesent.</p>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
</section>
|
|
||||||
--></div>
|
|
||||||
|
|
||||||
<!-- Footer -->
|
<!-- Footer -->
|
||||||
<footer id="footer">
|
<footer id="footer">
|
||||||
@@ -571,6 +297,15 @@ print 'It took ' + i + ' iterations to sort the deck.';</code></pre>
|
|||||||
><span class="label">Portfolio</span></a
|
><span class="label">Portfolio</span></a
|
||||||
>
|
>
|
||||||
</li>
|
</li>
|
||||||
|
<li>
|
||||||
|
<a
|
||||||
|
href="documents/Michael_Roy_Dev_Resume_v10.pdf"
|
||||||
|
class="icon solid fa-file-pdf"
|
||||||
|
download="Michael_Roy_Dev_Resume.pdf"
|
||||||
|
title="Resume"
|
||||||
|
><span class="label">Resume</span></a
|
||||||
|
>
|
||||||
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<a
|
<a
|
||||||
href="mailto:michael.roy@mrcodewizard.com"
|
href="mailto:michael.roy@mrcodewizard.com"
|
||||||
@@ -597,6 +332,7 @@ print 'It took ' + i + ' iterations to sort the deck.';</code></pre>
|
|||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
<!-- Scripts -->
|
<!-- Scripts -->
|
||||||
|
<script src="https://js.hcaptcha.com/1/api.js" async defer></script>
|
||||||
<script src="assets/js/jquery.min.js"></script>
|
<script src="assets/js/jquery.min.js"></script>
|
||||||
<script src="assets/js/jquery.poptrox.min.js"></script>
|
<script src="assets/js/jquery.poptrox.min.js"></script>
|
||||||
<script src="assets/js/browser.min.js"></script>
|
<script src="assets/js/browser.min.js"></script>
|
||||||
@@ -604,5 +340,22 @@ print 'It took ' + i + ' iterations to sort the deck.';</code></pre>
|
|||||||
<script src="assets/js/util.js"></script>
|
<script src="assets/js/util.js"></script>
|
||||||
<script src="assets/js/main.js"></script>
|
<script src="assets/js/main.js"></script>
|
||||||
<script src="assets/js/year.js"></script>
|
<script src="assets/js/year.js"></script>
|
||||||
|
<script src="assets/js/formHandler.js" defer></script>
|
||||||
|
<script>
|
||||||
|
window.va =
|
||||||
|
window.va ||
|
||||||
|
function () {
|
||||||
|
(window.vaq = window.vaq || []).push(arguments);
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
<script defer src="/_vercel/insights/script.js"></script>
|
||||||
|
<script>
|
||||||
|
window.si =
|
||||||
|
window.si ||
|
||||||
|
function () {
|
||||||
|
(window.siq = window.siq || []).push(arguments);
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
<script defer src="/_vercel/speed-insights/script.js"></script>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
Reference in New Issue
Block a user