Skip to content

Commit 9cfa757

Browse files
author
biggie96
committed
revamp site and resume
1 parent b8483fc commit 9cfa757

File tree

5 files changed

+54
-17
lines changed

5 files changed

+54
-17
lines changed

contactme.html

+8-7
Original file line numberDiff line numberDiff line change
@@ -7,22 +7,23 @@
77
<title>Biggie | Contact</title>
88

99
<!-- CSS -->
10+
<link href='https://fonts.googleapis.com/css?family=Open+Sans:400,600' rel='stylesheet' type='text/css'>
1011
<link href="css/bootstrap.min.css" rel="stylesheet">
1112
<link href="css/style.css" rel="stylesheet">
1213

1314
</head>
1415
<body>
1516
<ul class="nav nav-tabs">
16-
<li role="presentation"><a href="index.html">Home</a></li>
17-
<li role="presentation"><a href="projects.html">Projects</a></li>
17+
<li id="index" role="presentation"><a href="index.html">Home</a></li>
18+
<li id="projects" role="presentation"><a href="projects.html">Projects</a></li>
1819
<!-- <li role="presentation"><a href="aboutme.html">About Me</a></li> -->
19-
<li role="presentation" class="active"><a href="contactme.html">Contact Me</a></li>
20-
<li role="presentation"><a href="resume.pdf">Resume</a></li>
20+
<li id="contact" role="presentation" class="active"><a href="contactme.html">Contact Me</a></li>
21+
<li id="resume" role="presentation"><a href="resume.pdf">Resume</a></li>
2122
</ul>
2223

23-
<h1>Email: [email protected] </h1>
24-
<a href="https://www.facebook.com/olaoluemmanuel96" target="_blank"> <h1>Facebook</h1> </a>
25-
<a href="https://github.com/biggie96" target="_blank"> <h1>Github</h1> </a>
24+
<h1 class="c">Email: [email protected] </h1>
25+
<a class="c" href="https://www.facebook.com/olaoluemmanuel96" target="_blank"> <h1>Facebook</h1> </a>
26+
<a class="c" href="https://github.com/biggie96" target="_blank"> <h1>Github</h1> </a>
2627

2728
<!-- Scripts -->
2829
<script src="js/jquery-1.11.3.min.js"></script>

css/style.css

+35-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,37 @@
1-
/************* Home Page **********************/
1+
/************* Everything ********************/
2+
html body{
3+
background: -webkit-linear-gradient(90deg, #485563 0%, #29323c 0%); /* Chrome 10+, Saf5.1+ */
4+
font-family: 'Open Sans', sans-serif !important;
5+
}
6+
7+
#first_name, #real_name, #last_name, .nav-tabs > #index.active > a, .nav-tabs > #index > a{
8+
color: #2ECC71 !important;
9+
}
10+
11+
#desc{
12+
color: white;
13+
}
14+
15+
.nav-tabs > li.active > a{
16+
background-color: #3D4855 !important;
17+
}
18+
19+
.proj p{
20+
color: white !important;
21+
}
22+
23+
.proj a, .nav-tabs > #projects.active > a, .nav-tabs > #projects > a{
24+
color: #8E44AD !important;
25+
}
26+
27+
.c, .nav-tabs > #contact.active > a, .nav-tabs > #contact > a{
28+
color: #22A7F0 !important;
29+
}
30+
31+
.nav-tabs > #resume.active > a, .nav-tabs > #resume > a{
32+
color: #D91E18 !important;
33+
}
34+
235
#section1 {
336
height: 90% !important;
437
width:100% !important;
@@ -9,6 +42,7 @@
942
top: 200px;
1043
}
1144

45+
1246
#section1 h1 {display:table-cell; vertical-align:middle !important; font-size: 50px;}
1347

1448
#section1 p{

index.html

+6-5
Original file line numberDiff line numberDiff line change
@@ -7,22 +7,23 @@
77
<title>Biggie | Home</title>
88

99
<!-- CSS -->
10+
<link href='https://fonts.googleapis.com/css?family=Open+Sans:400,600' rel='stylesheet' type='text/css'>
1011
<link href="css/bootstrap.min.css" rel="stylesheet">
1112
<link href="css/style.css" rel="stylesheet">
1213

1314
</head>
1415
<body>
1516
<ul class="nav nav-tabs">
16-
<li role="presentation" class="active"><a href="index.html">Home</a></li>
17-
<li role="presentation"><a href="projects.html">Projects</a></li>
17+
<li role="presentation" class="active" id="index"><a href="index.html">Home</a></li>
18+
<li id="projects" role="presentation"><a href="projects.html">Projects</a></li>
1819
<!-- <li role="presentation"><a href="aboutme.html">About Me</a></li> -->
19-
<li role="presentation"><a href="contactme.html">Contact Me</a></li>
20-
<li role="presentation"><a href="resume.pdf">Resume</a></li>
20+
<li id="contact" role="presentation"><a href="contactme.html">Contact Me</a></li>
21+
<li id="resume" role="presentation"><a href="resume.pdf">Resume</a></li>
2122
</ul>
2223

2324
<div id="section1">
2425
<h1 id="first_name"> Olaolu </h1> <h1 id="real_name"> &nbsp; Biggie &nbsp; </h1> <h1 id="last_name"> Emmanuel </h1>
25-
<p> Developer and Student at Rutgers University </p>
26+
<p id="desc"> Developer and Student at Rutgers University </p>
2627
</div>
2728

2829
<!-- Scripts -->

projects.html

+5-4
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,18 @@
77
<title>Biggie | Projects</title>
88

99
<!-- CSS -->
10+
<link href='https://fonts.googleapis.com/css?family=Open+Sans:400,600' rel='stylesheet' type='text/css'>
1011
<link href="css/bootstrap.min.css" rel="stylesheet">
1112
<link href="css/style.css" rel="stylesheet">
1213

1314
</head>
1415
<body>
1516
<ul class="nav nav-tabs">
16-
<li role="presentation"><a href="index.html">Home</a></li>
17-
<li role="presentation" class="active"><a href="projects.html">Projects</a></li>
17+
<li id="index" role="presentation"><a href="index.html">Home</a></li>
18+
<li id="projects" role="presentation" class="active"><a href="projects.html">Projects</a></li>
1819
<!-- <li role="presentation"><a href="aboutme.html">About Me</a></li> -->
19-
<li role="presentation"><a href="contactme.html">Contact Me</a></li>
20-
<li role="presentation"><a href="olaolu_emmanuel_resume.pdf">Resume</a></li>
20+
<li id="contact" role="presentation"><a href="contactme.html">Contact Me</a></li>
21+
<li id="resume" role="presentation"><a href="olaolu_emmanuel_resume.pdf">Resume</a></li>
2122
</ul>
2223

2324
<br>

resume.pdf

38.1 KB
Binary file not shown.

0 commit comments

Comments
 (0)