mirror of
https://github.com/danbee/cv
synced 2025-03-04 08:59:12 +00:00
Compare commits
No commits in common. "08f4fccd0bf12691b13fa1a65d235d569915b136" and "2ab2b7bd0e3fe8305484705a592efe7a49fe3fcd" have entirely different histories.
08f4fccd0b
...
2ab2b7bd0e
@ -76,6 +76,10 @@ URL: http://stuffandnonsense.co.uk/projects/320andup
|
|||||||
<li>A mis-typed address</li>
|
<li>A mis-typed address</li>
|
||||||
<li>An out-of-date link</li>
|
<li>An out-of-date link</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
|
<script>var GOOG_FIXURL_LANG = (navigator.language || '').slice(0,2), GOOG_FIXURL_SITE = location.host;</script>
|
||||||
|
<script src="http://linkhelp.clients.google.com/tbproxy/lh/wm/fixurl.js"></script>
|
||||||
|
</div>
|
||||||
|
|
||||||
<div role="complimentary">
|
<div role="complimentary">
|
||||||
</div>
|
</div>
|
||||||
@ -107,4 +111,4 @@ s.parentNode.insertBefore(g,s)}(document,'script'));
|
|||||||
</script>
|
</script>
|
||||||
<noscript>Your browser does not support JavaScript!</noscript>
|
<noscript>Your browser does not support JavaScript!</noscript>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
@ -544,61 +544,6 @@ div, input, textarea {
|
|||||||
-ms-filter: none !important;
|
-ms-filter: none !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
body {
|
|
||||||
font-size: 58%;
|
|
||||||
}
|
|
||||||
|
|
||||||
h1 {
|
|
||||||
margin-top: 0.5em;
|
|
||||||
text-align: left;
|
|
||||||
margin-bottom: 0;
|
|
||||||
font-size: 3.3em;
|
|
||||||
|
|
||||||
&:before {
|
|
||||||
float: right;
|
|
||||||
font-size: 1.5em;
|
|
||||||
width: 78px;
|
|
||||||
background-size: 78px;
|
|
||||||
background-position: top center;
|
|
||||||
position: relative;
|
|
||||||
top: 0em;
|
|
||||||
text-align: right;
|
|
||||||
margin-top: 0;
|
|
||||||
margin-bottom: -0.5em;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
h2 {
|
|
||||||
text-align: left;
|
|
||||||
}
|
|
||||||
|
|
||||||
#stripe {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
#profile, #experience {
|
|
||||||
float: left;
|
|
||||||
width: 68%;
|
|
||||||
}
|
|
||||||
|
|
||||||
#skills {
|
|
||||||
float: right;
|
|
||||||
width: 25%;
|
|
||||||
margin-left: 7%;
|
|
||||||
}
|
|
||||||
|
|
||||||
#portfolio {
|
|
||||||
break-before: left;
|
|
||||||
float: left;
|
|
||||||
width: 68%;
|
|
||||||
}
|
|
||||||
|
|
||||||
#interests, #contact {
|
|
||||||
float: right;
|
|
||||||
width: 25%;
|
|
||||||
margin-left: 7%;
|
|
||||||
}
|
|
||||||
|
|
||||||
a {
|
a {
|
||||||
color: #444 !important;
|
color: #444 !important;
|
||||||
text-decoration: underline;
|
text-decoration: underline;
|
||||||
@ -607,6 +552,10 @@ div, input, textarea {
|
|||||||
color: #444 !important;
|
color: #444 !important;
|
||||||
text-decoration: underline;
|
text-decoration: underline;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
&[href]:after {
|
||||||
|
content: " (" attr(href) ")";
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
abbr[title]:after {
|
abbr[title]:after {
|
||||||
|
|||||||
@ -1,17 +1,27 @@
|
|||||||
<main role="main" class="main-content container">
|
<div class="content clearfix">
|
||||||
<section id="profile">
|
<div role="main">
|
||||||
<%= partial "sections/_profile.markdown" %>
|
<div class="container clearfix">
|
||||||
</section>
|
<section id="profile">
|
||||||
<section id="skills">
|
<%= partial "sections/_profile.markdown" %>
|
||||||
<%= partial "sections/_skills.markdown" %>
|
</section>
|
||||||
</section>
|
<section id="skills">
|
||||||
<section id="experience">
|
<%= partial "sections/_skills.markdown" %>
|
||||||
<%= partial "sections/_experience.markdown" %>
|
</section>
|
||||||
</section>
|
<section id="experience">
|
||||||
<section id="interests">
|
<%= partial "sections/_experience.markdown" %>
|
||||||
<%= partial "sections/_interests.markdown" %>
|
</section>
|
||||||
</section>
|
</div>
|
||||||
<section id="contact" class="vcard">
|
<div class="container clearfix">
|
||||||
<%= partial "sections/_contact.html.erb" %>
|
<section id="portfolio">
|
||||||
</section>
|
<%= partial "sections/_portfolio.markdown" %>
|
||||||
</main>
|
</section>
|
||||||
|
<section id="interests">
|
||||||
|
<%= partial "sections/_interests.markdown" %>
|
||||||
|
</section>
|
||||||
|
<section class="vcard" id="contact">
|
||||||
|
<%= partial "sections/_contact.html.erb" %>
|
||||||
|
</section>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div role="complementary"></div>
|
||||||
|
</div>
|
||||||
|
|||||||
@ -29,6 +29,9 @@ clients. Here are some highlights from the projects I worked on:
|
|||||||
|
|
||||||
**Web Designer & Developer**: Aug 2010---Apr 2015
|
**Web Designer & Developer**: Aug 2010---Apr 2015
|
||||||
|
|
||||||
|
* Launched Pixelhum in 2010, providing freelance and contract-based services to
|
||||||
|
clients.
|
||||||
|
|
||||||
* Designed and built an E-commerce site for
|
* Designed and built an E-commerce site for
|
||||||
[Soundunlimited](https://web.archive.org/web/20130310015425/http://www.soundunlimited.co.uk/),
|
[Soundunlimited](https://web.archive.org/web/20130310015425/http://www.soundunlimited.co.uk/),
|
||||||
a Plymouth-based music shop.
|
a Plymouth-based music shop.
|
||||||
@ -41,6 +44,8 @@ clients. Here are some highlights from the projects I worked on:
|
|||||||
|
|
||||||
* Migrated version control from SVN to git.
|
* Migrated version control from SVN to git.
|
||||||
|
|
||||||
|
* Brought the Rspec test suite up to date.
|
||||||
|
|
||||||
#### [Abiquo](http://web.archive.org/web/20111005142120/http://www.abiquo.com/)
|
#### [Abiquo](http://web.archive.org/web/20111005142120/http://www.abiquo.com/)
|
||||||
|
|
||||||
**Web Developer**: Jun 2010---Oct 2011
|
**Web Developer**: Jun 2010---Oct 2011
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user