-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
72 lines (72 loc) · 1.83 KB
/
index.html
File metadata and controls
72 lines (72 loc) · 1.83 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title> Fandom </title>
<style>
@media screen and (min-width:1024px) {
*{
margin: auto;
padding: auto;
box-sizing: border-box;
overflow-x: hidden;
}
.content {
height:100vh;
background: linear-gradient(to left,#1492E6,#0E5380,#080808);
display: flex;
justify-content: center;
}
#img1 {
height: 130px;
transition : 0.2s ease-in-out;
}
#img1:hover {
height: 250px;
filter: drop-shadow(2px 4px 4px black);
}
#img2 {
height: 80px;
transition : 0.2s ease-in-out;
}
#img2:hover {
height: 150px;
}
#logo{
height: 250px;
transition : 0.2s ease-in-out;
}
.logoTag:hover #logo{
height: 400px;
}
.logoTag:hover p {
font-size: 24px;
top: -120px;
}
p {
position: relative;
font-size: 18px; color: white; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; font-weight: 500;
text-align: center;
top: -80px;
transition : 0.2s ease-in-out;
}
}
</style>
</head>
<body>
<div class="content">
<a href="intro2.html">
<img id="img1" src="cdnlogo.com_dc.png">
</a>
<div class="logoTag">
<img id="logo" src="Fandom.png">
<p>CHOOSE YOUR TEAM.</p>
</div>
<a href="intro.html">
<img id="img2" src="Daco_249605.png">
</a>
</div>
</body>
</html>