minor fixes
[redakcja.git] / apps / wiki / static--wiki--editor--node_modules--grunt-contrib-less--node_modules--less--test / less / css.less
1 @charset "utf-8";
2 div { color: black; }
3 div { width: 99%; }
4
5 * {
6   min-width: 45em;
7 }
8
9 h1, h2 > a > p, h3 {
10   color: unset;
11 }
12
13 div.class {
14   color: blue;
15 }
16
17 div#id {
18   color: green;
19 }
20
21 .class#id {
22   color: purple;
23 }
24
25 .one.two.three {
26   color: grey;
27 }
28
29 @media print {
30   * {
31     font-size: 3em;
32   }
33 }
34
35 @media screen {
36   * {
37     font-size: 10px;
38   }
39 }
40
41 @font-face {
42   font-family: 'Garamond Pro';
43 }
44
45 a:hover, a:link {
46   color: #999;
47 }
48
49 p, p:first-child {
50   text-transform: none;
51 }
52
53 q:lang(no) {
54   quotes: none;
55 }
56
57 p + h1 {
58   font-size: +2.2em;
59 }
60
61 #shorthands {
62   border: 1px solid #000;
63   font: 12px/16px Arial;
64   font: 100%/16px Arial;
65   margin: 1px 0;
66   padding: 0 auto;
67 }
68
69 #more-shorthands {
70   margin: 0.1%;
71   padding: 1px 0 2px 0;
72   font: normal small/20px 'Trebuchet MS', Verdana, sans-serif;
73   font: 0/0 a;
74   border-radius: 5px / 10px;
75 }
76
77 .misc {
78   -moz-border-radius: 2px;
79   display: -moz-inline-stack;
80   width: .1em;
81   background-color: #009998;
82   background: -webkit-gradient(linear, left top, left bottom, from(red), to(blue));
83   .nested-multiple {
84         multiple-semi-colons: yes;;;;;;
85   };
86   filter: alpha(opacity=100);
87   width: auto\9;
88 }
89
90 #important {
91   color: red !important;
92   width: 100%!important;
93   height: 20px ! important;
94 }
95
96 .def-font(@name) {
97     @font-face {
98         font-family: @name
99     }
100 }
101
102 .def-font(font-a);
103 .def-font(font-b);
104
105 .æøå {
106   margin: 0;
107 }