-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (37 loc) · 1.11 KB
/
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
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="utf-8">
<title>page</title>
<style>
a.stylebouton {
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
border: solid thin #929292;
text-shadow: none;
background: #F6F6F6;
background-image: -webkit-linear-gradient(top, #F6F6F6, #DDDDDD);
background-image: -moz-linear-gradient(top, #F6F6F6, #DDDDDD);
background-image: -ms-linear-gradient(top, #F6F6F6, #DDDDDD);
background-image: -o-linear-gradient(top, #F6F6F6, #DDDDDD);
background-image: linear-gradient(to bottom, #F6F6F6, #DDDDDD);
color: buttontext;
padding: 3px 8px;
margin: 2px;
text-decoration: none;
font-family: Arial;
font-size: 13.1999998092651px;
}
a.stylebouton:hover {
background-image: -webkit-linear-gradient(top, #DDDDDD, #F6F6F6);
background-image: -moz-linear-gradient(top, #DDDDDD, #F6F6F6);
background-image: -ms-linear-gradient(top, #DDDDDD, #F6F6F6);
background-image: -o-linear-gradient(top, #DDDDDD, #F6F6F6, #DDDDDD);
background-image: linear-gradient(to bottom, #DDDDDD, #F6F6F6);
}
</style>
</head>
<body>
</body>
</html>