-
Notifications
You must be signed in to change notification settings - Fork 0
/
snapshot.html
72 lines (57 loc) · 1.04 KB
/
snapshot.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
57
58
59
60
61
62
63
64
65
66
67
<html>
<head>
<style>
input.d1
{
top:500px;
border: 5px inset green;
width: 220px;
display: block;
background: url('top.jpg');
color: red;
text-align: left;
text-decoration: none;
border-radius: 10px 10px 10px 10px;
box-shadow: 10px 10px 10px green;
/*transform: rotate(5deg);
transition: transform 1s, width 1s;*/
}
input.btn
{
border: 5px inset green;
width: 100px;
display: block;
color: red;
text-align: left;
text-decoration: none;
border-radius: 10px 10px 10px 10px;
box-shadow: 10px 10px 10px green;
/*transform: rotate(5deg);
transition: transform 1s, width 1s;*/
}
input.btn:hover
{
color: green;
width: 120px;
box-shadow: 10px 10px 10px black;
/*transform: rotate(5deg);*/
}
input.d1:hover
{
color: green;
width: 225px;
box-shadow: 10px 10px 10px black;
/*transform: rotate(5deg);*/
}
</style>
</head>
<form action="/cgi-bin/snap.py" method="POST">
Enter name:</br>
<input type="text" name="nm" class='d1'>
</br>
Enter day:</br>
<input type="text" name="dy" class='d1'>
</br>
<input type="submit" value="HIT" class='btn'>
</form>
</html>