|
1 | | -.agenda-view{ |
| 1 | +.agenda-view |
| 2 | +{ |
| 3 | + background: $content-bg; |
2 | 4 |
|
| 5 | + .tabs-striped .tabs |
| 6 | + { |
| 7 | + background-color: $top-bar-bg; |
| 8 | + |
| 9 | + .tab-item |
| 10 | + { |
| 11 | + max-width: none; |
| 12 | + } |
| 13 | + } |
| 14 | + |
| 15 | + .tab-title{ |
| 16 | + color: $top-bar-color; |
| 17 | + @include cssCalc("font-size", "#{($font-size)} + 2px"); |
| 18 | + font-weight:400; |
| 19 | + } |
| 20 | + |
| 21 | + .tab-title.tab-item.tab-item-active{ |
| 22 | + |
| 23 | + border-color: $main-menu-bg; |
| 24 | + margin-top: 0px; |
| 25 | + border-width: 0px 0px 4px 0px !important; |
| 26 | + |
| 27 | + .tab-title{ |
| 28 | + font-weight:600; |
| 29 | + } |
| 30 | + |
| 31 | + } |
| 32 | + |
| 33 | + .event-time{ |
| 34 | + margin-top:10px; |
| 35 | + |
| 36 | + .time-from{ |
| 37 | + display: block; |
| 38 | + @include cssCalc("font-size", "#{($font-size)} + 2px"); |
| 39 | + } |
| 40 | + |
| 41 | + .time-to{ |
| 42 | + @include cssCalc("font-size", "#{($font-size)} - 1px"); |
| 43 | + color: lighten($content-color, 10); |
| 44 | + display: block; |
| 45 | + } |
| 46 | + } |
| 47 | + |
| 48 | + .event-content |
| 49 | + { |
| 50 | + text-decoration: none; |
| 51 | + background-color: darken($global-bg-color, 5); |
| 52 | + background-size: 73vw; |
| 53 | + background-position-y: 15%; |
| 54 | + min-height: 40vw; |
| 55 | + padding: 14px; |
| 56 | + border-radius: 5px; |
| 57 | + position: relative; |
| 58 | + background-size: 100%; |
| 59 | + |
| 60 | + &.global{ |
| 61 | + min-height: 20vw; |
| 62 | + } |
| 63 | + |
| 64 | + &.talk, &.workshop, &.keynote |
| 65 | + { |
| 66 | + margin-bottom: 25px; |
| 67 | + border-radius: 5px 5px 0px 0px; |
| 68 | + |
| 69 | + .event-title, .event-room{ |
| 70 | + color: $event-color; |
| 71 | + } |
| 72 | + } |
| 73 | + |
| 74 | + &.talk:after, &.workshop:after, &.keynote:after { |
| 75 | + content: ""; |
| 76 | + display: block; |
| 77 | + position: absolute; |
| 78 | + top: 0; |
| 79 | + left: 0; |
| 80 | + height: 100%; |
| 81 | + width: 100%; |
| 82 | + border-radius: 5px 5px 0px 0px; |
| 83 | + } |
| 84 | + |
| 85 | + &.talk:after{ |
| 86 | + background-color: rgba($talk-bg-color, 0.6); |
| 87 | + } |
| 88 | + &.workshop:after{ |
| 89 | + background-color: rgba($workshop-bg-color, 0.6); |
| 90 | + } |
| 91 | + &.keynote:after{ |
| 92 | + background-color: rgba($keynote-bg-color, 0.6); |
| 93 | + } |
| 94 | + |
| 95 | + |
| 96 | + .event-title{ |
| 97 | + @include cssCalc("font-size", "#{($font-size)} + 4px"); |
| 98 | + font-weight:500; |
| 99 | + margin:0px; |
| 100 | + position:relative; |
| 101 | + z-index: 100; |
| 102 | + } |
| 103 | + |
| 104 | + .event-room{ |
| 105 | + font-size:$font-size; |
| 106 | + z-index: 100; |
| 107 | + position:relative; |
| 108 | + margin-bottom:0px; |
| 109 | + } |
| 110 | + |
| 111 | + .event-speakers |
| 112 | + { |
| 113 | + z-index: 100; |
| 114 | + position:relative; |
| 115 | + font-size:$font-size; |
| 116 | + font-weight:500; |
| 117 | + margin-bottom:0px; |
| 118 | + * |
| 119 | + { |
| 120 | + color:$event-color; |
| 121 | + } |
| 122 | + } |
| 123 | + |
| 124 | + .event-type-tag |
| 125 | + { |
| 126 | + position: absolute; |
| 127 | + bottom: -25px; |
| 128 | + left: 0px; |
| 129 | + width: 100%; |
| 130 | + border-radius: 0px 0px 4px 4px; |
| 131 | + height: 25px; |
| 132 | + line-height: 25px; |
| 133 | + padding: 0px 14px; |
| 134 | + |
| 135 | + &.keynote-event |
| 136 | + { |
| 137 | + background-color: darken($keynote-bg-color, 10); |
| 138 | + text-transform: capitalize; |
| 139 | + font-weight: 500; |
| 140 | + color: $event-color; |
| 141 | + } |
| 142 | + |
| 143 | + &.talk-event |
| 144 | + { |
| 145 | + background: darken($talk-bg-color, 10); |
| 146 | + text-transform: capitalize; |
| 147 | + font-weight: 500; |
| 148 | + color: $event-color; |
| 149 | + } |
| 150 | + |
| 151 | + &.workshop-event |
| 152 | + { |
| 153 | + background: darken($workshop-bg-color, 10); |
| 154 | + text-transform: capitalize; |
| 155 | + font-weight: 500; |
| 156 | + color: $event-color; |
| 157 | + } |
| 158 | + } |
| 159 | + |
| 160 | + |
| 161 | + } |
3 | 162 | } |
0 commit comments