-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathForm.css
More file actions
99 lines (83 loc) · 1.72 KB
/
Copy pathForm.css
File metadata and controls
99 lines (83 loc) · 1.72 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
/* CSS Form and AJAX Display styling */
h1{
color:#000;
text-shadow:1px 1px #ccc;
font-size:24px;
font-family:Arial, Helvetica, sans-serif;
}
p{
color:#666;
font-family:Arial, Helvetica, sans-serif;
font-size:12px;
}
form#sports{
background-color:#e3e3e3;
border:1px solid #ccc;
-moz-border-radius-bottomright: 10px;
-k-webkit-border-radius: 20px;
-moz-border-radius: 20px;
border-radius: 20px;
-webkit-box-shadow: 5px 5px 15px 2px rgba(55, 45, 40, 1);
-moz-box-shadow: 5px 5px 15px 2px rgba(55, 45, 40, 1);
box-shadow: 5px 5px 15px 2px rgba(55, 45, 40, 1);
width:600px;
padding:20px;
height:auto;
}
form legend{
font-family:arial, helvetica, san-serif;
font-weight:bold;
font-size:25px;
color:#999;
text-shadow: 1px 2px 5px #000000;
filter: dropshadow(color=#000000, offx=1, offy=2);
margin-bottom:20px;
}
form select {
width:300px;
padding:10px;
background-color:#fff;
color:#000033;
font-weight:bold;
-webkit-box-shadow: inset 1px 1px 39px 2px rgba(55, 45, 40, 1);
-moz-box-shadow: inset 1px 1px 39px 2px rgba(55, 45, 40, 1);
box-shadow: inset 1px 1px 39px 2px rgba(55, 45, 40, 1);
}
form select option{
background-color:#666;
color:#ccc;
font-weight:bold;
margin:10px 0 10px 0;
}
form select option:focus{
background-color:#036;
color:#fff;
font-weight:bold;
}
/*table striping*/
.odd {background: #333; color:#e3e3e3;}
table{
border:1px solid #333;
background-color:#e3e3e3;
padding:10px;
font-family:arial,helvetica,sans-serif;
font-size:12px;
color:#333;
width:800px;
}
table tr{
border-top:1px solid #ccc;
border-bottom:1px solid #ccc;
border-collapse:collapse;
}
table tr th{
background-color:#666;
color:#ccc;
font-weight:bold;
font-family:arial,helvetica, sans-serif;
padding:20px;
}
table tr td{
padding:20px;
text-align:center;
}