feature : implementing solid-poll + css customisations

This commit is contained in:
senza
2020-08-08 14:11:18 +02:00
parent 82f8575d64
commit 5a323381cc
6 changed files with 55 additions and 2 deletions

View File

@ -22,4 +22,5 @@
@import 'layout/user/index';
@import 'layout/events/index';
@import 'layout/dashboard/index';
@import 'layout/polls/index';
}

View File

@ -0,0 +1 @@
@import '_polls.scss';

View File

@ -0,0 +1,36 @@
#polls{
h2{
text-transform: inherit;
}
/*style of poll listing*/
#pollListing{
width: 90%;
margin: auto;
.all-polls{
/*make 3 polls per line*/
div:first-of-type{
solid-display{
width: 330px;
>div:first-of-type{
*[name="body"]{
/*size of tags of poll card*/
etuc-display-votetags{
>div{
width: 64px;
height: 24px;
p{
font-size: 11px;
}
}
}
}
}
}
}
}
}
#pollPage{
width: 85%;
margin: auto;
}
}