123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141 |
- footer {
- margin: 50px 0;
- }
-
- .text-center() {
- text-align: center;
- }
-
- .border-radius(@radius) {
- -webkit-border-radius: @radius;
- -moz-border-radius: @radius;
- border-radius: @radius;
- }
-
- .no-text-select {
- -webkit-touch-callout: none;
- -webkit-user-select: none;
- -khtml-user-select: none;
- -moz-user-select: none;
- -ms-user-select: none;
- user-select: none;
- }
- /**
- ========================================================
- **/
-
- .md-group-button {
- margin: 0;
- padding: 0;
- min-height: 0;
- line-height: 30px;
- }
-
- .md-group-button-checked {
- background-color: rgba(0, 0, 0, 0.12);
- }
-
- .md-sidebar {
- height: 100%;
- min-height: 150px;
- }
-
- .md-main-content {
- margin-left: 5px;
- }
-
- .welcome-message {
- font-size: large;
- }
-
- @media (max-width: 479px){
- .seven-cols .col-sm-1 {
- width: 100%;
- *width: 100%;
- }
- }
-
- @media (min-width: 480px) {
- .seven-cols .col-sm-1 {
- width: 14.285714285714285714285714285714%;
- *width: 14.285714285714285714285714285714%;
- }
- }
-
- @calendar-height: 24*30px;
- @grey-color: #505050;
-
- .day-column {
- .text-center();
- border-left: solid @grey-color 1px;
- border-top: solid @grey-color 1px;
- border-bottom: solid @grey-color 1px;
- height: @calendar-height;
- padding: 0;
- }
-
- .day-column-header {
- background-color: darkorange;
- color: #2e6da4;
- font-weight: bold;
- }
-
- .day-column-header-current {
- color: red;
- }
-
- .day-column-header-day {
- padding-top: 5px;
- }
-
- .day-column-header-date {
- padding-bottom: 5px;
- border-bottom: solid @grey-color 1px;
- }
-
- .day-column-course {
- position: absolute;
- background-color: cadetblue;
- width: 100%;
- border-top: solid @grey-color 1px;
- border-bottom: solid @grey-color 1px;
- overflow: hidden;
- cursor: pointer;
- }
-
- .day-column-courses {
- height: @calendar-height - 50px;
- position: relative;
- }
-
- .day-column-course-name {
- font-weight: bold;
- }
-
- .days-container {
- padding-left: 0;
- width: 90%;
- }
-
- .hour-column {
- .day-column();
- margin-top: 50px;
- height: @calendar-height - 50px;
- width: 50px;
- }
-
- .day-column-hours {
- .day-column-courses();
- }
-
- .day-column-hour {
- position: absolute;
- width: 100%;
- margin-top: -10px;
- text-align: right;
- }
-
- .sidebar-group-list {
- height: 100%;
- min-height: 75px;
- }
|