mirror of
https://github.com/danbee/cv
synced 2025-03-04 08:59:12 +00:00
Compare commits
3 Commits
2ab2b7bd0e
...
08f4fccd0b
| Author | SHA1 | Date | |
|---|---|---|---|
| 08f4fccd0b | |||
| 2ba3b2f333 | |||
| 5f05770dae |
@ -76,10 +76,6 @@ 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>
|
||||||
@ -111,4 +107,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,6 +544,61 @@ 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;
|
||||||
@ -552,10 +607,6 @@ 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,27 +1,17 @@
|
|||||||
<div class="content clearfix">
|
<main role="main" class="main-content container">
|
||||||
<div role="main">
|
<section id="profile">
|
||||||
<div class="container clearfix">
|
<%= partial "sections/_profile.markdown" %>
|
||||||
<section id="profile">
|
</section>
|
||||||
<%= partial "sections/_profile.markdown" %>
|
<section id="skills">
|
||||||
</section>
|
<%= partial "sections/_skills.markdown" %>
|
||||||
<section id="skills">
|
</section>
|
||||||
<%= partial "sections/_skills.markdown" %>
|
<section id="experience">
|
||||||
</section>
|
<%= partial "sections/_experience.markdown" %>
|
||||||
<section id="experience">
|
</section>
|
||||||
<%= partial "sections/_experience.markdown" %>
|
<section id="interests">
|
||||||
</section>
|
<%= partial "sections/_interests.markdown" %>
|
||||||
</div>
|
</section>
|
||||||
<div class="container clearfix">
|
<section id="contact" class="vcard">
|
||||||
<section id="portfolio">
|
<%= partial "sections/_contact.html.erb" %>
|
||||||
<%= partial "sections/_portfolio.markdown" %>
|
</section>
|
||||||
</section>
|
</main>
|
||||||
<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,9 +29,6 @@ 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.
|
||||||
@ -44,8 +41,6 @@ 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