5a17febea330d7fda18ff8d528167cd173cd603e
[ptitvelo/web/www.git] / www / plugins-dist / compresseur / lib / csstidy / testing / unit-tests / csst / print-plain / font-face-atmedia.csst
1 --TEST--
2 Test simple CSS print
3 --CSS--
4 /* Based on the original Style Sheet for the fisubsilver v2 Theme for phpBB version 2+
5 Edited by Daz - http://www.forumimages.com - last updated 26-06-03 */
6 /* The content of the posts (body of text) */
7 /* General page style */
8
9 /* begin suggest post */
10 .float-l {
11 float : left ;
12 }
13
14 @font-face {
15 font-family: GillSans;
16 src:url("/generic/fonts/GillSansC.otf") format('opentype');
17 font-style: normal;
18 font-weight: bold;
19 }
20
21 .font-9{
22 font-size: 11px;
23 }
24
25 @media print {
26 .font-9{
27 font-size: 9px;
28 }
29 }
30
31 .form-suggest {
32 height : 200px ;
33 background : #DEE2D0 ;
34 vertical-align : top;
35 }
36
37
38 --PRINT--
39 @media screen {
40 .float-l{float:left}
41 }
42 @font-face{font-family:GillSans;src:url(/generic/fonts/GillSansC.otf) format("opentype");font-style:normal;font-weight:700}
43 @media screen {
44 .font-9{font-size:11px}
45 }
46 @media print {
47 .font-9{font-size:9px}
48 }
49 @media screen {
50 .form-suggest{height:200px;background:#DEE2D0;vertical-align:top}
51 }
52 --SETTINGS--
53 template='high'
54 sort_properties=false
55 sort_selectors=false
56 default_media="@media screen"