-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhandheld.css
94 lines (76 loc) · 1.96 KB
/
handheld.css
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
/* CSS styles for handheld devices. */
.button, .vbutton {
padding: 10px; text-decoration: none;
font-family: arial, "lucida console", helvetica, sans-serif;
font-size: inherit;
display: inline-block;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
-khtml-border-radius: 5px;
border-radius: 5px;
background-color: #dfdfdf;
border-width: 3px;
border-style: solid;
}
.formbutton {
padding: 10px; text-decoration: none;
font-family: arial, "lucida console", helvetica, sans-serif;
font-size: inherit;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
-khtml-border-radius: 5px;
border-radius: 5px;
color: #0000FF;
background-color: #dfdfdf;
border-width: 3px;
border-style: solid;
border-bottom-color: #7f7f7f;
border-right-color: #7f7f7f;
border-top-color: #bfbfbf;
border-left-color: #bfbfbf;
}
.vbutton:before, .vbutton:after { content: ""; }
.button:link, .button:visited, .vbutton:link, .vbutton:visited {
border-bottom-color: #7f7f7f;
border-right-color: #7f7f7f;
border-top-color: #bfbfbf;
border-left-color: #bfbfbf;
}
.button:active, .vbutton:active {
border-top-color: #7f7f7f;
border-left-color: #7f7f7f;
border-bottom-color: #bfbfbf;
border-right-color: #bfbfbf;
}
.linksep { display: none; }
.buttonbox { display: block; }
.widebutton {
padding: 10px;
display: block;
text-decoration: none;
border: 1px solid #000000;
font-family: arial, "lucida console", helvetica, sans-serif;
}
.formbox {
padding: 10px; display: block; border: 1px solid;
font-family: arial, "lucida console", helvetica, sans-serif;
}
.inputbox { height: 20px; }
.submitbutton {
font-family: arial, "lucida console", helvetica, sans-serif;
font-size: inherit;
}
.menulist { list-style-type: none; padding: 0; }
.vlist {
list-style-type: none;
padding: 0;
}
.vlist li {
padding: 10px 0 10px 0;
border-width: 1px;
border-top-style: solid;
border-right-style: none;
border-bottom-style: solid;
border-left-style: none;
}
/* vim: set tw=0: */