updated CV and created interim print version from it
This commit is contained in:
parent
5e307d1fd8
commit
b0f02363bb
295
css/styles.css
295
css/styles.css
|
@ -1,169 +1,194 @@
|
||||||
@import url("https://fontlibrary.org/face/tex-gyre-adventor");
|
@import url("https://fontlibrary.org/face/tex-gyre-adventor");
|
||||||
@import url("https://fontlibrary.org/face/thsarabun-new");
|
@import url("https://fontlibrary.org/face/thsarabun-new");
|
||||||
body {
|
|
||||||
font: 1.6em "THSarabunNewRegular", Helvetica, sans-serif;
|
|
||||||
color: #333;
|
|
||||||
line-height: 0.8em;
|
|
||||||
}
|
|
||||||
|
|
||||||
a {
|
@media only screen {
|
||||||
color: #FF3300;
|
body {
|
||||||
text-decoration: none;
|
font: 1.6em "THSarabunNewRegular", Helvetica, sans-serif;
|
||||||
width: 100%;
|
color: #333;
|
||||||
-moz-transition: color 0.3s ease;
|
line-height: 0.8em;
|
||||||
-o-transition: color 0.3s ease;
|
}
|
||||||
-webkit-transition: color 0.3s ease;
|
|
||||||
transition: color 0.3s ease;
|
|
||||||
}
|
|
||||||
|
|
||||||
a:hover {
|
a {
|
||||||
color: #99FFFF;
|
color: #FF3300;
|
||||||
-moz-transition: color 1s ease;
|
text-decoration: none;
|
||||||
-o-transition: color 1s ease;
|
width: 100%;
|
||||||
-webkit-transition: color 1s ease;
|
-moz-transition: color 0.3s ease;
|
||||||
transition: color 1s ease;
|
-o-transition: color 0.3s ease;
|
||||||
}
|
-webkit-transition: color 0.3s ease;
|
||||||
|
transition: color 0.3s ease;
|
||||||
|
}
|
||||||
|
|
||||||
h1, h2, h3, h4, h5 {
|
a:hover {
|
||||||
font-family: "TeXGyreAdventorRegular", sans-serif;
|
color: #99FFFF;
|
||||||
}
|
-moz-transition: color 1s ease;
|
||||||
|
-o-transition: color 1s ease;
|
||||||
|
-webkit-transition: color 1s ease;
|
||||||
|
transition: color 1s ease;
|
||||||
|
}
|
||||||
|
|
||||||
|
h1, h2, h3, h4, h5 {
|
||||||
|
font-family: "TeXGyreAdventorRegular", sans-serif;
|
||||||
|
}
|
||||||
|
|
||||||
|
footer {
|
||||||
|
grid-row: 9 / span 1;
|
||||||
|
grid-column: 1 / 6;
|
||||||
|
margin: 40px 0px 10px;
|
||||||
|
}
|
||||||
|
|
||||||
footer {
|
|
||||||
grid-row: 9 / span 1;
|
|
||||||
grid-column: 1 / 6;
|
|
||||||
margin: 40px 0px 10px; }
|
|
||||||
footer p {
|
footer p {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
font-size: 0.5em;
|
font-size: 0.5em;
|
||||||
color: #CECECE; }
|
color: #CECECE;
|
||||||
|
}
|
||||||
|
|
||||||
iframe {
|
iframe {
|
||||||
max-width: 100%;
|
max-width: 100%;
|
||||||
max-height: auto;
|
max-height: auto;
|
||||||
border: thin #99FFFF dashed;
|
border: thin #99FFFF dashed;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
nav {
|
||||||
|
width: 100%;
|
||||||
|
margin: 20px 0;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
nav {
|
|
||||||
width: 100%;
|
|
||||||
margin: 20px 0;
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
nav ul {
|
nav ul {
|
||||||
list-style: none;
|
list-style: none;
|
||||||
}
|
}
|
||||||
nav ul li {
|
|
||||||
display: inline-block;
|
|
||||||
padding: 0 15px;
|
|
||||||
}
|
|
||||||
|
|
||||||
#wrapper {
|
nav ul li {
|
||||||
max-width: 900px;
|
display: inline-block;
|
||||||
margin: 0 auto;
|
padding: 0 15px;
|
||||||
display: grid;
|
}
|
||||||
grid-gap: 10px;
|
|
||||||
grid-template-columns: repeat(6) 10%;
|
#wrapper {
|
||||||
grid-template-rows: repeat(9);
|
max-width: 900px;
|
||||||
}
|
margin: 0 auto;
|
||||||
#wrapper div img, #wrapper div video, #wrapper div object, #wrapper section img, #wrapper section video, #wrapper section object, #wrapper header img, #wrapper header video, #wrapper header object, #wrapper footer img, #wrapper footer video, #wrapper footer object {
|
display: grid;
|
||||||
|
grid-gap: 10px;
|
||||||
|
grid-template-columns: repeat(6) 10%;
|
||||||
|
grid-template-rows: repeat(9);
|
||||||
|
}
|
||||||
|
|
||||||
|
#wrapper div img,
|
||||||
|
#wrapper div video,
|
||||||
|
#wrapper div object,
|
||||||
|
#wrapper section img,
|
||||||
|
#wrapper section video,
|
||||||
|
#wrapper section object,
|
||||||
|
#wrapper header img,
|
||||||
|
#wrapper header video,
|
||||||
|
#wrapper header object,
|
||||||
|
#wrapper footer img,
|
||||||
|
#wrapper footer video,
|
||||||
|
#wrapper footer object {
|
||||||
max-width: 100%;
|
max-width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
header {
|
header {
|
||||||
grid-column: 3 / span 4;
|
grid-column: 3 / span 4;
|
||||||
grid-row: 1 / span 4;
|
grid-row: 1 / span 4;
|
||||||
align-self: stretch;
|
align-self: stretch;
|
||||||
text-align: right;
|
text-align: right;
|
||||||
}
|
}
|
||||||
|
|
||||||
.one {
|
.one {
|
||||||
grid-column: 1 / span 2;
|
grid-column: 1 / span 2;
|
||||||
grid-row: 4 / span 2;
|
grid-row: 4 / span 2;
|
||||||
align-self: top;
|
align-self: top;
|
||||||
z-index: 3;
|
z-index: 3;
|
||||||
}
|
}
|
||||||
|
|
||||||
.text {
|
.text {
|
||||||
grid-column: 1 / span 4;
|
grid-column: 1 / span 4;
|
||||||
grid-row: 2 / span 5;
|
grid-row: 2 / span 5;
|
||||||
align-self: top;
|
align-self: top;
|
||||||
font-size: 0.8em;
|
font-size: 0.8em;
|
||||||
text-align: justify;
|
text-align: justify;
|
||||||
padding: 20px 40px;
|
padding: 20px 40px;
|
||||||
border: thin #99FFFF dashed;
|
border: thin #99FFFF dashed;
|
||||||
}
|
}
|
||||||
|
|
||||||
.work {
|
.work {
|
||||||
grid-column: 2 / 6;
|
grid-column: 2 / 6;
|
||||||
grid-row: 5 / auto;
|
grid-row: 5 / auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
.work img, .work object, .work iframe {
|
.work img, .work object, .work iframe {
|
||||||
display: block;
|
display: block;
|
||||||
margin: 100px auto;
|
margin: 100px auto;
|
||||||
border: thin #99FFFF dashed;
|
border: thin #99FFFF dashed;
|
||||||
}
|
}
|
||||||
|
|
||||||
.work img, .work object:first-of-type {
|
.work img, .work object:first-of-type {
|
||||||
margin: 0px auto 100px;
|
margin: 0px auto 100px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.inPage {
|
.inPage {
|
||||||
grid-row: 8 / auto;
|
grid-row: 8 / auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
.cv section:first-of-type {
|
.cv section:first-of-type {
|
||||||
grid-column: 1 / 6;
|
grid-column: 1 / 6;
|
||||||
grid-row: 1 / span 1;
|
grid-row: 1 / span 1;
|
||||||
padding: 0 20px;
|
padding: 0 20px;
|
||||||
border: thin #99FFFF dashed;
|
border: thin #99FFFF dashed;
|
||||||
}
|
}
|
||||||
|
|
||||||
.cv section:first-of-type #me {
|
.cv section:first-of-type #me {
|
||||||
position: relative;
|
position: relative;
|
||||||
top: 5px;
|
top: 5px;
|
||||||
width: 25%;
|
width: 25%;
|
||||||
text-align: right;
|
text-align: right;
|
||||||
font-style: italic;
|
font-style: italic;
|
||||||
}
|
}
|
||||||
|
|
||||||
.cv #edu {
|
.cv section:first-of-type #me img {
|
||||||
grid-column: 4 / 6;
|
display: none;
|
||||||
grid-row: 2 / 3;
|
visibility: hidden;
|
||||||
align-self: center;
|
}
|
||||||
}
|
|
||||||
|
|
||||||
.cv #music {
|
.cv #edu {
|
||||||
grid-column: 1 / span 2;
|
grid-column: 4 / 6;
|
||||||
grid-row: 3 / 5;
|
grid-row: 2 / 3;
|
||||||
align-self: start;
|
align-self: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
.cv #things {
|
.cv #music {
|
||||||
position: relative;
|
grid-column: 1 / span 2;
|
||||||
top:-150px;
|
grid-row: 3 / 5;
|
||||||
left:20px;
|
align-self: start;
|
||||||
grid-column: 3 / 4;
|
}
|
||||||
grid-row: 2 / 5;
|
|
||||||
align-self: center;
|
|
||||||
padding: 0 50px 0 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.cv #prof {
|
.cv #things {
|
||||||
grid-column: 4 / 6;
|
position: relative;
|
||||||
grid-row: 3 / 3;
|
top:-150px;
|
||||||
align-items: start;
|
left:20px;
|
||||||
}
|
grid-column: 3 / 4;
|
||||||
|
grid-row: 2 / 5;
|
||||||
|
align-self: center;
|
||||||
|
padding: 0 50px 0 0;
|
||||||
|
}
|
||||||
|
|
||||||
.cv ul {
|
.cv #prof {
|
||||||
list-style-type: none;
|
grid-column: 4 / 6;
|
||||||
margin: none;
|
grid-row: 3 / 3;
|
||||||
padding: 0 0 0 7px;
|
align-items: start;
|
||||||
}
|
}
|
||||||
|
|
||||||
.cv ul li {
|
.cv ul {
|
||||||
padding: 0 0 13px 0;
|
list-style-type: none;
|
||||||
}
|
margin: none;
|
||||||
|
padding: 0 0 0 7px;
|
||||||
|
}
|
||||||
|
|
||||||
.cv ul em {
|
.cv ul li {
|
||||||
padding-bottom: 7px;
|
padding: 0 0 13px 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cv ul em {
|
||||||
|
padding-bottom: 7px;
|
||||||
|
}
|
||||||
}
|
}
|
43
cv.html
43
cv.html
|
@ -5,6 +5,7 @@
|
||||||
|
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
||||||
|
|
||||||
|
<link rel="stylesheet" type="text/css" href="css/print.css" media="print">
|
||||||
<link rel="stylesheet" type="text/css" href="css/styles.css">
|
<link rel="stylesheet" type="text/css" href="css/styles.css">
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
@ -27,6 +28,8 @@
|
||||||
<em>max.e.franklin@gmail.com</em>
|
<em>max.e.franklin@gmail.com</em>
|
||||||
|
|
||||||
<p>Currently based in the Paris, France teaching and performing improvised software publications.</p>
|
<p>Currently based in the Paris, France teaching and performing improvised software publications.</p>
|
||||||
|
|
||||||
|
<img id="myface" src="assets/cv/Max small.png">
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
@ -42,6 +45,26 @@
|
||||||
Bachelor Jazz Performance (Saxophone) & Creative Sound Engineering</p>
|
Bachelor Jazz Performance (Saxophone) & Creative Sound Engineering</p>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
<section id="prof">
|
||||||
|
<h3>Professional Experience</h3>
|
||||||
|
|
||||||
|
<p><em>Paris College of Art</em><br>
|
||||||
|
2014 - current // Paris, FR<br>
|
||||||
|
Faculty Member in Foundation, Communication Design and Master's in Transdisciplinary New Media Departments</p>
|
||||||
|
|
||||||
|
<p><em>Willem de Kooning Academie</em><br>
|
||||||
|
2018 // Rotterdam, NL<br>
|
||||||
|
Publication Station teaching and technical assistant</p>
|
||||||
|
|
||||||
|
<p><em>Freelance Graphic Designer</em><br>
|
||||||
|
2009 – 2014 // Sydney, AU<br>
|
||||||
|
Web-design, poster and album design</p>
|
||||||
|
|
||||||
|
<p><em>Linear Recording</em><br>
|
||||||
|
2009 – 2010 // Sydney, AU<br>
|
||||||
|
Assistant Sound Engineer</p>
|
||||||
|
</section>
|
||||||
|
|
||||||
<section id="things">
|
<section id="things">
|
||||||
<h3>Things</h3>
|
<h3>Things</h3>
|
||||||
|
|
||||||
|
@ -125,26 +148,6 @@
|
||||||
Leftfield jazz trio</p>
|
Leftfield jazz trio</p>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<section id="prof">
|
|
||||||
<h3>Professional Experience</h3>
|
|
||||||
|
|
||||||
<p><em>Paris College of Art</em><br>
|
|
||||||
2014 - current // Paris, FR<br>
|
|
||||||
Faculty Member in Foundation, Communication Design and Master's in Transdisciplinary New Media Departments</p>
|
|
||||||
|
|
||||||
<p><em>Willem de Kooning Academie</em><br>
|
|
||||||
2018 // Rotterdam, NL<br>
|
|
||||||
Publication Station teaching and technical assistant</p>
|
|
||||||
|
|
||||||
<p><em>Freelance Graphic Designer</em><br>
|
|
||||||
2009 – 2014 // Sydney, AU<br>
|
|
||||||
Web-design, poster and album design</p>
|
|
||||||
|
|
||||||
<p><em>Linear Recording</em><br>
|
|
||||||
2009 – 2010 // Sydney, AU<br>
|
|
||||||
Assistant Sound Engineer</p>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<footer>
|
<footer>
|
||||||
<p>website and server built by hand with off the shelf parts</p>
|
<p>website and server built by hand with off the shelf parts</p>
|
||||||
</footer>
|
</footer>
|
||||||
|
|
|
@ -21,10 +21,10 @@
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<section class="work">
|
<section class="work">
|
||||||
|
<a href="soloImprovisedSoftware.html">INTERIM LINK</a>
|
||||||
<a href="xpubGenerator.html"><img src="assets/imgs/xpubGenerator.jpg"></a>
|
<a href="xpubGenerator.html"><img src="assets/imgs/xpubGenerator.jpg"></a>
|
||||||
<a href="tgc3-euclid.html"><img src="assets/imgs/euclidLogo.png"></a>
|
<a href="tgc3-euclid.html"><img src="assets/imgs/euclidLogo.png"></a>
|
||||||
<a href="tgc3-euclid.html"><img src="assets/imgs/euclidianGenerator_mk2.png"></a>
|
<a href="tgc3-euclid.html"><img src="assets/imgs/euclidianGenerator_mk2.png"></a>
|
||||||
<a href="polydog.html"><img src="assets/imgs/polydog.png"></a>
|
|
||||||
<a href="repoem.html"><img src="assets/imgs/rePoem3.png"></a>
|
<a href="repoem.html"><img src="assets/imgs/rePoem3.png"></a>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue