hubl/src/styles/layout/polls/_polls.scss

58 lines
1.7 KiB
SCSS
Raw Normal View History

#polls {
h2 {
text-transform: inherit;
}
/*style of poll listing*/
#pollListing {
width: 90%;
margin: auto;
.headline h2 {
font-family: "RefrigeratorDelxW01Bold";
font-size: 2.4rem;
line-height: 3.8rem;
color: #063B5C;
}
.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;
}
}
}
}
2020-08-08 12:46:31 +00:00
}
}
}
}