sample.txt 824 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. @-ms-keyframes example {
  2. from {background-color: red;}
  3. to {background-color: yellow;}
  4. }
  5. @-o-keyframes example {
  6. from {background-color: red;}
  7. to {background-color: yellow;}
  8. }
  9. div.cls {
  10. color: rgba(51, 170, 51, .1);
  11. width: calc(100% - 80px);
  12. transform: rotate(45deg);
  13. }
  14. img {
  15. filter: grayscale(0.5) blur(10px);
  16. }
  17. a[href*="example"], * [lang^=en] {
  18. font-size: 2em;
  19. }
  20. @supports (display: flex) {
  21. @media screen and (min-width: 900px) {
  22. article {
  23. display: flex;
  24. }
  25. }
  26. }
  27. @media only screen and (orientation: landscape) {
  28. body {
  29. background-color: lightblue;
  30. }
  31. }
  32. @page :first {
  33. margin: 2cm;
  34. }
  35. @font-face {
  36. font-family: "Open Sans";
  37. src: url("/fonts/OpenSans-Regular-webfont.woff2") format("woff2"),
  38. url("/fonts/OpenSans-Regular-webfont.woff") format("woff");
  39. }