-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathform.css
More file actions
38 lines (36 loc) · 716 Bytes
/
form.css
File metadata and controls
38 lines (36 loc) · 716 Bytes
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
.form-table { display: table; }
.form-table > div { display: table-row; }
.form-table > div > label { display: table-cell; padding: 2px 5px; }
.form-table > div > input { display: table-cell; }
#login-container {
max-width: 400px;
margin: 0 auto;
}
#login {
margin: 5px;
background-color: tan;
padding: 15px;
display: block;
margin: 0px auto;
}
#loginbtn {
margin: 0 auto;
display: block;
max-width: 55px;
padding-top: 5px;
}
#composer input[type="text"] {
min-width: 400px;
}
#composer input[type="submit"] {
margin: 5px;
}
#composer textarea {
margin-top: 15px;
width: 100%;
min-height: 350px;
white-space: pre-wrap;
}
#from-addr-current {
display: none;
}