Skip to content
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
3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"liveServer.settings.port": 5501
}
267 changes: 266 additions & 1 deletion css/index.css
Original file line number Diff line number Diff line change
@@ -1 +1,266 @@
/* Compile your LESS file! */
/* 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 {
background-color: deeppink;
margin: 0 auto;
width: 80%;
height: 100%;
font-family: "Roboto", sans-serif;
}
.header {
width: 90%;
margin: 2%;
display: flex;
justify-content: flex-end;
}

h1 {
font-size: 46px;
}

h4 {
font-size: 21px;
}
nav {
width: 40%;
display: flex;
justify-content: space-around;
}
.top-content{
background-color: gray;

}

.top-contenttop img {
width: 20%;
margin: 6% 2% 0 2%;
}

.toptext h1 {
width: 90%;
margin: 0% 2%;
}

.toptext h4 {
width: 90%;
margin: 2% 2%;
}

.topcontent-bot {
width: 80%;
margin: 2%;
border-top: 3px solid red;
}

.topcontent-bot p {
width: 90%;
margin: 2%;
}

.topcontent-bot button {
font-size: 14px;
width: 20%;
height: 30px;
margin: 2%;
}


.biomiddle {
width: 100%;
padding: 2% 8%;
display: flex;
justify-content: space-between;

}
.bio {

width: 47%;
display: flex;
flex-direction: column;
flex-wrap: wrap;
}

.middle{

width: 47%;
display: flex;
flex-direction: column;
}

.bio h2 {
font-size: 28px;
}

*p {
font-size: 16;
}
.work h5{
width: 20%;
padding: 2%;
}
.worktitle{
text-align: center;
display: flex;
flex-direction: row;
justify-content: space-evenly;
font-weight: 700;
}
.applework {
text-align: center;
display: flex;
flex-direction: row;
justify-content: space-evenly;

}
.microwork{
text-align: center;
display: flex;
flex-direction: row;
justify-content: space-evenly;
}

.amazonwork {
text-align: center;
display: flex;
flex-direction: row;
justify-content: space-evenly;
}

footer p{
padding: 10%;
margin: 6% 0;
text-align: center;
background: red;
}

Loading