Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

app.less 2.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  1. footer {
  2. margin: 50px 0;
  3. }
  4. .text-center() {
  5. text-align: center;
  6. }
  7. .border-radius(@radius) {
  8. -webkit-border-radius: @radius;
  9. -moz-border-radius: @radius;
  10. border-radius: @radius;
  11. }
  12. .no-text-select {
  13. -webkit-touch-callout: none;
  14. -webkit-user-select: none;
  15. -khtml-user-select: none;
  16. -moz-user-select: none;
  17. -ms-user-select: none;
  18. user-select: none;
  19. }
  20. /**
  21. ========================================================
  22. **/
  23. .md-group-button {
  24. margin: 0;
  25. padding: 0;
  26. min-height: 0;
  27. line-height: 30px;
  28. }
  29. .md-group-button-checked {
  30. background-color: rgba(0, 0, 0, 0.12);
  31. }
  32. .md-sidebar md-content {
  33. height: 100%;
  34. min-height: 150px;
  35. }
  36. .md-main-content {
  37. margin-left: 5px;
  38. }
  39. .welcome-message {
  40. font-size: large;
  41. }
  42. @media (max-width: 479px){
  43. .seven-cols .col-sm-1 {
  44. width: 100%;
  45. *width: 100%;
  46. }
  47. }
  48. @media (min-width: 480px) {
  49. .seven-cols .col-sm-1 {
  50. width: 14.285714285714285714285714285714%;
  51. *width: 14.285714285714285714285714285714%;
  52. }
  53. }
  54. @calendar-height: 24*30px;
  55. @grey-color: #505050;
  56. @course-font-size: 12px;
  57. .day-column {
  58. .text-center();
  59. border-left: solid @grey-color 1px;
  60. border-top: solid @grey-color 1px;
  61. border-bottom: solid @grey-color 1px;
  62. height: @calendar-height;
  63. padding: 0;
  64. }
  65. .day-column-header {
  66. background-color: darkorange;
  67. color: #2e6da4;
  68. font-weight: bold;
  69. }
  70. .day-column-header-current {
  71. color: red;
  72. }
  73. .day-column-header-today {
  74. color: green;
  75. }
  76. .day-column-header-day {
  77. padding-top: 5px;
  78. }
  79. .day-column-header-date {
  80. padding-bottom: 5px;
  81. border-bottom: solid @grey-color 1px;
  82. }
  83. .day-column-course {
  84. position: absolute;
  85. background-color: cadetblue;
  86. width: 100%;
  87. border-top: solid @grey-color 1px;
  88. border-bottom: solid @grey-color 1px;
  89. overflow: hidden;
  90. cursor: pointer;
  91. }
  92. .day-column-courses {
  93. height: @calendar-height - 50px;
  94. position: relative;
  95. }
  96. .day-column-course-name {
  97. font-weight: bold;
  98. font-size: @course-font-size;
  99. }
  100. .day-column-room-name {
  101. font-size: @course-font-size;
  102. text-decoration: underline;
  103. }
  104. .day-column-staff-name {
  105. font-size: @course-font-size;
  106. font-style: italic;
  107. }
  108. .day-column-course-hour {
  109. font-size: @course-font-size;
  110. }
  111. .days-container {
  112. padding-left: 0;
  113. width: 90%;
  114. }
  115. .hour-column {
  116. .day-column();
  117. margin-top: 50px;
  118. height: @calendar-height - 50px;
  119. width: 50px;
  120. }
  121. .day-column-hours {
  122. .day-column-courses();
  123. }
  124. .day-column-hour {
  125. position: absolute;
  126. width: 100%;
  127. margin-top: -10px;
  128. text-align: right;
  129. }
  130. .sidebar-group-list {
  131. height: 100%;
  132. min-height: 75px;
  133. }