bmstu-mt-wp/themes/ribbon/styles/print.scss

59 lines
963 B
SCSS
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// Ribbon theme for Shower HTML presentation template: github.com/pepelsbey/shower
// Copyright © 20102012 Vadim Makeev, pepelsbey.net
// Licensed under MIT license: github.com/pepelsbey/shower/wiki/License-En
@import 'defaults.scss';
@page {
margin:0;
size:$width $height;
}
// List
// -------------------------------
.list {
padding:0;
background:none;
// Magic
* {
-webkit-print-color-adjust:exact;
}
// Caption
.caption {
display:none;
}
// Slide
.slide {
float:none;
margin:0;
-webkit-transform:none;
-moz-transform:none;
-ms-transform:none;
-o-transform:none;
transform:none;
&:before {
display:none;
}
&:after {
position:absolute;
left:120px;
bottom:80px;
color:#CCC;
text-shadow:none;
line-height:18px;
font-weight:normal;
font-size:25px;
}
// Cover Shout
&.cover,
&.shout {
z-index:1;
&:after {
content:'';
}
}
&.cover {
background:#000;
}
}
}