-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmeldt-på.html
73 lines (64 loc) · 1.22 KB
/
meldt-på.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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Velkommen!</title>
<link rel="stylesheet" type="text/css" href="style.css">
<style>
@keyframes zoomEffect{
0%{transform: scale(1);}
50%{transform: scale(1.1);}
100%{transform: scale(1);}
}
body {
background-color: #ff5400;
display: flex;
}
img {
margin: auto;
width:100%;
background-color: rgba(255,255,255,0.42);
padding: 10%;
box-sizing: border-box;
border-radius: 10px;
animation: zoomEffect 3s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
transition: transform 1s;
transform: scale(1);
animation-fill-mode: forwards;
cursor: pointer;
}
img:hover {
transition: transform 1s;
animation: zoomEffect 3s 1;
animation-fill-mode: forwards;
background-color: rgba(255,255,255,0.62);
}
h1 {
margin: auto;
font-size: 7em;
}
div {
display: flex;
}
#wrapper {
flex-direction: column;
margin: auto;
}
#wrapper div {
width: 40%;
margin: auto;
}
p {
margin: auto;
font-size: 2em;
}
</style>
</head>
<body>
<div id="wrapper">
<h1>Velkommen!</h1>
<p>Du er nå registrert.</p>
<div><img src="media/logo.png" alt="ComeOn Fitness" onClick="location.href='index.html'"></div>
</div>
</body>
</html>