blob: f4ba0f17f40529191209f36853423c048b6a3ead (
plain)
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
|
/*
* This file contains styles specific to the "join_form" view. The corresponding
* HTML/template file is `views/join_form.html`.
*
* See also the file `static/styles/join_common.css` which contains some styles
* which are reused among the "join_" group of views.
*/
.signup {
}
.signup__box {
margin-bottom: 1reM;
}
.signup__label {
font-weight: bold;
}
.signup__input {
width: 100%;
padding: .5rem;
border-radius: 5px;
}
textarea.signup__input {
/* Remove UA's default monospace font */
font-family: inherit;
/* Horizontal resizing totally breaks our layout :( */
resize: vertical;
}
|