-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathButton.html
More file actions
54 lines (46 loc) · 1.2 KB
/
Copy pathButton.html
File metadata and controls
54 lines (46 loc) · 1.2 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Button</title>
<style>
.button{
background-color: black;
width:140px;
height:40px;
border-radius: 5px;
font-size: larger ;
/* font-style: italic; */
color: #FFF;
border-width: 1px;
border-color: gray;
}
.button:hover{
background-color: white;
width:140px;
height:40px;
border-radius: 5px;
font-size: larger ;
/* font-style: italic; */
color: #000;
border-width: 1px;
border-color: gray;
box-shadow: 0px 0px 0px 4px rgba(0,0,0,0.5);
animation-name:donation 2s ease-in-out infinite;
}
@keyframes donation {
0%{
transform: translate(2deg);
}
100%{
}
}
</style>
</head>
<body>
<button class="button">
<p1>Login</p1>
</button>
</body>
</html>