voting/vote/vote.css
Bradley M. Kuhn 6973681c5c Force color for input text to be #000 on #eee,
instead of relying on default foreground color.
Thanks to pehjota for this comment:

<pehjota> bkuhn: In vote.css for "input[type=text]", you might want to set
          "color" in addition to "background-color".  Otherwise, with my dark
          GTK+ theme, I see white text in a light gray box, which is hard to
          read. :)
2014-02-10 17:47:11 -05:00

59 lines
922 B
CSS

div.error {
font-style: italic;
font-weight: bold;
color: red;
}
div.votedata {
margin-left: 2em;
}
label {
font-weight: bold;
font-size: 0.85em;
}
input[type=text] {
border-color: #ccc;
border-style: solid;
border-width: 1px;
background-color: #eee;
color: #000;
margin: 0.1em 0 0.1em 0;
padding-left: 0.2em;
padding-right: 0.2em;
font-size : 1em;
}
table.detailedvotes {
margin-left:auto;
margin-right:auto;
border-collapse: collapse;
}
table.detailedvotes th, table.detailedvotes td {
border: 1px solid #333;
padding: 0.1em 0.5em 0.1em 0.5em;
vertical-align: top;
}
table.detailedvotes th {
text-align: center;
background-color: #222;
color: #fff;
font-weight: bold;
}
table.detailedvotes tr.colorA {
background-color: #eee;
color: #000;
}
table.detailedvotes tr.colorB {
background-color: #888;
color: #fff;
}
span.token {
font-family: monospace;
}