@media @medium {
font-size: unit(14*@articles-mobile-ratio, px);
}
+
+ &:not(:first-child) {
+ margin-top: 30px;
+ width: auto !important;
+ }
}
h2 {
}
}
+
+ &.bigfont {
+ font-weight: 600;
+ font-size: 30px;
+ @media @medium {
+ font-size: unit(30*@articles-mobile-ratio, px);
+ }
+ }
}
h1 {
}
}
+ aside{
+ background-color: #eee;
+ padding: 10px 30px;
+ margin-top: 30px;
+ }
+
figure {
margin: 30px 0;
+ }
- img {
- display: block;
- width: 100%;
- height: auto;
- }
+ img {
+ display: block;
+ width: 100%;
+ height: auto;
+ }
- figcaption {
- color: #fff;
- font-size: 16px;
- padding: 15px;
+ figure + figcaption {
+ margin-top: -30px;
+ }
- @media @medium {
- font-size: unit(16*@articles-mobile-ratio, px);
- }
+ figcaption {
+ background-color: #000;
+ color: #fff;
+ font-size: 16px;
+ padding: 15px;
+
+ @media @medium {
+ font-size: unit(16*@articles-mobile-ratio, px);
}
}
font-size: unit(16*@articles-mobile-ratio, px);
}
}
+
+ .articleBody > a {
+ display: block;
+ }
+
+ .articleBody a {
+ text-decoration: underline;
+ }
+
+ .youtube {
+ position: relative;
+ padding-bottom: 56.25%;
+ padding-top: 30px;
+ height: 0;
+ overflow: hidden;
+
+ iframe, object, embed {
+ position: absolute;
+ top: 0;
+ left: 0;
+ width: 100%;
+ height: 100%;
+ }
+ }
}
+
@import "articles/@{articles-styles}.less";
\ No newline at end of file
--- /dev/null
+@import "book-variables";
+@import "variables";
+
+@red: #df001a;
+
+* {
+ box-sizing: border-box;
+ margin: 0;
+ padding: 0;
+}
+
+article {
+ .articleBody a {
+ &:hover {
+ color: @red !important;
+ }
+ }
+
+ h2{
+ color:@red;
+ }
+
+}
+
+
+.mview.visible[data-menu="article"] .footer {
+ background-color: @red;
+}
\ No newline at end of file