forked from kishanrajput23/Java-Projects-Collections
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTextBox.css
97 lines (89 loc) · 1.41 KB
/
TextBox.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
.textbox{
height: 25px;
border:1px solid gray;
-webkit-border-radius:5px;
-moz-border-radius:5px;
border-radius:5px;
outline:0;
width: 300px;
}
.textbox:hover
{
border-color: cyan;
}
.textbox2{
height: 25px;
border:1px solid gray;
-webkit-border-radius:5px;
-moz-border-radius:5px;
border-radius:5px;
outline:0;
width: 235px;
}
.textbox2:hover
{
border-color: cyan;
}
.textbox3{
height: 25px;
border:1px solid gray;
-webkit-border-radius:5px;
-moz-border-radius:5px;
border-radius:5px;
outline:0;
width: 190px;
}
.textbox3:hover
{
border-color: cyan;
}
.textarea{
height: 50px;
border:1px solid #848484;
-webkit-border-radius:5px;
-moz-border-radius:5px;
border-radius:5px;
outline:0;
width: 300px;
}
.textarea:hover
{
border-color: orange;
}
.button{
height: 25px;
border:1px solid black;
-webkit-border-radius:10px;
-moz-border-radius:10px;
border-radius:10px;
outline:1;
width: 100px;
background-color: gray;
color:black;
font-size: medium;
border-bottom-color:black;
border-bottom-width:medium;
border-right-color: black;
border-right-width:medium;
}
.button:hover
{
border-color: red;
}
.selectbx{
height: 30px;
border:1px solid gray;
-webkit-border-radius:5px;
-moz-border-radius:5px;
border-radius:5px;
outline:0;
width: 200px;
}
.selectbx:hover
{
border-color: magenta;
}
.border{
border-width:medium;
border-color:silver;
}