-
Notifications
You must be signed in to change notification settings - Fork 0
/
Chimoney banner
69 lines (67 loc) · 1.58 KB
/
Chimoney banner
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
<html>
<head>
<title> animated banner links</title>
<link rel="stylesheet" href="style.css">
<style>
.bannerCover {
margin: 0;
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
}
.banner{
box-shadow: 0 0 5px gray;
padding:2rem;
border-radius: 5px;
text-align: center;
}
a {
text-decoration: none;
font-weight: 800;
font-size: 2rem;
color: green;
padding: 0 2rem;
animation: zoomup 1s linear alternate infinite;
}
@keyframes zoomup{
0%{
font-size: 2rem;
}
25%{
font-size: 2rem;
}
50%{
font-size: 1.8rem;
border-radius: 5px;
padding: 0.2rem 0.5rem;
color: white;
background-color: red;
}
75%{
font-size: 1.8rem;
border-radius: 5px;
padding: 0.2rem 0.5rem;
color: white;
background-color: yellow;
}
100%{
font-size: 1.8rem;
border-radius: 5px;
padding: 0.2rem 0.5rem;
color: white;
background-color: red;
}
}
</style>
</head>
<body>
<div class="bannerCover">
<div class="banner">
<a href="https://www.chimoneycommunity">Chimoney Community</a>
<p>(Thank you Chimoney! waiting for an immediate response!.)</p>
</div>
</div>
</body>
</html>