-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsign-up.css.html
115 lines (97 loc) · 1.64 KB
/
sign-up.css.html
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
<style>
body#root {
margin: 0;
}
div#body {
padding-left: 1em;
padding-right: 1em;
font-family: apercu-pro, "Apercu Pro", -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
overflow-wrap: break-word;
font-size: 48px;
}
span.fieldTitle {
display: block;
}
button#clear {
font-size: inherit;
padding: 0 .5em;
}
h1 {
font-size: 1.5em;
text-align: center;
}
h2 {
font-size: 1.2em;
}
a#print {
font-size: 1.2em;
}
div#sign-up {
margin-top: 1em;
}
p, ol, ul, a, label.field, span.fieldTitle, span.status {
font-size: inherit;
}
#signUpForm fieldset {
margin-top: .5em;
margin-bottom: .5em;
}
#signUpForm fieldset legend {
background-color: #000;
color: #fff;
padding: .3em .6em;
}
#signUpForm fieldset.speaker legend {
background-color: unset;
color: #000;
font-weight: bold;
}
label {
font-weight: bold;
display: block;
margin-top: .5em;
}
label span {
vertical-align: middle;
}
label#meetingDate {
display: inline-block;
}
.field textarea {
margin-left: 1em;
font-size: inherit;
width: calc(100% - 3em);
-webkit-overflow-scrolling: touch;
border: 1px solid #ccc;
border-radius: 4px;
box-sizing: border-box;
}
span.status {
margin-left: .2em;
width: 1em;
height: 1em;
}
span.maxLength {
display: block;
font-weight: normal;
font-size: .5em;
margin-left: 2em;
text-align: left;
}
input {
font-size: inherit;
margin-left: 1em;
border: 1px solid #ccc;
border-radius: 4px;
box-sizing: border-box;
}
.field input {
width: calc(100% - 3em);
}
footer {
text-align: center;
font-size: .5em;
margin-top: 5em;
margin-bottom: 3em;
}
</style>