-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
81 lines (67 loc) · 1.98 KB
/
index.html
File metadata and controls
81 lines (67 loc) · 1.98 KB
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
<head>
<script src="https://kit.fontawesome.com/0e3955aa1a.js" crossorigin="anonymous"></script>
<style>
@import url('https://fonts.googleapis.com/css2?family=Tangerine&display=swap');
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
height: 100%;
}
body {
min-height: 100vh;
height: 1200;
}
.effect-phrase {
font-family: 'Tangerine', cursive;
font-size: 100px;
color: white;
mix-blend-mode: difference;
filter: drop-shadow(5px 10px 4px #4444dd);
overflow-y: auto;
height: 100vh;
/* text-align:right; */
}
.column {
float: left;
width: 50%;
}
.parallax {
/* The image used */
background-image: url("images/hackerman.jpg");
height: 100%;
/* Create the parallax scrolling effect */
background-attachment: fixed;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
.logos {
fill: white;
display: flex;
justify-content: center;
transform: translateY(-400%);
}
@keyframes fadeIn {
0% {opacity: 0;}
100% {opacity: 1;}
}
.fade-in-image {
animation: fadeIn 5s;
}
</style>
</head>
<body>
<div class="parallax row">
<div class="column">.</div>
<div class="column">
<div class="effect-phrase fade-in-image">The best a man can get.</div>
<div class="meme">
<img src="images/is this a job.jpg">
<a href="https://www.linkedin.com/in/ricardo-maurique/" class="fa-brands fa-linkedin fa-5x logos"></a>
</div>
</div>
</div>
</body>