-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathindex.html
41 lines (41 loc) · 918 Bytes
/
index.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<style>
a{
-moz-box-sizing:border-box;
box-sizing:border-box;
width:500px;
text-align: center;
font-size: 28px;
text-shadow: 0 1px 1px #996300;
padding: 14px 6px;
font-weight: 600;
font-family:Helvetica;
box-shadow: 0 2px 2px 0 #996300;
background: #ffa500;
color:#fffefc;
border-radius:10px;
position:absolute;
top:100px;
left:50%;
margin-left: -256px;
text-decoration: none;
}
a:hover{
background:#FFB733;
}
@media (max-width: 500px) {
a{
margin-left:0;
width:100%;
left:0;
}
}
</style>
</head>
<body>
<a href="javascript:!function(a%2Cb)%7B%7D(window%2Cdocument)%3B">Drag me to your bookmarks bar!</a>
</body>
</html>