-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
216 lines (195 loc) · 6.15 KB
/
index.html
File metadata and controls
216 lines (195 loc) · 6.15 KB
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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link href="https://fonts.googleapis.com/css?family=Montserrat" rel="stylesheet">
<title>Miguel T Rivera | Portfolio</title>
<style>
/**** Nav *****/
.main-nav a {
outline: none;
text-decoration: none;
margin-right: 1.25em;
}
.main-nav a:link {
color: #fff;
text-transform: uppercase;
}
.main-nav a:visited {
color: #ffa319;
}
/*.main-nav a:focus {
}*/
.main-nav a:hover {
background: var(--accent-color);
text-decoration: underline;
}
/*.main-nav a:active {
}*/
/***** Layouts *****/
:root {
--primary-color: #00508A;
--accent-color: #7A4900;
}
html {
box-sizing: border-box;
font-family: 'Montserrat', sans-serif;
font-size: 1em;
}
*, *:before, *:after {
box-sizing: inherit;
}
.brand-text {
font-weight: bold;
text-transform: uppercase;
}
.main-nav {
color: #fff;
position: fixed;
width: 100%;
background: var(--primary-color);
top: 0;
left: 0;
}
.main-nav li {
display: inline;
margin-right: 1em;
}
.main-header {
height: 250px;
background: #fff;
}
.profile-img {
width: 200px;
height: 200px;
border-radius: 50%;
margin-top: 5em;
margin-right: 1em;
float: right;
}
.about-content {
width: 66%;
padding-left: 3em;
padding-top: 6em;
margin-bottom: 6em;
}
.about-heading {
color: var(--primary-color);
}
.content-heading {
text-align: center;
color: var(--primary-color);
}
.ftr {
text-align: center;
}
.container {
width: 960px;
margin: 0 auto;
}
.project-image {
width: 250px;
height: 250px;
}
/**** Card ****/
.cards {
display: flex;
flex-flow: row wrap;
}
.card {
width: 300px;
border: 1px solid #ccc;
padding: 1.5em;
margin-left: 15px;
margin: 10px;
}
.card > a {
margin-right: 1.5rem;
}
.card-title-text {
margin-bottom: 0;
}
.card-subtitle-text {
margin: 0;
}
/*** Utility ***/
.clearfix {
&::after {
display: block;
content: "";
clear: both;
}
}
.float-right {
float: right;
}
</style>
</head>
<body>
<div class="container">
<header class="main-header">
<nav class="main-nav clearfix">
<ul>
<span class="brand-text">Miguel T Rivera</span>
<li class="float-right"><a href="#about-me">About Me</a></li>
<li class="float-right"><a href="#portfolio">Portfolio</a></li>
</ul>
</nav>
<div class="about-content">
<h2 id="about-me" class="about-heading">About Me</h2>
<p class="about-text">Hello, my name is Miguel T Rivera. I'm a software developer by day and cat whisperer at night. Feel free to explore my projects and <a href="mailto:mrivera108@outlook.com">contact me.</a></p>
</div>
</header>
<main class="main-content">
<h2 id="portfolio" class="content-heading">Portfolio</h2>
<div class="cards">
<div class="card">
<img class="project-image" src="https://s19.postimg.cc/cgbgz3awz/wiki.png">
<h2 class="card-title-text">Wikipedia Viewer</h2>
<h3 class="card-subtitle-text">Front-End</h3>
<p>Query Wikipedia for information or get a random article.</p>
<a href="https://mtrivera.github.io/wikipedia-viewer" target="_blank">Live Demo</a>
<a href="https://github.com/mtrivera/wikipedia-viewer" target="_blank">Source Code</a>
</div>
<div class="card">
<img class="project-image" src="https://s19.postimg.cc/hg8x6wj2r/simon.png">
<h2 class="card-title-text">Simon Game</h2>
<h3 class="card-subtitle-text">Front-End</h3>
<p>Play the popular game from the 70s in your browser.</p>
<a href="https://mtrivera.github.io/simon" target="_blank">Live Demo</a>
<a href="https://github.com/mtrivera/simon" target="_blank">Source Code</a>
</div>
<div class="card">
<img class="project-image" src="https://s19.postimg.cc/m0v3ltncj/local-weather.png">
<h2 class="card-title-text">Local Weather</h2>
<h3 class="card-subtitle-text">Front-End</h3>
<p>Get the forecast of your local area.</p>
<a href="https://mtrivera.github.io/local-weather" target="_blank">Live Demo</a>
<a href="https://github.com/mtrivera/local-weather" target="_blank">Source Code</a>
</div>
<div class="card">
<img class="project-image" src="https://s19.postimg.cc/bqsomvfk3/timestamp.png">
<h2 class="card-title-text">Timestamp Microservice</h2>
<h3 class="card-subtitle-text">Back-end</h3>
<p>Determine if a passed string is a UNIX format timestamp.</p>
<a href="https://ahead-celsius.glitch.me/" target="_blank">Live Demo</a>
<a href="https://github.com/mtrivera/request-header-parser" target="_blank">Source Code</a>
</div>
<div class="card">
<img class="project-image" src="https://s19.postimg.cc/gdyqoe2ub/header.png">
<h2 class="card-title-text">Request Header Parser</h2>
<h3 class="card-subtitle-text">Back-end</h3>
<p>Discover your ip address, language, and operating system on your device.</p>
<a href="https://endurable-sky.glitch.me/api/whoami" target="_blank">Live Demo</a>
<a href="https://github.com/mtrivera/request-header-parser" target="_blank">Source Code</a>
</div>
</div>
</main>
<footer class="ftr">
©2018 Miguel T Rivera. <a href="mailto:mrivera108@outlook.com">Contact Me!</a>
</footer>
</div>
</body>
</html>