|
@@ -1,45 +1,34 @@
|
|
|
<template>
|
|
|
<div class="container">
|
|
|
- <!--
|
|
|
- <div>
|
|
|
- <a href="/#/"><h1>The Perspective of The Other, 2022</h1></a>
|
|
|
- <a href="/#/"><h1>The Last Mile, 2021</h1></a>
|
|
|
- <a href="/#/"><h1>La jetée 2021,2021</h1></a>
|
|
|
- <a href="/#/"><h1>Cardboard Cut-outs, 2020</h1></a>
|
|
|
- <a href="/#/"><h1>The right to clip, 2020</h1></a>
|
|
|
- <a href="/#/"><h1>film.exe, 2020</h1></a>
|
|
|
- <a href="/#/"><h1>Overexposure, 2019</h1></a>
|
|
|
- </div>
|
|
|
- -->
|
|
|
<div id="main-left">
|
|
|
<div id="main-name">
|
|
|
- <p>Chen<br/>Luyu</p>
|
|
|
+ <img src="../assets/img-name.png"/>
|
|
|
</div>
|
|
|
</div>
|
|
|
<div id="main-right">
|
|
|
<div class="box" id="box-1">
|
|
|
- <a href="/#/">Project 1</a>
|
|
|
+ <a href="#/part1">Artificial Rainfall(working name)</a>
|
|
|
</div>
|
|
|
<div class="box" id="box-2">
|
|
|
- <a href="/#/">Project 2</a>
|
|
|
+ <a href="#/part2">The Perspective of The Other, 2022</a>
|
|
|
</div>
|
|
|
<div class="box" id="box-3">
|
|
|
- <a href="/#/">Project 3</a>
|
|
|
+ <a href="#/part3">The Last Mile, 2021</a>
|
|
|
</div>
|
|
|
<div class="box" id="box-4">
|
|
|
- <a href="/#/">Project 4</a>
|
|
|
+ <a href="#/part4">La jetée 2021,2021</a>
|
|
|
</div>
|
|
|
<div class="box" id="box-5">
|
|
|
- <a href="/#/">Project 5</a>
|
|
|
+ <a href="#/part5">Cardboard Cut-outs, 2020</a>
|
|
|
</div>
|
|
|
<div class="box" id="box-6">
|
|
|
- <a href="/#/">Project 6</a>
|
|
|
+ <a href="#/part6">The right to clip, 2020</a>
|
|
|
</div>
|
|
|
<div class="box" id="box-7">
|
|
|
- <a href="/#/">Project 7</a>
|
|
|
+ <a href="#/part7">film.exe, 2020</a>
|
|
|
</div>
|
|
|
<div class="box" id="box-8">
|
|
|
- <a href="/#/">Project 8</a>
|
|
|
+ <a href="#/part8">Overexposure, 2019</a>
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -52,26 +41,15 @@ export default {
|
|
|
</script>
|
|
|
|
|
|
<style scoped>
|
|
|
-/**
|
|
|
-h1 {
|
|
|
- font-size: 28px;
|
|
|
-}
|
|
|
-
|
|
|
-a {
|
|
|
- color: black;
|
|
|
- text-decoration: none;
|
|
|
-}
|
|
|
- */
|
|
|
-
|
|
|
.container {
|
|
|
height: 100%;
|
|
|
+ padding: 0 32px;
|
|
|
}
|
|
|
|
|
|
#main-left {
|
|
|
}
|
|
|
|
|
|
#main-right {
|
|
|
- /*flex: 1 0 auto;*/
|
|
|
display: flex;
|
|
|
flex-direction: column;
|
|
|
float: right;
|
|
@@ -81,9 +59,8 @@ a {
|
|
|
|
|
|
#main-name {
|
|
|
position: absolute;
|
|
|
- bottom: 20px;
|
|
|
+ bottom: 64px;
|
|
|
left: 32px;
|
|
|
- font-size: 96px;
|
|
|
}
|
|
|
|
|
|
#main-right div {
|
|
@@ -97,6 +74,7 @@ a {
|
|
|
flex-direction: column;
|
|
|
justify-content: center;
|
|
|
padding-left: 24px;
|
|
|
+ margin-bottom: 8px;
|
|
|
}
|
|
|
|
|
|
.box a {
|
|
@@ -107,40 +85,48 @@ a {
|
|
|
transition: all 0.6s;
|
|
|
}
|
|
|
|
|
|
+.box:hover {
|
|
|
+ margin-bottom: 0;
|
|
|
+}
|
|
|
+
|
|
|
.box:hover a {
|
|
|
display: block;
|
|
|
transform: unset;
|
|
|
}
|
|
|
|
|
|
#box-1 {
|
|
|
- background-image: url("../assets/img-1.jpg");
|
|
|
+ background-image: url("../assets/img-1.png");
|
|
|
}
|
|
|
|
|
|
#box-2 {
|
|
|
- background-image: url("../assets/img-2.jpg");
|
|
|
+ background-image: url("../assets/img-2.png");
|
|
|
}
|
|
|
|
|
|
#box-3 {
|
|
|
- background-image: url("../assets/img-3.jpg");
|
|
|
+ background-image: url("../assets/img-3.png");
|
|
|
}
|
|
|
|
|
|
#box-4 {
|
|
|
- background-image: url("../assets/img-4.jpg");
|
|
|
+ background-image: url("../assets/img-4.png");
|
|
|
}
|
|
|
|
|
|
#box-5 {
|
|
|
- background-image: url("../assets/img-5.jpg");
|
|
|
+ background-image: url("../assets/img-5.png");
|
|
|
}
|
|
|
|
|
|
#box-6 {
|
|
|
- background-image: url("../assets/img-6.jpg");
|
|
|
+ background-image: url("../assets/img-6.png");
|
|
|
}
|
|
|
|
|
|
#box-7 {
|
|
|
- background-image: url("../assets/img-7.jpg");
|
|
|
+ background-image: url("../assets/img-7.png");
|
|
|
}
|
|
|
|
|
|
#box-8 {
|
|
|
- background-image: url("../assets/img-8.jpg");
|
|
|
+ background-image: url("../assets/img-8.png");
|
|
|
+}
|
|
|
+
|
|
|
+#box-5 a, #box-8 a {
|
|
|
+ color: black;
|
|
|
}
|
|
|
</style>
|