kcc-gem-theme 0.6.0 → 0.6.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/_includes/styles/fonts.html +10 -0
- data/_includes/styles/vendor.html +3 -9
- data/assets/css/kcc-theme.css +1 -1
- data/assets/scss/0-tools/_vars.scss +1 -0
- data/assets/scss/kcc-theme.scss +0 -12
- metadata +2 -10
- data/assets/scss/0-tools/_ie-only.scss +0 -37
- data/assets/scss/2-modules/_archive.scss +0 -13
- data/assets/scss/2-modules/_bios.scss +0 -22
- data/assets/scss/2-modules/_events.scss +0 -6
- data/assets/scss/2-modules/_fb-widget.scss +0 -4
- data/assets/scss/2-modules/_featured-videos.scss +0 -17
- data/assets/scss/2-modules/_latest-news-widget.scss +0 -1045
- data/assets/scss/2-modules/_playlist.scss +0 -272
- data/assets/scss/2-modules/_timeline.scss +0 -28
@@ -1,272 +0,0 @@
|
|
1
|
-
|
2
|
-
#yt_wrapper {
|
3
|
-
display: flex;
|
4
|
-
flex-wrap: wrap;
|
5
|
-
}
|
6
|
-
|
7
|
-
@media screen and (min-width: 992px) {
|
8
|
-
#yt_wrapper {
|
9
|
-
flex-wrap: nowrap;
|
10
|
-
}
|
11
|
-
}
|
12
|
-
|
13
|
-
#yt_player {
|
14
|
-
flex-direction: column;
|
15
|
-
height: 50vh;
|
16
|
-
left: 0;
|
17
|
-
margin-top: 10px;
|
18
|
-
top: 0;
|
19
|
-
width: 100vw;
|
20
|
-
}
|
21
|
-
|
22
|
-
@media screen and (min-width: 1200px) {
|
23
|
-
#yt_player {
|
24
|
-
width: 50vw;
|
25
|
-
}
|
26
|
-
}
|
27
|
-
|
28
|
-
#yt_list {
|
29
|
-
flex-direction: column;
|
30
|
-
justify-content: center;
|
31
|
-
height: 50.5vh;
|
32
|
-
margin-left: 0;
|
33
|
-
width: 100vw;
|
34
|
-
top: 0;
|
35
|
-
right: 0;
|
36
|
-
overflow-y: scroll;
|
37
|
-
}
|
38
|
-
|
39
|
-
@media screen and (min-width: 992px) {
|
40
|
-
#yt_list {
|
41
|
-
margin-left: 20px;
|
42
|
-
}
|
43
|
-
}
|
44
|
-
|
45
|
-
@media screen and (min-width: 1200px) {
|
46
|
-
#yt_list {
|
47
|
-
width: 50vw;
|
48
|
-
}
|
49
|
-
}
|
50
|
-
|
51
|
-
.yt-item {
|
52
|
-
background: #fff;
|
53
|
-
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
|
54
|
-
height: auto;
|
55
|
-
width: calc(98% - 30px);
|
56
|
-
float: left;
|
57
|
-
padding: 15px;
|
58
|
-
margin-bottom: 10px;
|
59
|
-
margin-left: 35px;
|
60
|
-
margin-right: 10px;
|
61
|
-
margin-top: 10px;
|
62
|
-
}
|
63
|
-
|
64
|
-
@media screen and (orientation: portrait) and (max-width: 468px) {
|
65
|
-
.yt-item {
|
66
|
-
height: auto;
|
67
|
-
width: calc(95% - 30px);
|
68
|
-
}
|
69
|
-
}
|
70
|
-
|
71
|
-
@media screen and (min-width: 992px) {
|
72
|
-
.yt-item {
|
73
|
-
margin-left: 40px;
|
74
|
-
width: calc(98% - 50px);
|
75
|
-
}
|
76
|
-
}
|
77
|
-
|
78
|
-
a > .yt-item > img {
|
79
|
-
width: 25%;
|
80
|
-
float: left;
|
81
|
-
margin-right: 20px;
|
82
|
-
}
|
83
|
-
.yt-item:hover {
|
84
|
-
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
|
85
|
-
}
|
86
|
-
div#channel_input {
|
87
|
-
position: fixed;
|
88
|
-
left: 10px;
|
89
|
-
}
|
90
|
-
div#channel_input > input,
|
91
|
-
div#channel_input > button {
|
92
|
-
display: inline-block;
|
93
|
-
padding: 0.2em;
|
94
|
-
font-weight: 700;
|
95
|
-
font-size: 2em;
|
96
|
-
}
|
97
|
-
|
98
|
-
div#channel_input > input#user_name {
|
99
|
-
width: 250px;
|
100
|
-
color: #111;
|
101
|
-
background: rgba(255, 255, 255, 0.7);
|
102
|
-
border: 1px solid #dfab12;
|
103
|
-
transition: 112ms;
|
104
|
-
}
|
105
|
-
div#channel_input > input#user_name:focus,
|
106
|
-
button#sbm:focus {
|
107
|
-
outline: 1px solid #000;
|
108
|
-
box-shadow: 0 0 10px #fff;
|
109
|
-
}
|
110
|
-
div#channel_input > input#user_name.error {
|
111
|
-
color: #d33;
|
112
|
-
border-color: #d33;
|
113
|
-
text-decoration: line-through;
|
114
|
-
background: rgba(0, 0, 0, 0.5);
|
115
|
-
}
|
116
|
-
div#channel_input > button#sbm {
|
117
|
-
color: #dfab12;
|
118
|
-
background: rgba(0, 0, 0, 0.7);
|
119
|
-
border: 1px solid #dfab12;
|
120
|
-
}
|
121
|
-
div#channel_input > div.info {
|
122
|
-
display: none;
|
123
|
-
width: calc(100% - 2em);
|
124
|
-
font-size: 1em;
|
125
|
-
line-height: 1.2em;
|
126
|
-
background: rgba(0, 0, 0, 0.7);
|
127
|
-
color: #fff;
|
128
|
-
padding: 1em;
|
129
|
-
transition: 225ms;
|
130
|
-
}
|
131
|
-
button#load-more{
|
132
|
-
display: block;
|
133
|
-
margin: 1em auto;
|
134
|
-
pading: .8em 1em;
|
135
|
-
font-size: 2em;
|
136
|
-
border: 1px solid;
|
137
|
-
outline: none;
|
138
|
-
border-radius:1em;
|
139
|
-
transition: 225ms;
|
140
|
-
}
|
141
|
-
button#load-more:hover{
|
142
|
-
cursor: pointer;
|
143
|
-
background:rgba(0,0,0,1);
|
144
|
-
color: #dfab12;
|
145
|
-
border-color: #dfab12;
|
146
|
-
}
|
147
|
-
@media screen and (orientation: portrait) {
|
148
|
-
#yt_player {
|
149
|
-
width: 100%;
|
150
|
-
height: 40vh;
|
151
|
-
}
|
152
|
-
#yt_list {
|
153
|
-
height: 59vh;
|
154
|
-
width: 100%;
|
155
|
-
top: auto;
|
156
|
-
bottom: 0;
|
157
|
-
left: 0;
|
158
|
-
}
|
159
|
-
}
|
160
|
-
|
161
|
-
.playlist__count {
|
162
|
-
margin-left: -10vw;
|
163
|
-
position: relative;
|
164
|
-
top: 1.5rem;
|
165
|
-
left: -15px;
|
166
|
-
}
|
167
|
-
|
168
|
-
@media screen and (min-width: 360px) {
|
169
|
-
.playlist__count {
|
170
|
-
margin-left: -9vw;
|
171
|
-
}
|
172
|
-
}
|
173
|
-
|
174
|
-
@media screen and (min-width: 375px) {
|
175
|
-
.playlist__count {
|
176
|
-
margin-left: -9vw;
|
177
|
-
}
|
178
|
-
}
|
179
|
-
|
180
|
-
@media screen and (min-width: 390px) {
|
181
|
-
.playlist__count {
|
182
|
-
margin-left: -8vw;
|
183
|
-
}
|
184
|
-
}
|
185
|
-
|
186
|
-
@media screen and (min-width: 410px) {
|
187
|
-
.playlist__count {
|
188
|
-
margin-left: -8vw;
|
189
|
-
}
|
190
|
-
}
|
191
|
-
|
192
|
-
@media screen and (min-width: 430px) {
|
193
|
-
.playlist__count {
|
194
|
-
margin-left: -7vw;
|
195
|
-
}
|
196
|
-
}
|
197
|
-
|
198
|
-
@media screen and (min-width: 490px) {
|
199
|
-
.playlist__count {
|
200
|
-
margin-left: -6vw;
|
201
|
-
}
|
202
|
-
}
|
203
|
-
|
204
|
-
@media screen and (min-width: 576px) {
|
205
|
-
.playlist__count {
|
206
|
-
margin-left: -5vw;
|
207
|
-
}
|
208
|
-
}
|
209
|
-
|
210
|
-
@media screen and (min-width: 700px) {
|
211
|
-
.playlist__count {
|
212
|
-
margin-left: -4.5vw;
|
213
|
-
}
|
214
|
-
}
|
215
|
-
|
216
|
-
@media screen and (orientation: portrait) and (min-width: 768px) {
|
217
|
-
.playlist__count {
|
218
|
-
margin-left: -4vw;
|
219
|
-
}
|
220
|
-
}
|
221
|
-
|
222
|
-
@media screen and (orientation: portrait) and (min-width: 880px) {
|
223
|
-
.playlist__count {
|
224
|
-
margin-left: -3.5vw;
|
225
|
-
}
|
226
|
-
}
|
227
|
-
|
228
|
-
@media screen and (min-width: 992px) {
|
229
|
-
.playlist__count {
|
230
|
-
margin-left: -35px;
|
231
|
-
}
|
232
|
-
}
|
233
|
-
|
234
|
-
.playlist__title {
|
235
|
-
font-size: 1.2rem;
|
236
|
-
}
|
237
|
-
|
238
|
-
@media screen and (min-width: 992px) {
|
239
|
-
.playlist__title {
|
240
|
-
font-size: 1.3rem;
|
241
|
-
}
|
242
|
-
}
|
243
|
-
|
244
|
-
@media screen and (min-width: 1400px) {
|
245
|
-
.playlist__title {
|
246
|
-
font-size: 1.4rem;
|
247
|
-
}
|
248
|
-
}
|
249
|
-
|
250
|
-
.playlist__title--shift {
|
251
|
-
position: relative;
|
252
|
-
top: -.5rem;
|
253
|
-
margin-left: 35%;
|
254
|
-
}
|
255
|
-
|
256
|
-
.playlist__more-btn--wrapper {
|
257
|
-
text-align: center;
|
258
|
-
margin-top: 30px;
|
259
|
-
}
|
260
|
-
|
261
|
-
.playlist__more-btn {
|
262
|
-
margin-top: 20px;
|
263
|
-
}
|
264
|
-
|
265
|
-
.playlist__blue-play {
|
266
|
-
clear: left;
|
267
|
-
width: 2rem;
|
268
|
-
height: 2rem;
|
269
|
-
margin-left: 5%;
|
270
|
-
margin-top: 5%;
|
271
|
-
margin-right: 0;
|
272
|
-
}
|
@@ -1,28 +0,0 @@
|
|
1
|
-
|
2
|
-
.timeline__scroll {
|
3
|
-
height: 800px;
|
4
|
-
overflow-y: scroll;
|
5
|
-
}
|
6
|
-
|
7
|
-
.timeline__wrapper {
|
8
|
-
margin-left: auto;
|
9
|
-
margin-right: auto;
|
10
|
-
}
|
11
|
-
|
12
|
-
@media screen and (min-width: 768px) {
|
13
|
-
.timeline__wrapper {
|
14
|
-
width: 80%;
|
15
|
-
}
|
16
|
-
}
|
17
|
-
|
18
|
-
@media screen and (min-width: 992px) {
|
19
|
-
.timeline__wrapper {
|
20
|
-
width: 70%;
|
21
|
-
}
|
22
|
-
}
|
23
|
-
|
24
|
-
@media screen and (min-width: 1200px) {
|
25
|
-
.timeline__wrapper {
|
26
|
-
width: 60%;
|
27
|
-
}
|
28
|
-
}
|