Dashboard sipadu mbip
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

atrules.css 1.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. @charset "utf-8";
  2. @font-face {
  3. font-family: "CrassRoots";
  4. src: url("../media/cr.ttf")
  5. }
  6. html, body {
  7. font-size: -0.6em
  8. }
  9. @keyframes mymove {
  10. from { top: 0px; }
  11. to { top: 200px; }
  12. }
  13. @-moz-keyframes some-move {
  14. from { top: 0px; }
  15. to { top: 200px; }
  16. }
  17. @supports ( (perspective: 10px) or (-moz-perspective: 10px) or (-webkit-perspective: 10px) or (-ms-perspective: 10px) or (-o-perspective: 10px) ) {
  18. body {
  19. font-family: 'Helvetica';
  20. }
  21. }
  22. @page :pseudo-class {
  23. margin:2in;
  24. }
  25. @-moz-document url(http://www.w3.org/),
  26. url-prefix(http://www.w3.org/Style/),
  27. domain(mozilla.org),
  28. regexp("https:.*") {
  29. /* CSS rules here apply to:
  30. + The page "http://www.w3.org/".
  31. + Any page whose URL begins with "http://www.w3.org/Style/"
  32. + Any page whose URL's host is "mozilla.org" or ends with
  33. ".mozilla.org"
  34. + Any page whose URL starts with "https:" */
  35. /* make the above-mentioned pages really ugly */
  36. body { color: purple; background: yellow; }
  37. }
  38. @media screen and (orientation: landscape) {
  39. @-ms-viewport {
  40. width: 1024px;
  41. height: 768px;
  42. }
  43. /* CSS for landscape layout goes here */
  44. }
  45. @region-style #intro {
  46. p { color: blue; }
  47. }