-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
85 lines (71 loc) · 3.33 KB
/
index.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
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html>
<html>
<head>
<title></title>
<title>OG porfolio</title>
<meta charset="UTF-8">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<link href="style.css" rel="stylesheet">
<link href=" " rel="stylesheet" id="activecss">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
<script type="text/javascript">
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', '{{ site.google_analytics }}', 'auto');
ga('send', 'pageview');
</script>
<script>
var w = window.innerWidth;
var h = window.innerHeight;
var activecss = document.getElementById("activecss");
if (h > w && h != w) {
activecss.setAttribute("href", "vertical.css");
} else if (h < 500){
activecss.setAttribute("href", "horizontal.css");
}
console.log(w + " moo " + h);
window.addEventListener('resize', function(event){
var w = window.innerWidth;
var h = window.innerHeight;
if (h > w && h != w) {
activecss.setAttribute("href", "vertical.css");
} else if (h < 500) {
activecss.setAttribute("href", "horizontal.css");
}
else {
activecss.setAttribute("href", " ");
}
console.log(w + " moo " + h);
});
</script>
</head>
<body>
<div class="logo">
<div class="logo-scale">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 495.8 495.6" style="enable-background:new 0 0 495.8 495.6;" xml:space="preserve">
<rect y="-0.4" class="st0" width="495.8" height="495.8"/>
<circle class="st1" cx="247.9" cy="249" r="142"/>
<path id="underline" class="st2" d="M210.3,0C76,78.8-1,204.1,17.8,315.9c12.7,75.3,65.1,121.9,70.6,126.7
c60.5,52.3,156.6,72.7,232.5,33.7c112.6-57.9,146.2-228.8,68.9-323.9c-47.9-59-136-85.9-203.6-62.5C81,126.2,9.8,289.8,70.8,476.2"
/>
</svg> <br>
<h1 class="center">Olga Geletina</h1> <br>
</div>
</div>
<div class="intro-left-column">
<p> I’m a designer working across a wide range of mediums. This portfolio site is slated for debut fall 2018. In the meantime, here are some things I've done in <a href="http://fab.cba.mit.edu/classes/863.16/section.Harvard/people/Geletina/index.html">2016</a>, <a href="https://issuu.com/geletina/docs/portfolio-2017">2017</a> and <a href="http://fab.cba.mit.edu/classes/MAS.865/people/geletina/">2018</a>. You can also view my <a href="files/Olga-Geletina-CV.pdf">CV</a>. <br>
Outside of design, my pastimes include art, food and all things aquatic.
</p>
<br>
<div class="rule"></div>
<a href="mailto:[email protected]"><i class="fa fa-envelope"></i></a>
<a href="https://www.linkedin.com/in/geletina"><i class="fab fa-linkedin"></i></a>
<a href="https://vimeo.com/geletina"><i class="fab fa-vimeo-square"></i></a>
<a href="https://github.com/olgageletina"><i class="fab fa-github"></i></a>
</div>
</body>
</html>