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
| <template>
| <div class="home">
| <div class="profilePhoto">
| </div>
| </div>
| </template>
|
| <script>
| export default {};
| </script>
|
| <style>
| .home {
| width: 100%;
| height: 100vh;
| background-image: url("@/assets/images/homeBg.png");
| background-repeat: no-repeat;
| background-size: 100% 95%;
| position: relative;
| }
| .profilePhoto {
| background-image: url("@/assets/images/profilePhoto.png");
| width: 575px;
| height: 656px;
| background-size: 100% 100%;
| position: relative;
| top: 33%;
| left: 8%;
| }
| </style>
|
|