Merge branch 'feature/sib-poll' into feature/resource-component

This commit is contained in:
Benoit Alessandroni
2020-08-11 17:10:55 +02:00
6 changed files with 71 additions and 3 deletions

View File

@ -23,5 +23,6 @@
@import 'layout/events/index';
@import 'layout/resources/index';
@import 'layout/dashboard/index';
@import 'layout/polls/index';
}
@import '../../client.sample.etuc.scss';
@import '../../client.sample.etuc.scss';

View File

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

View File

@ -0,0 +1,52 @@
#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;
}
}
}
}
}
}
}
}
}
/*personnalise css on poll page*/
#pollPage{
width: 85%;
margin: auto;
solid-display.topline{
>div:first-of-type{
*[name="right"]{
etuc-display-votetags{
>div{
width: 64px;
height: 24px;
p{
font-size: 11px;
}
}
}
}
}
}
}
}