Skip to content

Eric rice #1305

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 7 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions contact.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<!DOCTYPE html>

<html lang="en">
<head>
<meta charset="utf-8" />

<title>My Resume</title>

<link rel="stylesheet" href="css/index.css" />


<!--[if lt IE 9]>
<script src="https://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.js"></script>
<![endif]-->
</head>

<body>
<span class="contactContainer">
<h1>[email protected]</h1>
<h2>+1 860 301 7186</h2>


</span>
</body>
262 changes: 261 additions & 1 deletion css/index.css
Original file line number Diff line number Diff line change
@@ -1 +1,261 @@
/* Compile your LESS file! */
/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
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;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
display: block;
}
body {
line-height: 1;
}
ol,
ul {
list-style: none;
}
blockquote,
q {
quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
content: "";
content: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
/* Set every element's box-sizing to border-box */
* {
box-sizing: border-box;
}
html,
body {
height: 100%;
}
html {
font-size: 62.5%;
font-family: "Inconsolata", monospace;
}
body {
margin-top: 50px;
margin-left: 25px;
margin-right: 25px;
width: 100%;
height: 100%;
background-image: url("https://thumbs.dreamstime.com/b/abstract-architecture-design-white-modern-background-minimal-b-building-construction-column-interior-concept-d-illustration-97139368.jpg");
}
body .topBar {
font-family: "Inconsolata", monospace;
text-decoration: none;
color: black;
display: flex;
justify-content: space-around;
}
body .topBar nav {
border: 2px solid black;
margin: 30px;
display: flex;
font-size: 1.4rem;
justify-content: space-between;
background-image: url("https://encrypted-tbn0.gstatic.com/images?q=tbn%3AANd9GcR4iBhZWdDQthE_CkOQZlc3Vf_qtJTtyQt72EODHXLdKf_iULoL&usqp=CAU");
}
@media (max-width: 500px) {
body .topBar nav {
background-color: red;
width: 80%;
display: flex;
flex-wrap: wrap;
flex-direction: column;
justify-content: space-between;
}
}
body .topBar nav a {
border: 1px solid darkcyan;
font-family: "Inconsolata", monospace;
text-decoration: none;
color: black;
padding: 10px;
margin: 20px;
box-shadow: 0px 0px 7px #000000;
background-color: ghostwhite;
}
body .topContent {
border: 2px solid black;
margin: 10px;
padding: 10px;
height: 100%;
width: auto;
background-color: white;
font-size: 1.6rem;
font-family: "Inconsolata", monospace;
text-decoration: none;
color: black;
}
body .topContent h1 {
font-size: 2rem;
font-family: sans-serif;
display: flex;
justify-content: center;
}
body .topContent table {
display: flex;
justify-content: center;
font-size: 2rem;
height: 100%;
padding: 10px;
margin: 10px;
border: 2px solid black;
}
body .topContent table tr:hover {
color: darkturquoise;
}
body .topContent table td {
border: 1px solid black;
display: flex;
justify-content: center;
margin: 10px;
padding: 10px;
}
body .topContent table .contact {
font-family: "Inconsolata", monospace;
text-decoration: none;
color: black;
}
body .topContent table p {
font-size: 1.4rem;
width: 40%;
display: flex;
flex-wrap: wrap;
margin: 10px;
padding: 10px;
}
body .topContent table .container {
padding: 50px;
margin: 0 auto;
width: 100%;
min-width: 30rem;
height: 100%;
background-color: #f8f8ff;
box-shadow: 0px 0px 7px #000000;
}
@media (max-width: 500px) {
body .topContent table .container {
width: 100%;
display: flex;
flex-wrap: wrap;
flex-direction: row;
}
}
body .topContent table .container .heroImage {
display: flex;
justify-content: flex-start;
align-items: center;
margin: 10px;
padding: 10px;
}
body .topContent header {
display: flex;
justify-content: flex-end;
}
Loading