-
Notifications
You must be signed in to change notification settings - Fork 0
/
complaintinput.css
126 lines (103 loc) · 1.7 KB
/
complaintinput.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
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
/**************************** page content ***************************/
#infocontainer{
max-width: 720px;
/* http://www.svendtofte.com/code/max_width_in_ie/ */
width: expression(document.body.clientWidth > 720? "720px": "auto");
margin: 0px auto;
padding: 20px 0px;
text-align: left;
clear:both;
}
input.text,select{
background: #2D6400;
border: 2px inset white;
color: white;
}
input.text:focus,select:focus,#complaint textarea:focus,#submit input:focus{
background: transparent;
border: 2px inset white;
color: black;
}
select{
margin-left:10px;
width: auto;
}
option{
margin:0;
padding:0 0 0 5px;
}
#first,#last{
width:110px;
margin:0 10px;
}
#lblfirst,#lbllast{
font-size:10px;
margin:0;
padding:0;
}
#lblfirst{
margin:0 115px 0 47px;
}
fieldset{
margin:20px 0;
padding:10px;
border:3px double #2D6400;
}
fieldset legend{
color: black;
}
fieldset#submit{
border:0;
text-align:right;
}
#submit input{
background: #2D6400;
border: 2px outset white;
color: white;
}
#submit input:active{
border-style:inset;
}
#customer{
width: 315px;
float: left;
clear: none;
text-align: left;
}
#employee{
width: 315px;
float: right;
clear: none;
text-align: left;
}
#complaint{
clear: both;
text-align:left;
margin:0;
padding: 10px;
}
#complaint input{
margin-left:20px;
}
#complaint textarea{
display: block;
border: 2px inset white;
margin: 10px 0 0 0;
padding: 0;
background: #2D6400;
color: white;
width:690px;
height: 175px;
overflow: auto;
}
/************************** links ****************************/
a:link, a:visited{
color: white;
/*color: #0000EE;*/
text-decoration: none;
display: block;
}
a:hover, a:active, a:focus{
background: white;
color: #2D6400;
}