-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path3a.html
More file actions
41 lines (35 loc) · 957 Bytes
/
3a.html
File metadata and controls
41 lines (35 loc) · 957 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<button class="stretched">Stretch</button>
<style>
.stretched {
background-color: rgb(13, 133, 13);
color: white;
border: none;
padding-left: 15px;
padding-top: 8px;
padding-bottom: 8px;
padding-right: 15px;
font-size: 18px;
cursor: pointer;
transition: padding-top 1s;
transition: padding-bottom 1s;
transition: padding-left 1s;
transition: padding-right 1s;
}
.stretched:hover {
padding-left: 36px;
padding-top: 18px;
padding-bottom: 18px;
padding-right: 36px;
cursor: pointer;
}
</style>
</body>
</html>