-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
126 lines (108 loc) · 2.84 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Portfolio 1WT</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
font-size: 16px;
height: 100vh;
background: linear-gradient(180deg, #b7dc7f 0%, #ecf385 100%);
overflow: hidden;
}
body {
font-family: Arial, Helvetica, sans-serif;
line-height: 1.5;
}
h1 {
margin: 2rem 0;
letter-spacing: .1rem;
color: #d3fafb;
text-shadow: 3px 3px 3px rgba(0, 0, 0, .5);
}
main {
width: 500px;
margin: 2rem auto;
text-align: center;
}
nav {
margin-top: 2rem;
font-weight: bold;
ul {
display: flex;
gap: 2rem;
list-style: none;
}
li {
flex: 1;
display: flex;
background-color: #0e7490;
padding: .5rem 1rem;
border-radius: .25rem;
box-shadow: 5px 5px 10px rgba(0, 0, 0, .5);
transition: .3s;
&:hover {
transform: translate(-1px, -1px);
background-color: #155e75;
box-shadow: 10px 10px 10px rgba(0, 0, 0, .3);
}
}
a {
flex: 1;
font-size: 1.5rem;
font-variant: small-caps;
text-decoration: none;
color: #d3fafb;
}
}
aside {
width: 150px;
position: absolute;
bottom: 0;
right: 0;
filter: grayscale(50%);
opacity: .2;
animation: move 20s infinite;
img {
width: 100%;
height: auto;
}
}
@keyframes move {
0%, 100% {
bottom: -150px;
opacity: .2;
}
10% {
bottom: -10px;
opacity: 1;
}
10.5% {
bottom: -150px;
opacity: .2;
}
}
</style>
</head>
<body>
<main>
<h1>[Naam]</h1>
<nav>
<ul>
<li><a href="portfolio/index.html" target="subsite">Portfolio</a></li>
<li><a href="flyer/index.html" target="subsite">Flyer</a></li>
</ul>
</nav>
</main>
<aside>
<!-- Gecko from https://rawsvg.com/svg/gecko-lizard-vector-illustration-fb5irzw7gmhl38oc.html -->
<img src="portfolio/assets/gecko.svg" alt="gecko">
</aside>
</body>
</html>