Software zum Installieren eines Smart-Mirror Frameworks , zum Nutzen von hochschulrelevanten Informationen, auf einem Raspberry-Pi.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

weather-icons-core.less 1.9KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. // Base Variables
  2. @wi-path: "../font";
  3. @wi-version: "2.0";
  4. @wi-css-prefix: wi;
  5. @wi-font-family: weathericons;
  6. @font-face {
  7. font-family: '@{wi-font-family}';
  8. src: url('@{wi-path}/@{wi-font-family}-regular-webfont.eot');
  9. src: url('@{wi-path}/@{wi-font-family}-regular-webfont.eot?#iefix') format('embedded-opentype'),
  10. url('@{wi-path}/@{wi-font-family}-regular-webfont.woff2') format('woff2'),
  11. url('@{wi-path}/@{wi-font-family}-regular-webfont.woff') format('woff'),
  12. url('@{wi-path}/@{wi-font-family}-regular-webfont.ttf') format('truetype'),
  13. url('@{wi-path}/@{wi-font-family}-regular-webfont.svg#weather_iconsregular') format('svg');
  14. font-weight: normal;
  15. font-style: normal;
  16. }
  17. .@{wi-css-prefix} {
  18. display: inline-block;
  19. font-family: '@{wi-font-family}';
  20. font-style: normal;
  21. font-weight: normal;
  22. line-height: 1;
  23. -webkit-font-smoothing: antialiased;
  24. -moz-osx-font-smoothing: grayscale;
  25. }
  26. .@{wi-css-prefix}-fw {
  27. text-align: center;
  28. width: 1.4em;
  29. }
  30. .wi-icon-rotate(@degrees, @rotation) {
  31. filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=@rotation);
  32. -webkit-transform: rotate(@degrees);
  33. -ms-transform: rotate(@degrees);
  34. transform: rotate(@degrees);
  35. }
  36. .wi-icon-flip(@horiz, @vert, @rotation) {
  37. filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=@rotation, mirror=1);
  38. -webkit-transform: scale(@horiz, @vert);
  39. -ms-transform: scale(@horiz, @vert);
  40. transform: scale(@horiz, @vert);
  41. }
  42. .@{wi-css-prefix}-rotate-90 { .wi-icon-rotate(90deg, 1); }
  43. .@{wi-css-prefix}-rotate-180 { .wi-icon-rotate(180deg, 2); }
  44. .@{wi-css-prefix}-rotate-270 { .wi-icon-rotate(270deg, 3); }
  45. .@{wi-css-prefix}-flip-horizontal { .wi-icon-flip(-1, 1, 0); }
  46. .@{wi-css-prefix}-flip-vertical { .wi-icon-flip(1, -1, 2); }