MediaWiki:Print.css: Difference between revisions
Jump to navigation
Jump to search
Created page with '→CSS placed here will affect the print output: →Mārim tabulas: .styled_table { width: 80%; margin-left: 40px; border-collapse: collapse; } .styled_table th { backgroun…' |
No edit summary |
||
(13 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
/* CSS placed here will affect the print output */ | /* CSS placed here will affect the print output */ | ||
/* save ink, remove backgrounds and shadows*/ | |||
body { background: White; } | |||
#shbox { | |||
background: White; | |||
width:98%; | |||
border-width:1px; | |||
border-color:lightgrey; | |||
padding: 5px 5px 5px 10px; | |||
border-style:solid; | |||
font-size: 0.9em; | |||
-webkit-border-radius: 5px; | |||
-moz-border-radius: 5px; | |||
border-radius: 5px; | |||
-webkit-box-shadow: none; | |||
-moz-box-shadow: none; | |||
box-shadow: none; | |||
} | |||
#shtable { | |||
background: White; | |||
width:98%; | |||
border-width:1px; | |||
border-color:lightgrey; | |||
padding: 5px 5px 5px 10px; | |||
border-style:solid; | |||
font-size: 0.9em; | |||
-webkit-border-radius: none; | |||
-moz-border-radius: none; | |||
border-radius: none; | |||
-webkit-box-shadow: none; | |||
-moz-box-shadow: none; | |||
box-shadow: none; | |||
} | |||
#toc { | |||
background: White; | |||
width:80%; | |||
border: 1px solid #dddddd; | |||
-webkit-box-shadow: none; | |||
-moz-box-shadow: none; | |||
box-shadow: none; | |||
} | |||
pre { | |||
background: White ; | |||
border: dashed; | |||
border: 1px dashed #aaaaaa; | |||
-webkit-border-radius: 5px; | |||
-moz-border-radius: 5px; | |||
border-radius: 5px; | |||
-webkit-box-shadow: 0px 0px 0px #c0c0c0; | |||
-moz-box-shadow: 0px 0px 0px #c0c0c0; | |||
box-shadow: 0px 0px 0px #c0c0c0; | |||
overflow: hidden; | |||
} | |||
.bullets { | |||
padding: 15px; | |||
} | |||
ul.bullets li { | |||
margin-left: 30px; | |||
} | |||
#column-one { | |||
position: absolute; | |||
top: 0; | |||
left: 0; | |||
z-index: 4; | |||
} | |||
#p-personal { | |||
display: fixed; | |||
top: 0px; | |||
left: 600px; | |||
} | |||
/* Mārim tabulas */ | /* Mārim tabulas */ | ||
.styled_table { | .styled_table { | ||
width: | width: 99%; | ||
margin-left: | margin-left: 1%; | ||
border-collapse: collapse; | border-collapse: collapse; | ||
-webkit-box-shadow: none; | |||
-moz-box-shadow: none; | |||
box-shadow: none; | |||
} | } | ||
.styled_table th { | .styled_table th { | ||
background-color: #cccccc; | background-color: #cccccc; | ||
} | } | ||
.styled_table tr { | .styled_table tr { | ||
background-color: | background-color: White; | ||
border-bottom: 2px solid # | border-bottom: 2px solid #eeeeee; | ||
} | } | ||
.styled_table td { | .styled_table td { | ||
border-bottom: 2px solid # | border-bottom: 2px solid #eeeeee; | ||
vertical-align: top; | vertical-align: top; | ||
padding: 5px; | padding: 5px; | ||
} | |||
.styled_table td+td { | .styled_table td+td { | ||
border-left: 2px solid # | border-left: 2px solid #eeeeee; | ||
} |
Latest revision as of 15:57, 6 May 2010
/* CSS placed here will affect the print output */ /* save ink, remove backgrounds and shadows*/ body { background: White; } #shbox { background: White; width:98%; border-width:1px; border-color:lightgrey; padding: 5px 5px 5px 10px; border-style:solid; font-size: 0.9em; -webkit-border-radius: 5px; -moz-border-radius: 5px; border-radius: 5px; -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; } #shtable { background: White; width:98%; border-width:1px; border-color:lightgrey; padding: 5px 5px 5px 10px; border-style:solid; font-size: 0.9em; -webkit-border-radius: none; -moz-border-radius: none; border-radius: none; -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; } #toc { background: White; width:80%; border: 1px solid #dddddd; -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; } pre { background: White ; border: dashed; border: 1px dashed #aaaaaa; -webkit-border-radius: 5px; -moz-border-radius: 5px; border-radius: 5px; -webkit-box-shadow: 0px 0px 0px #c0c0c0; -moz-box-shadow: 0px 0px 0px #c0c0c0; box-shadow: 0px 0px 0px #c0c0c0; overflow: hidden; } .bullets { padding: 15px; } ul.bullets li { margin-left: 30px; } #column-one { position: absolute; top: 0; left: 0; z-index: 4; } #p-personal { display: fixed; top: 0px; left: 600px; } /* Mārim tabulas */ .styled_table { width: 99%; margin-left: 1%; border-collapse: collapse; -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; } .styled_table th { background-color: #cccccc; } .styled_table tr { background-color: White; border-bottom: 2px solid #eeeeee; } .styled_table td { border-bottom: 2px solid #eeeeee; vertical-align: top; padding: 5px; } .styled_table td+td { border-left: 2px solid #eeeeee; }