-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathforms.css
More file actions
executable file
·80 lines (80 loc) · 1.31 KB
/
Copy pathforms.css
File metadata and controls
executable file
·80 lines (80 loc) · 1.31 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
label{
display:block;
float:left;
font-weight:bold;
margin-right:10px;
text-align:right;
width:120px;
line-height:25px;
font-size:15px;
color:white;
text-shadow:1px 1px 3px #080808;
}
#generalform{
padding:20px;
background:#006699;
overflow:auto;
border-radius:7px;
-moz-border-radius:7px;
-webkit-border-radius:7px;
box-shadow:5px 5px 15px #A0A0A0; /*zero*/
-moz-box-shadow:5px 5px 15px #A0A0A0;
-webkit-box-shadow:5px 5px 15px #A0A0A0;
}
.container{
width:740px;
}
.error{
color:white;
background-color:#D00000;
padding:4px;
margin:10px;
font-family:Arial;
font-weight:bold;
}
.feedback{
font-size: 15px;
padding: 5px;
border: none;
width: 500px;
color: white;
font-weight: bold;
text-shadow: 1px 1px 3px #080808;
}
.field{
margin-bottom:7px;
}
.field:hover .hint{
position:absolute;
display:block;
margin:-30px 0 0 650px;
font-size:15px;
color:white;
padding:7px 10px;
background:rgba(0,0,0,0.6);
border-radius:7px;
-moz-border-radius:7px;
-webkit-border-radius:7px;
}
.hint{
display:none;
}
.input{
font-size:15px;
padding:5px;
border:1px solid #b9bdc1;
width:500px;
color:#505050;
}
.input:focus{
background-color:white;
}
.textarea{
font-family:Arial;
height:150px;
width:500px;
font-size:15px;
padding:5px;
border:1px solid #b9bdc1;
color:#505050;
}