-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpretty-buttons.html
More file actions
executable file
·76 lines (70 loc) · 1.94 KB
/
pretty-buttons.html
File metadata and controls
executable file
·76 lines (70 loc) · 1.94 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="Content-type" content="text/html; charset=UTF-8" />
<title> test </title>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"></script>
<script type="text/javascript" src="http://scripts.vik-off.net/debug.js"></script>
<script type="text/javascript" src="http://scripts.vik-off.net/plugins/jquery.simpleCheckbox.js"></script>
<style>
body {
font-size: 12px;
}
table{
border-collapse: collapse;
}
.elm{
display: inline-block;
border: groove 2px #639F1A;
color: white;
font-weight: bold;
border-radius: 5px;
padding: 5px 10px;
text-shadow: 0px 1px 0px #444;
background-image: -moz-linear-gradient(bottom center, #63A900 15%, #93C900 65%);
background-image: -o-linear-gradient(bottom, #63A900 15%, #93C900 65%);
cursor: pointer;
}
.elm:hover{
background-image: -o-linear-gradient(bottom, #93C900 15%, #63A900 65%);
background-image: -moz-linear-gradient(bottom center, #93C900 15%, #63A900 65%);
}
.elm:active{
border-style: ridge;
}
.elm2{
display: inline-block;
border: groove 2px #444;
color: white;
font-weight: bold;
border-radius: 5px;
padding: 5px 10px;
text-shadow: 0px 1px 0px #444;
background-image: -moz-linear-gradient(bottom center, #63A900 15%, #93C900 65%);
background-image: -o-linear-gradient(bottom, #444 15%, #999 65%);
cursor: pointer;
}
.elm2:hover{
background-image: -o-linear-gradient(bottom, #999 15%, #444 65%);
background-image: -moz-linear-gradient(bottom center, #93C900 15%, #63A900 65%);
}
.elm2:active{
border-style: ridge;
}
</style>
<script>
$(function(){
});
</script>
</head>
<body onload="">
<div style="margin: 100px;">
<input class="elm2" type="submit" value="Submit" />
</div>
<div style="border: solid 1px green;">
<div class="elm2">Submit</div>
asdfasdf
</div>
</body>
</html>