Skip to content

Commit bcb870d

Browse files
committed
don't remember
1 parent 0bec36d commit bcb870d

File tree

9 files changed

+80
-64
lines changed

9 files changed

+80
-64
lines changed

assets/TODO LIST.txt

Lines changed: 0 additions & 20 deletions
This file was deleted.

assets/icon.png

4 Bytes
Loading

assets/icon2.png

-405 Bytes
Binary file not shown.

css/exper.css

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
.menu {
2+
display: flex;
3+
flex-flow: row wrap;
4+
}
5+
6+
.menu div {
7+
display: flex;
8+
justify-content: flex-start;;
9+
flex-direction: column;;
10+
flex: 1;
11+
padding: 20px;
12+
align-items: center;
13+
}
14+
15+
.menu p {
16+
font-size: x-large;
17+
}
18+
.menu img {
19+
max-width: 50%;
20+
}
21+
.menu img {
22+
-webkit-transition: -webkit-transform 2s ease-in-out;
23+
transition: transform 2s ease-in-out;
24+
}
25+
.menu img:hover {
26+
-webkit-transform: rotate(180deg);
27+
transform: rotate(180deg);
28+
}
29+
30+
@media screen and (orientation:portrait) {
31+
/* Portrait styles */
32+
.menu div {
33+
width: 50vw;
34+
}
35+
}
36+
/* Landscape */
37+
@media screen and (orientation:landscape) {
38+
/* Landscape styles */
39+
.menu div {
40+
width: 33.333vw;
41+
}
42+
}

css/hero.css

Lines changed: 0 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -39,23 +39,3 @@
3939
transform: rotate(180deg);
4040
}
4141
}
42-
43-
.hero button {
44-
outline: none;
45-
padding: 0.5em .75em;
46-
font-size: large;
47-
border-radius: 25%;
48-
border: solid FloralWhite;
49-
background: transparent;
50-
color: FloralWhite;
51-
}
52-
53-
.hero button:hover {
54-
background-color: FloralWhite;
55-
color: #1A1110;
56-
}
57-
58-
.hero button:active {
59-
background-color: FloralWhite;
60-
color: #1A1110;
61-
}

css/menu.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
.menu-bar {
66
position: fixed;
77
width: 100%;
8-
background: rgba(139,0,0, 0.4);
8+
background: rgba(250, 128, 114, 0.4);
99
height: 2em;
1010
font-weight: 500;
1111
z-index: 100;

css/project-menu.css

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,7 @@
22
display: flex;
33
flex-direction: column;
44
}
5-
6-
.flex-grid-thirds {
7-
display: flex;
8-
justify-content: space-between;
9-
flex-direction: row;
10-
flex: 1;
11-
padding: 20px;
12-
align-items: center;
13-
}
14-
.flex-grid-halves {
5+
.flex-grid-halves, .flex-grid-thirds {
156
display: flex;
167
justify-content: space-between;
178
flex-direction: row;

index.html

Lines changed: 36 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,14 @@
2020
<link rel="stylesheet" href="css/hero.css">
2121
<link rel="stylesheet" href="css/about.css">
2222
<link rel="stylesheet" href="css/project-menu.css">
23+
<link rel="stylesheet" href="css/exper.css">
2324
<!-- Scripts
2425
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
2526
<script src="js/jquery-3.1.0.min.js"></script>
2627
<script src="js/main.js"></script>
2728
<!-- Favicon
2829
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
29-
<link rel="icon" href="assets/icon2.png">
30+
<link rel="icon" href="assets/icon.png">
3031

3132
</head>
3233

@@ -46,7 +47,6 @@
4647
<div>
4748
<img class="rotate" src="assets/flower.svg">
4849
<h1> meredith hoo </h1>
49-
<button class="button goto" ref="#about-page">enter</button>
5050
</div>
5151
</section>
5252

@@ -68,13 +68,10 @@ <h1> meredith hoo </h1>
6868
<div class="content">
6969
<h1 class="name">Meredith Hoo</h1>
7070
<p>
71-
I'm a software engineer based in New York, looking to solve complex problems wherever the code takes me.
72-
Over the last six years, I've become involved in the creative applications of machine learning,
73-
the software development of educational and socailly responsible expereinces. From my work in the classroom
74-
and in industry.
75-
</p>
76-
<p>
77-
Please know that this site is experiemental, and in progress
71+
I'm a software engineer based in New York.
72+
I'm actively looking to gain experience in education technology, creative applications of machine learning and big data.
73+
Over the last six years, I've become involved in variety of collaborations with artist such as Audie Maginley, and Isaac Wellish.
74+
Thank you for exploring my site. This is my home for experimentation, and recognition.
7875
</p>
7976
</div>
8077
</div>
@@ -117,7 +114,7 @@ <h1 class="name">Meredith Hoo</h1>
117114
<!-- Projects Portrait Mode ––––––––––––––––––––––––––––––––– -->
118115
<section class="flex-parent portrait" id="projects">
119116
<div class="flex-grid-halves">
120-
<div >
117+
<div>
121118
<img src="assets/flower.svg">
122119
<p >apps</p>
123120
</div>
@@ -141,15 +138,41 @@ <h1 class="name">Meredith Hoo</h1>
141138
<img src="assets/flower.svg">
142139
<p >podcast</p>
143140
</div>
144-
<div >
141+
<div>
145142
<img src="assets/flower.svg">
146-
<p >blog</p>
143+
<p>blog</p>
147144
</div>
148145
</div>
149146
</section>
150147
</div>
151148
<!-- Projects Portrait Mode ––––––––––––––––––––––––––––––––– -->
152-
<section id="gratitude"></section>
149+
<!-- Main Menu ––––––––––––––––––––––––––––––––– -->
150+
<section class="menu">
151+
<div class="1-2 1-3">
152+
<img src="assets/flower.svg"/>
153+
<p >about</p>
154+
</div>
155+
<div class="1-2 1-3">
156+
<img src="assets/flower.svg"/>
157+
<p >resume</p>
158+
</div>
159+
<div class="1-2 1-3">
160+
<img src="assets/flower.svg"/>
161+
<p >portfolio</p>
162+
</div>
163+
<div class="1-2 1-3">
164+
<img src="assets/flower.svg"/>
165+
<p >passion</p>
166+
</div>
167+
<div class="1-2 1-3">
168+
<img src="assets/flower.svg"/>
169+
<p>gratitude</p>
170+
</div>
171+
<div class="1-2 1-3">
172+
<img src="assets/flower.svg"/>
173+
<p>guestbook</p>
174+
</div>
175+
</section>
153176

154177
<!-- End Document ––––––––––––––––––––––––––––––– -->
155178
</body>

0 commit comments

Comments
 (0)