-
Notifications
You must be signed in to change notification settings - Fork 0
/
AR Suggestion.html
56 lines (50 loc) · 1.31 KB
/
AR Suggestion.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
51
52
53
54
55
56
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>AR</title>
</head>
<style type="text/css">
.myButton {
box-shadow: 3px 4px 22px 2px #9fb4f2;
background: linear-gradient(to bottom, #7892c2 5%, #476e9e 100%);
background-color: #7892c2;
border-radius: 23px;
border: 4px solid #4e6096;
display: inline-block;
cursor: pointer;
color: #ffffff;
font-family: Georgia;
font-size: 25px;
font-weight: bold;
padding: 12px 37px;
text-decoration: none;
text-shadow: 11px 20px 4px #283966;
}
.myButton:hover {
background: linear-gradient(to bottom, #476e9e 5%, #7892c2 100%);
background-color: #476e9e;
}
.myButton:active {
position: relative;
top: 1px;
}
.myButton:after {
content: "";
background: #90EE90;
display: block;
position: absolute;
padding-top: 300%;
padding-left: 350%;
margin-left: -20px !important;
margin-top: -120%;
opacity: 0;
transition: all 0.8s
}
</style>
<body>
<p>I am AR for Solution.</p>
<a href="index.html" class="myButton">Return</a>
</body>
</html>