mirror of
https://github.com/ENSL/ensl.org.git
synced 2024-12-29 05:51:22 +00:00
52 lines
No EOL
536 B
SCSS
52 lines
No EOL
536 B
SCSS
/*
|
|
Polls List
|
|
*/
|
|
|
|
table.polls {
|
|
|
|
.questions {
|
|
width: 30%;
|
|
}
|
|
|
|
.date {
|
|
width: 30%;
|
|
}
|
|
|
|
.votes,
|
|
.user {
|
|
width: 15%;
|
|
}
|
|
|
|
.actions {
|
|
width: 10%;
|
|
text-align: right;
|
|
}
|
|
}
|
|
|
|
/*
|
|
Poll Forms
|
|
*/
|
|
|
|
#poll {
|
|
.inputs {
|
|
|
|
.question {
|
|
@include span-columns(9);
|
|
}
|
|
|
|
.destroy {
|
|
@include span-columns(3);
|
|
@include omega;
|
|
|
|
.checkbox {
|
|
float: left;
|
|
}
|
|
|
|
.remove {
|
|
display: inline-block;
|
|
line-height: 40px;
|
|
margin-left: 10px;
|
|
}
|
|
}
|
|
}
|
|
} |