-
Notifications
You must be signed in to change notification settings - Fork 0
/
reg.htm
executable file
·166 lines (116 loc) · 3.24 KB
/
reg.htm
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
/* ---------- CSS3 Animated Vignette Buttons by MightyMeta ---------- */
/* ---------- General Demo Styling - You Can Ignore This Bit ---------- */
<!--body {
position: relative;
text-align: center;
background-color: #212322;
}
h1 {
color: #1A897A;
font-family: Palatino,serif;
font-size: 60px;
margin: 40px;
text-shadow: 2px 2px 0 #184E2B;
}
#demo-box {
width: 550px;
margin: 40px auto;
padding: 40px 40px 20px;
background-color: #C7E1D5;
-moz-border-radius: 12px;
-webkit-border-radius: 12px;
-o-border-radius: 12px;
border-radius: 12px;
overflow: hidden;
}-->
<!--#info-box {
clear: left;
padding: 20px 20px 10px;
background-color: #ABD5C1;
-moz-border-radius: 10px 10px 10px 10px;
-webkit-border-radius: 10px 10px 10px 10px;
-o-border-radius: 10px 10px 10px 10px;
border-radius: 10px 10px 10px 10px;
}
p {
margin: 0 0 1.2em;
color: #333333;
font-family: Arial,sans-serif;
font-size: 13px;
line-height: 1.3em;
}
.article-link {
color: #198975;
}
.article-link:hover {
text-decoration: none;
}
#whodunnit {
position: fixed;
right: 0;
bottom: 0;
width: 200px;
height: 25px;
padding-top: 5px;
font-family: Arial, sans-serif;
font-weight: bold;
font-size: 16px;
text-decoration: none;
color: #fff;
background-color: #2C2C2C;
}
#whodunnit:hover {
text-shadow: 0 0 10px #fff;
}
span {
color: #198975;
}-->
/* ----------------------------------------------------------------- */
/* -------------------- The Button Goodness !!! -------------------- */
/* ----------------------------------------------------------------- */
/* ---------- Example Two ---------- */
#eg2 {
display: block;
width: 5em;
margin: 0px 20px;
padding: 20px 40px;
text-align: center;
font-family: Arial, sans-serif;
font-size: 19px;
color: #fff;
text-decoration: none;
text-shadow: 1px 1px 0px #000;
-moz-border-radius: 25px;
-webkit-border-radius: 25px;
-o-border-radius: 25px;
border-radius: 25px;
background: url(images/stripes.png) no-repeat 0px 0px, url(images/background.png) no-repeat center -8px;
-moz-box-shadow: 2px 2px 10px #000;
-webkit-box-shadow: 2px 2px 10px #000;
-o-box-shadow: 2px 2px 10px #000;
box-shadow: 2px 2px 10px #000;
-moz-transition: all 1s ease-out;
-webkit-transition: all 1s ease-out;
-o-transition: all 1s ease-out;
transition: all 1s ease-out;
}
#eg2:hover {
background: url(images/stripes.png) no-repeat 0px -200px, url(images/background.png) no-repeat center -8px;
-moz-transition: all 0.5s ease;
-webkit-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
transition: all 0.5s ease;
}
</style>
</head>
<body>
<!-- <h1>CSS3 Animated Vignette Buttons</h1>-->
<div>
<a id="eg2" class="button" href="#">REGISTER</a>
</div><!-- end info-box-->
</body>
</html>