source: Dev/trunk/src/client/util/less/test/css/css-3.css

Last change on this file was 483, checked in by hendrikvanantwerpen, 11 years ago

Added Dojo 1.9.3 release.

File size: 1.8 KB
Line 
1.comma-delimited {
2  text-shadow: -1px -1px 1px #ff0000, 6px 5px 5px #ffff00;
3  -moz-box-shadow: 0pt 0pt 2px rgba(255, 255, 255, 0.4) inset, 0pt 4px 6px rgba(255, 255, 255, 0.4) inset;
4}
5@font-face {
6  font-family: Headline;
7  unicode-range: U+??????, U+0???, U+0-7F, U+A5;
8}
9.other {
10  -moz-transform: translate(0, 11em) rotate(-90deg);
11  transform: rotateX(45deg);
12}
13.item[data-cra_zy-attr1b-ut3=bold] {
14  font-weight: bold;
15}
16p:not([class*="lead"]) {
17  color: black;
18}
19input[type="text"].class#id[attr=32]:not(1) {
20  color: white;
21}
22div#id.class[a=1][b=2].class:not(1) {
23  color: white;
24}
25ul.comma > li:not(:only-child)::after {
26  color: white;
27}
28ol.comma > li:nth-last-child(2)::after {
29  color: white;
30}
31li:nth-child(4n+1),
32li:nth-child(-5n),
33li:nth-child(-n+2) {
34  color: white;
35}
36a[href^="http://"] {
37  color: black;
38}
39a[href$="http://"] {
40  color: black;
41}
42form[data-disabled] {
43  color: black;
44}
45p::before {
46  color: black;
47}
48#issue322 {
49  -webkit-animation: anim2 7s infinite ease-in-out;
50}
51@-webkit-keyframes frames {
52  0% {
53    border: 1px;
54  }
55  5.5% {
56    border: 2px;
57  }
58  100% {
59    border: 3px;
60  }
61}
62@keyframes fontbulger1 {
63  to {
64    font-size: 15px;
65  }
66  from,
67  to {
68    font-size: 12px;
69  }
70  0%,
71  100% {
72    font-size: 12px;
73  }
74}
75.units {
76  font: 1.2rem/2rem;
77  font: 8vw/9vw;
78  font: 10vh/12vh;
79  font: 12vm/15vm;
80  font: 12vmin/15vmin;
81  font: 1.2ch/1.5ch;
82}
83@supports ( box-shadow: 2px 2px 2px black ) or
84          ( -moz-box-shadow: 2px 2px 2px black ) {
85  .outline {
86    box-shadow: 2px 2px 2px black;
87    -moz-box-shadow: 2px 2px 2px black;
88  }
89}
90@-x-document url-prefix(""github.com"") {
91  h1 {
92    color: red;
93  }
94}
95@viewport {
96  font-size: 10px;
97}
98@namespace foo url(http://www.example.com);
99foo | h1 {
100  color: blue;
101}
102foo | * {
103  color: yellow;
104}
105| h1 {
106  color: red;
107}
108* | h1 {
109  color: green;
110}
111h1 {
112  color: green;
113}
Note: See TracBrowser for help on using the repository browser.