public-health-ch/publichealth/static/css/modules/_articles.scss

99 lines
1.5 KiB
SCSS
Raw Normal View History

// Article sections
section {
2017-05-03 21:13:36 +00:00
padding: 3em 0;
2017-05-03 22:23:51 +00:00
2017-05-02 14:47:18 +00:00
h1 {
font-size: 40px;
text-align: center;
margin-bottom: 1.5em;
text-transform: uppercase;
}
2018-06-18 14:21:03 +00:00
// Article zebra stripes
&:nth-child(even) {
background-color: $gray-lighter;
color: black;
}
}
2018-06-18 14:18:16 +00:00
// Stretch the top image
.content-page .container:first-child img.img-responsive {
width: 100%;
}
2017-05-02 14:47:18 +00:00
.article-body {
h2 { font-size: 35px; }
h3 { font-size: 30px; }
h4 { font-size: 25px; }
h5 { font-size: 22px; }
2017-05-02 14:49:58 +00:00
line-height: 1.5;
2017-05-03 22:23:51 +00:00
img.full-width {
width: 100%;
}
2017-05-02 14:47:18 +00:00
}
// Article content blocks
.article-body > div {
clear: both;
}
2017-05-03 22:23:51 +00:00
.infoblocks {
.image img {
width: 300px; height: 300px;
}
article:nth-child(3n+1) {
clear: left;
}
2017-05-02 14:59:36 +00:00
}
// Article index blocks
.article-subcategories article {
margin-bottom: 1.5em;
}
2017-05-03 14:18:14 +00:00
// Special article layout
.article-page .lead {
h2,h3,h4,h5 { text-align: center; }
}
// Responsive image/video classes
.rich-text img {
max-width: 100%;
height: auto;
}
.richtext-image.left{
float:left;
}
.richtext-image.right{
float:right;
}
.responsive-object {
position: relative;
}
.responsive-object iframe,
.responsive-object object,
.responsive-object embed {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
2019-08-27 08:50:44 +00:00
// Document links
a[href$=".docx"],
a[href$=".pdf"] {
// &::after {
// content: ' [PDF]';
// color: #555;
// font-size: 100%;
// font-variant-position: super;
// }
&::before {
content: "🗎";
color: #555;
margin-right: 5pt;
}
}