Print styles added
This commit is contained in:
parent
7f8edb1af9
commit
0b7de59381
1
en.htm
1
en.htm
|
@ -5,6 +5,7 @@
|
|||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=1274, user-scalable=no">
|
||||
<link rel="stylesheet" href="themes/ribbon/styles/style.css">
|
||||
<link rel="stylesheet" href="themes/ribbon/styles/print.css" media="print">
|
||||
<!--
|
||||
To apply styles to the certain slides
|
||||
use slide ID to get needed elements
|
||||
|
|
1
ru.htm
1
ru.htm
|
@ -5,6 +5,7 @@
|
|||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=1274, user-scalable=no">
|
||||
<link rel="stylesheet" href="themes/ribbon/styles/style.css">
|
||||
<link rel="stylesheet" href="themes/ribbon/styles/print.css">
|
||||
<!--
|
||||
Для оформления отдельный слайдов, используйте
|
||||
ID слайда для доступа к необходимым элементам
|
||||
|
|
|
@ -4,6 +4,8 @@
|
|||
Licensed under MIT license: https://github.com/pepelsbey/shower/wiki/License
|
||||
*/
|
||||
|
||||
* { -webkit-print-color-adjust:exact }
|
||||
|
||||
@page {
|
||||
margin:0;
|
||||
size:1024px 640px;
|
||||
|
@ -14,7 +16,7 @@
|
|||
.list {
|
||||
float:none;
|
||||
padding:0;
|
||||
background:#888;
|
||||
background:none;
|
||||
}
|
||||
|
||||
/* Caption */
|
||||
|
@ -28,29 +30,30 @@
|
|||
margin:0;
|
||||
padding:0;
|
||||
}
|
||||
.list .slide > DIV {
|
||||
.list .slide:after {
|
||||
position:absolute;
|
||||
bottom:85px;
|
||||
left:120px;
|
||||
color:#BBB;
|
||||
line-height:1;
|
||||
text-shadow:none;
|
||||
}
|
||||
.list .slide > div {
|
||||
width:1024px;
|
||||
height:640px;
|
||||
background:none;
|
||||
}
|
||||
.list .slide > div,
|
||||
.list .slide > div:hover {
|
||||
.list .slide > div:hover,
|
||||
.list .slide:target > div {
|
||||
-webkit-box-shadow:none;
|
||||
-moz-box-shadow:none;
|
||||
box-shadow:none;
|
||||
}
|
||||
.list .slide section {
|
||||
-webkit-transform:none;
|
||||
-moz-transform:none;
|
||||
-ms-transform:none;
|
||||
-o-transform:none;
|
||||
transform:none;
|
||||
-webkit-transform:scale(1);
|
||||
-moz-transform:scale(1);
|
||||
-ms-transform:scale(1);
|
||||
-o-transform:scale(1);
|
||||
transform:scale(1);
|
||||
}
|
||||
.list .slide:after {
|
||||
position:absolute;
|
||||
bottom:85px;
|
||||
left:120px;
|
||||
color:#BBB;
|
||||
line-height:1;
|
||||
text-shadow:none;
|
||||
}
|
Loading…
Reference in New Issue