1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
|
body .schedule {
&.scroll-container {
overflow: hidden;
overflow-x: scroll;
}
.scroll-element {
position: relative;
}
.room {
overflow: hidden;
position: relative;
height: 100px;
}
.now {
position: absolute;
pointer-events: none;
height: 100%;
display: flex;
left: 0;
z-index: 5;
.overlay {
width: 150px;
height: 100%;
background-color: @schedule-now-bg;
}
.label {
font-size: 14px;
padding-left: 5px;
color: @schedule-now;
}
}
.block {
overflow: hidden;
position: absolute;
top: 0;
height: 100px;
/* and now for small screens: */
@media (max-width: @screen-xs-max) {
/*height: 75px; disabled, at it did not work as expected --Andi */
}
a:hover {
text-decoration: none;
}
.inner {
display: block;
padding: 15px;
height: 100%;
}
border: 1px solid @schedule-border;
h3 {
margin: 0;
padding: 0;
font-size: 18px;
/* and now for small screens: */
@media (max-width: @screen-xs-max) {
font-size: 16px;
}
}
h4 {
margin: 3px 0;
color: @schedule-room;
font-size: 14px;
@media (max-width: @screen-xs-max) {
font-size: 15px;
}
}
h5 {
@media (max-width: @screen-xs-max) {
margin: 0;
}
color: @schedule-author;
}
&.event h3 {
overflow: hidden;
}
&.gap {
background-image: url("@{img}/stripes/gap.png");
background-color: @schedule-gap-bg;
color: @schedule-gap;
text-shadow: 0 0 3px @schedule-gap;
}
&.daychange {
background-image: url("@{img}/stripes/gap.png");
background-color: @schedule-daychange-bg;
color: @schedule-daychange;
text-shadow: 0 0 3px @schedule-daychange;
}
&.pause, &.optout {
color: @schedule-pause;
background-color: @schedule-pause-bg;
background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
background-size: 100px;
/* and now for small screens: */
@media (max-width: @screen-xs-max) {
background-size: 72px;
}
}
}
.room.highlight .block {
background-color: @schedule-selected-room;
}
}
|