2015-05-04 16:29:45 -04:00
|
|
|
$border-color: rgb(219,219,219);
|
|
|
|
$text-color: #9E9E9E;
|
|
|
|
|
|
|
|
$option-foreground: $primary;
|
|
|
|
$option-background: dark-light-diff($primary, $secondary, 90%, -65%);
|
2015-06-03 06:28:03 -04:00
|
|
|
$option-background-selected: #dbffdb;
|
2015-05-04 16:29:45 -04:00
|
|
|
$option-shadow: dark-light-diff($option-background, $primary, 10%, -10%);
|
|
|
|
|
2015-04-23 13:33:29 -04:00
|
|
|
div.poll {
|
|
|
|
|
2015-05-08 05:13:32 -04:00
|
|
|
border: 1px solid $border-color;
|
|
|
|
|
2015-04-23 13:33:29 -04:00
|
|
|
ul, ol {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
list-style: none;
|
|
|
|
display: inline-block;
|
2015-05-04 16:29:45 -04:00
|
|
|
width: 100%;
|
2015-04-23 13:33:29 -04:00
|
|
|
}
|
|
|
|
|
2015-06-03 10:49:20 -04:00
|
|
|
li {
|
2015-04-23 13:33:29 -04:00
|
|
|
cursor: pointer;
|
2015-06-03 10:49:20 -04:00
|
|
|
font-size: 15px;
|
|
|
|
margin-bottom: 10px;
|
2015-04-23 13:33:29 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
li[data-poll-option-id] {
|
2015-05-04 16:29:45 -04:00
|
|
|
color: $option-foreground;
|
|
|
|
background: $option-background;
|
2015-05-05 14:00:42 -04:00
|
|
|
box-shadow: inset 0 -6px rgba(0,0,0,.25), inset 0 0 0 100px rgba(0,0,0,0);
|
2015-06-03 06:35:49 -04:00
|
|
|
padding: .5em .7em .7em .5em;
|
2015-05-04 16:29:45 -04:00
|
|
|
border-radius: 4px;
|
2015-04-23 13:33:29 -04:00
|
|
|
|
|
|
|
&:hover {
|
2015-05-05 14:00:42 -04:00
|
|
|
box-shadow: inset 0 -6px rgba(0,0,0,.35), inset 0 0 0 100px rgba(0,0,0,.1);
|
2015-04-23 13:33:29 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
&:active {
|
2015-05-05 14:00:42 -04:00
|
|
|
-webkit-transform: translate(0,2px);
|
|
|
|
transform: translate(0,2px);
|
|
|
|
box-shadow: inset 0 -4px rgba(0,0,0,.35), inset 0 0 0 100px rgba(0,0,0,.1);
|
2015-04-23 13:33:29 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
&[data-poll-selected="selected"] {
|
2015-06-03 06:28:03 -04:00
|
|
|
background: $option-background-selected !important;
|
2015-04-23 13:33:29 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.button {
|
|
|
|
display: inline-block;
|
|
|
|
padding: 6px 12px;
|
|
|
|
margin-right: 5px;
|
|
|
|
text-align: center;
|
|
|
|
cursor: pointer;
|
|
|
|
color: $primary;
|
|
|
|
background: dark-light-diff($primary, $secondary, 90%, -65%);
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
background: dark-light-diff($primary, $secondary, 65%, -75%);
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-05-04 16:29:45 -04:00
|
|
|
.poll-info {
|
|
|
|
color: $text-color;
|
|
|
|
text-align: center;
|
|
|
|
vertical-align: middle;
|
|
|
|
|
|
|
|
.info-number {
|
|
|
|
font-size: 3.5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.info-text {
|
|
|
|
font-size: 1.7em;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-23 13:33:29 -04:00
|
|
|
.poll-container {
|
2015-05-04 16:29:45 -04:00
|
|
|
vertical-align: middle;
|
|
|
|
padding: 10px;
|
|
|
|
|
2015-05-20 09:55:27 -04:00
|
|
|
& > span {
|
2015-05-04 16:29:45 -04:00
|
|
|
font-size: 2em;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.poll-buttons {
|
2015-05-05 14:14:38 -04:00
|
|
|
button {
|
|
|
|
float: none;
|
|
|
|
}
|
2015-04-23 13:33:29 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.results {
|
|
|
|
|
|
|
|
.option {
|
2015-06-03 10:49:20 -04:00
|
|
|
padding-bottom: 5px;
|
|
|
|
p {
|
|
|
|
margin: 0;
|
|
|
|
}
|
2015-04-23 13:33:29 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.percentage {
|
2015-06-03 10:49:20 -04:00
|
|
|
font-size: 25px;
|
|
|
|
float: right;
|
2015-05-04 16:29:45 -04:00
|
|
|
color: $text-color;
|
2015-04-23 13:33:29 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.bar-back {
|
2015-05-04 16:29:45 -04:00
|
|
|
background: $border-color;
|
2015-04-23 13:33:29 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.bar {
|
|
|
|
height: 10px;
|
2015-05-04 16:29:45 -04:00
|
|
|
background: $option-foreground;
|
2015-04-23 13:33:29 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
&[data-poll-type="number"] {
|
|
|
|
|
|
|
|
li {
|
|
|
|
display: inline-block;
|
2015-05-04 16:29:45 -04:00
|
|
|
margin: 0 12px 15px 5px;
|
2015-04-23 13:33:29 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|