-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathportfolio.html
126 lines (115 loc) · 4.19 KB
/
portfolio.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<!DOCTYPE HTML>
<html>
<head>
<title>About Me</title>
<style type="text/css">
body {
background: rgb(125, 198, 205);
color: rgb(45, 45, 45);
padding: 10px;
font-family: arial;
}
header {
font-size: 1.5em;
font-weight: bold;
}
h1 {
text-align: center;
color: rgb(161, 7, 7);
margin: 10px;
}
#all-contents {
max-width: 800px;
margin: auto;
}
/* navigation menu */
nav {
background-image: linear-gradient( rgb(239, 80, 41), rgb(161, 7, 7));
box-shadow: -6px -4px 2px -2px rgba(0,0,0,0.4);
border-radius: 20px/60px;
margin: 0 auto;
margin-bottom: 20px;
display: flex;
padding: 10px;
}
nav header {
display: flex;
align-items: center;
color: rgb(255, 255, 255);
flex: 1;
}
nav ul {
list-style-image: none;
}
nav button {
display: inline;
padding: 7px 40px;
margin: 7px 10px;
border-radius: 20px/60px;
box-shadow: -6px -4px 2px -2px rgba(0,0,0,0.4);
}
nav a {
text-decoration: none;
color: rgb(7, 7, 7);
}
/* main container area beneath menu */
main {
background: rgb(245, 238, 219);
display: flex;
border-radius: 20px/60px;
}
.content {
flex: 1;
padding: 15px;
}
/* portfolio styles */
#portfolio {
list-style-type: none;
padding-left: 0;
}
#portfolio li {
background: #fff;
padding: 10px;
border-radius: 10px;
margin-bottom: 10px;
}
#portfolio li:hover {
background: #eee;
}
#portfolio a {
text-decoration: none;
color: #454545;
}
</style>
</head>
<body>
<div id="all-contents">
<nav>
<header> About Me </header>
<ul>
<button onclick="window.location.href='index.html';">
Home
</button>
<button onclick="window.location.href='portfolio.html';">
Portfolio
</button>
</ul>
</nav>
<main>
<div class="content">
<h1>Portfolio</h1>
<ul id="portfolio">
<li><a href="projects/platformer/">Platformer : A cannon - dodging, collectible - grabbing adventure game for Halleb0t</a></li>
<li><a href="projects/bouncing-box/">Bouncing Box : A project that gives you a taste of game development on the web </a></li>
<li><a href="projects/circularity/">Circularity : A motion poem using random number generation and velocity applied to circle shapes...</a></li>
<li><a href= "/jsbin.rosucuparo.3.html">Report card calculator : A calculator for your report card</li>
<li><a href="Window.html">OS.js Expiriment</a></li>
</ul>
</div>
</main>
</main>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script id="portfolioScript">$(document).ready(function() {$.getJSON('projects/projects.json').then(function(data) { data.projects.forEach(function(project){ $('#portfolio').append('<li><a href="projects/' + project.name + '/">' + project.title + ' : ' + project.description + '</a></li>'); }); }); });</script>
</body>
</html>