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.

leipzig-lines.css 2.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. /*
  2. This stylesheet contains the css classes needed to colorize the line
  3. labels in the display.
  4. To customize this use as class name the name of the line without any
  5. blanks and all lower case. For instance "Bus N9" becomes ".busn9"
  6. */
  7. /*
  8. All suburban lines share the same settings so they are listed with commas
  9. separating them.
  10. The border radius is slightly bigger than the font size. This will result
  11. in nice round corners.
  12. */
  13. .s1, .s2, .s3, .s4, .s5, .s5x, .s6 {
  14. background-color: #1E944B;
  15. border-radius: 1.25rem;
  16. color: white;
  17. width: 2em;
  18. }
  19. /*
  20. The tram lines 1, 3 and 3e use all a green background color and a white
  21. text color. The width of the line symbol is equal to the font size. This
  22. will result in a square symbol.
  23. */
  24. .str1, .str3, .str3e {
  25. background-color: #5EB246;
  26. color: white;
  27. width: 1em;
  28. }
  29. .str2, .str8, .str9 {
  30. background-color: #F8C623;
  31. color: black;
  32. width: 1em;
  33. }
  34. .str14 {
  35. background-color: #00A8DB;
  36. color: black;
  37. width: 1em;
  38. }
  39. .str4, .str7, .str12, .str15 {
  40. background-color: #174489;
  41. color: white;
  42. width: 1em;
  43. }
  44. .str10, .str11, .str16, .str51, .str56 {
  45. background-color: #D8232A;
  46. color: white;
  47. width: 1em;
  48. }
  49. /*
  50. Bus symbols should be displayed as a circle. That’s why the width and the
  51. border-radius are both 1em.
  52. */
  53. .bus65,
  54. .bus70, .bus72, .bus73, .bus73e, .bus74, .bus74e,
  55. .bus80, .bus81, .bus82, .bus89,
  56. .bus90 {
  57. background-color: #912A7D;
  58. border-radius: 1em;
  59. color: white;
  60. width: 1em;
  61. }
  62. .bus61, .bus63,
  63. .bus75, .bus79,
  64. .bus83, .bus86, .bus87, .bus88,
  65. .bus91, .bus91e,
  66. .bus100, .bus105, .bus106, .bus107, .bus108,
  67. .bus120, .bus130, .bus131, .bus135, .bus141, .bus145,
  68. .bus161, .bus163, .bus164, .bus165,
  69. .bus172, .bus175, .bus176,
  70. .bus190, .bus191, .bus192, .bus195, .bus196, .bus197,
  71. .bus202, .bus207, .bus215,
  72. .bus412,
  73. .bus645, .bus690, .bus691,
  74. .bus724, .bus743 {
  75. background-color: #A3A3A2;
  76. border-radius: 1em;
  77. color: white;
  78. width: 1em;
  79. }
  80. .busn1, .busn1e, .busn5, .busn5e, .busn8, .busn8e {
  81. background-color: #EE9F2E;
  82. border-radius: 1em;
  83. color: #164585;
  84. width: 1em;
  85. }
  86. .busn2, .busn2e, .busn7, .busn7e {
  87. background-color: #FBDE89;
  88. border-radius: 1em;
  89. color: #164585;
  90. width: 1em;
  91. }
  92. .busn3, .busn3e, .busn4, .busn4e, .busn6, .busn6e, .busn9, .busn9e {
  93. background-color: #FCD120;
  94. border-radius: 1em;
  95. color: #164585;
  96. width: 1em;
  97. }