-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGreat Expectations.html
50 lines (39 loc) · 1.19 KB
/
Great Expectations.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Home</title>
<style>
@font-face{
font-family: Cologne;
src: url(files/fonts/FengardoNeue_Regular.otf) format("opentype");
}
body{
background-image: linear-gradient(to right, crimson, dodgerblue);
}
.butoon{
text-decoration: none;
background-color: ivory;
border: none;
border-radius: 5px;
width: 180px;
height: 90px;
font-size: 40px;
font-family: Cologne;
transition: background-color 0.5s, color 0.5s, height 0.5s, width 0.5s;
}
.butoon:hover{
color: ivory;
height: 110px;
width: 200px;
}
</style>
</head>
<body>
<div>
<a href="files/plotanim.html"><button class="butoon" style="position: fixed; top: 50%; left: 25%; transform: translate(-50%, -50%);">Story</button></a>
<a href="files/authoranim.html"><button class="butoon" style="position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%);">Author</button></a>
<a href="files/quizanim.html"><button class="butoon" style="position: fixed; top: 50%; left: 75%; transform: translate(-50%, -50%);">Quiz</button></a>
</div>
</body>
</html>