-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathform.css
More file actions
97 lines (97 loc) · 2.06 KB
/
form.css
File metadata and controls
97 lines (97 loc) · 2.06 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
body {
padding: 0; /* Gets rid of the automatic padding */
margin: 0; /* on HTML documents */
font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, sans-serif;
background: #EEE;
}
.basic-grey {
width: 600px;
text-align: right;
margin-right: auto;
margin-left: auto;
margin-top: 100px;
background: #EEE;
padding: 20px 30px 20px 30px;
color: #888;
text-shadow: 1px 1px 1px #FFF;
border:1px solid #DADADA;
}
.basic-grey h1 {
padding: 0px 0px 10px 40px;
display: block;
border-bottom: 1px solid #DADADA;
margin: -10px -30px 30px -30px;
color: #888;
}
.basic-grey h1>span {
display: block;
font-size: 11px;
}
.basic-grey label {
display: block;
margin: 0px 0px 5px;
}
.basic-grey label>span {
float: left;
width: 80px;
text-align: right;
padding-right: 10px;
margin-top: 10px;
color: #888;
}
.basic-grey input[type="text"], .basic-grey input[type="email"], .basic-grey input[type="password"], .basic-grey input[type="date"], .basic-grey textarea,.basic-grey select{
border: 1px solid #DADADA;
color: #888;
height: 24px;
margin-right: 6px;
margin-top: 20px;
outline: 0 none;
padding: 3px 3px 3px 5px;
width: 40%;
}
.basic-grey input[type="radio"] {
margin-top: 20px;
}
.basic-grey select {
background: #FFF url('down-arrow.png') no-repeat right;
background: #FFF url('down-arrow.png') no-repeat right);
appearance:none;
-webkit-appearance:none;
-moz-appearance: none;
text-indent: 0.01px;
text-overflow: '';
width: 72%;
height: 30px;
}
.basic-grey textarea{
height:100px;
}
.basic-grey .button {
background: #E48F8F;
margin-top: 30px;
border: none;
padding: 10px 25px 10px 25px;
color: #FFF;
}
.basic-grey .button:hover {
background: #CF7A7A
}
.error {
color: #FF0000;
}
a {
font-size: 18px;
padding-left: 15px;
padding-right: 15px;
color: black;
text-decoration: none;
}
a:hover {
color: #CF7A7A;
}
#login_error {
margin-top: 200px;
color: #F00;
margin-left: 450px;
margin-bottom: -150px;
}