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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
|
html {
font-family: "Verdana", "Arial", sans-serif !important;
font-size: 16px;
}
body {
padding: 10px;
max-width: 1000px;
margin: 0 auto;
}
h1 {
margin-bottom: 40px;
}
h1 a {
color: black;
text-decoration: none;
}
h1:hover a {
border-bottom: 2px dotted #fa8e35;
text-decoration: none;
}
textarea, input {
font-family: "Verdana", "Arial", sans-serif;
font-size: 16px;
}
button,
input[type="submit"] {
cursor: pointer;
font-size: 16px;
border-radius: 4px;
text-shadow: none;
box-shadow: none;
padding: 5px 8px;
border: 0;
background-color: rgb(63, 122, 248);
color: white;
}
button.red,
input[type="submit"].red {
background-color: #d42f2f;
}
button.green,
input[type="submit"].green {
background-color: #4caf50;
}
button.yellow,
input[type="submit"].yellow {
background-color: #ff9800;
}
input[type="text"],
input[type*="date"] {
font-size: 16px;
color: black;
}
input[type="text"]:disabled,
input[type*="date"]:disabled {
color: #666;
}
.contrast {
color: #fa8e35;
}
th, td {
padding-left: 0;
padding-right: 5px;
min-width: 100px;
}
table {
margin-left: -2px;
}
.vote-table th,
.vote-table td {
text-align: center;
padding: 7px 5px;
}
.vote-table th {
vertical-align: bottom;
}
.vote-table th span {
display: block;
}
.vote-table th span i {
font-weight: normal;
}
.vote-table td:first-child {
text-align: left;
padding-left: 5px;
}
.vote-table tr:last-child td:first-child {
padding-left: 0;
}
.vote-table tr td:nth-child(even),
.vote-table tr th:nth-child(even) {
background-color: #f2f2f2; /* Light grey background */
}
.vote-table tr:nth-child(even),
.vote-table tr:nth-child(even) {
background-color: #f8f6ff; /* Light grey background */
}
.vote-table td input[type="checkbox"] {
margin: 0;
}
.vote-table input[name="voter_name"] {
max-width: 150px;
}
.danger-zone {
margin-top: 40px;
}
.manage-table th {
text-align: left;
}
.poll-form td:last-child,
.manage-table td:last-child {
display: flex;
flex-flow: row;
align-items: center;
}
.poll-form td:last-child > *,
.manage-table td:last-child > * {
flex: 1;
}
.manage-table td:last-child input[type="submit"] {
max-width: 70px;
}
.display-mode-section {
margin-bottom: 30px;
}
.display-mode-section input[type="submit"] {
margin-left: 10px;
}
.vote-list label,
input[type="checkbox"] {
cursor: pointer;
}
input[type="checkbox"]:disabled {
cursor: initial;
}
td.checkbox-field {
text-align: left;
}
td.checkbox-field input[type="checkbox"] {
flex: initial;
margin-left: 0;
}
input[type="checkbox"] {
height: 20px;
width: 20px;
}
button#share-link-copy {
padding: 0;
background: none;
color: black;
font-size: 25px;
line-height: 16px;
}
input[type="submit"].delete-voter-btn {
margin-left: 5px;
background: none;
padding: 0;
}
|