kcc-gem-theme 0.3.1 → 0.4.0

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 49c3b457177f6566b57f975abb30e7722a21c7b95a28c46df9c5912f2365e765
4
- data.tar.gz: ffa49358fefd49e016650b06fa8d5cb033d2ab41664961b57434ac888737bdab
3
+ metadata.gz: 444cddc80cc00c0f1acfdf79587e2117f577691dd78ed489a40a60b345557a50
4
+ data.tar.gz: 4b5711a7f5ab5b53cec52858b02c52b10a5946c4884699f25f01a5869977d034
5
5
  SHA512:
6
- metadata.gz: c3cf7f092e57bf0f3f0c189bd4f913f1800161ea9df47ce05433ce43b81d6144017a8c9707d753b24ef2ffd70d92a62d97a6f2c0a199f1259c39a112ae906c54
7
- data.tar.gz: 1ae44cd4ae4ff352230da563cb19e1498c7665d3366dad0aa85753894e4ee68a24a657096fe863246c356bd56c887583356d41504eec0336b87763ae27cc66f2
6
+ metadata.gz: 1b233d59cd78c1e9557d11da9164f10ed6311ee623fd300087dd316a36cb04576e12f61338889fd755bfda4ba2e5cf9f418260ac9db1dea6a4564b89849f5245
7
+ data.tar.gz: 6938018b7db132ef581a5f37f5c48054e05d352620b0ff2ba77f9de2a9fa619b84b7ccc341f7461c87d8601d05bf21cdacb89953f9858f9bbf84c2121ac34643
data/README.md CHANGED
@@ -1,11 +1,8 @@
1
1
  # kcc-gem-theme
2
2
 
3
- Welcome to your new Jekyll theme! In this directory, you'll find the files you need to be able to package up your theme into a gem. Put your layouts in `_layouts`, your includes in `_includes`, your sass files in `_sass` and any other assets in `assets`.
4
-
5
- To experiment with this code, add some sample content and run `bundle exec jekyll serve` – this directory is setup just like a Jekyll site!
6
-
7
- TODO: Delete this and the text above, and describe your gem
3
+ A Jekyll theme for new KCC starts. This theme has the `_layouts`, `_includes`, & `assets/*` (CSS, JS, images).
8
4
 
5
+ This theme's GitHub repo has all the Gulp, npm, & Webpack dependancies included to compile & view it in a browser, just like our normal sites.
9
6
 
10
7
  ## Installation
11
8
 
@@ -31,8 +28,6 @@ Or install it yourself as:
31
28
 
32
29
  ## Usage
33
30
 
34
- TODO: Write usage instructions here. Describe your available layouts, includes, sass and/or assets.
35
-
36
31
  ## Contributing
37
32
 
38
33
  Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/hello. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
@@ -49,4 +44,3 @@ To add a custom directory to your theme-gem, please edit the regexp in `kcc-gem-
49
44
  ## License
50
45
 
51
46
  The theme is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
52
-
@@ -0,0 +1 @@
1
+ 796981f96c26c2507a30709f56f53598 ../assets/scss/kcc-theme.css
data/_data/hash.yml ADDED
@@ -0,0 +1 @@
1
+ 5289a02005c9c97c90cd
@@ -4,7 +4,7 @@
4
4
  <div class="col-lg-6 footer__mobile--margin-bottom">
5
5
  <div class="row">
6
6
  <div class="col-lg-12 text-center">
7
- <a href="http://www.kcc.edu" class="footer-link" target="_blank" rel="noopener"><h5 class="footer-heading">www.kcc.edu</h5></a>
7
+ <a href="{{ site.public-url }}" class="footer-link" target="_blank" rel="noopener"><h5 class="footer-heading">{{ site.public-url | replace: "https://", "" }}</h5></a>
8
8
  </div>
9
9
  </div>
10
10
  <div class="row">
@@ -0,0 +1,4 @@
1
+ {% comment %}
2
+ Placehodler file to prevent liquid errors.
3
+ Gets replaced in project theme is used in.
4
+ {% endcomment %}
@@ -0,0 +1,4 @@
1
+ {% comment %}
2
+ Placehodler file to prevent liquid errors.
3
+ Gets replaced in project theme is used in.
4
+ {% endcomment %}
data/_includes/head.html CHANGED
@@ -7,16 +7,19 @@
7
7
  <title>{{page.title}} - {{site.title}}</title>
8
8
  <meta name="description" content="{{page.description}}">
9
9
  <meta name="viewport" content="width=device-width, initial-scale=1">
10
+ {% include google-tag-wrapper.html %}
10
11
  <!-- YouTube API -->
11
12
  <meta name="yt-api-k" value="AIzaSyBpxv9JNl4AX816ScNmZcqHkLncMUeiAws" />
12
13
  <link rel="apple-touch-icon" href="apple-touch-icon.png">
13
- {% include stylesheets.html %}
14
+ {% include styles/vendor.html %}
14
15
  <!-- Standard Favicon -->
15
16
  <link rel="icon" type="image/x-icon" href="{{page.baseurl}}favicon.ico" />
16
17
  <!-- Custom CSS Stylesheet -->
17
18
  <link rel="icon" type="image/x-icon" href="{{page.baseurl}}favicon.ico" />
18
- <!-- Custom CSS Stylesheet -->
19
- <link rel="stylesheet" href="{{page.baseurl}}assets/css/main.css{% if site.data.cache_bust_css %}?version={{ site.data.cache_bust_css | truncate: 32, '' }}{% endif %}">
19
+ <!-- Custom CSS for the KCC Theme -->
20
+ <link rel="stylesheet" href="{{page.baseurl}}assets/css/kcc-theme.css{% if site.data.cache_bust_css %}?version={{ site.data.cache_bust_css | truncate: 32, '' }}{% endif %}">
21
+ <!-- Custom CSS stylesheet specific to this site -->
22
+ {% include styles/main.html %}
20
23
  <!-- Custom CSS Stylesheet for CloudCannon -->
21
24
  <link rel="stylesheet" href="{{page.baseurl}}assets/css/content.css">
22
25
  <!-- Uncomment to prevent IE-11 caching (for IE testing) -->
@@ -24,3 +27,4 @@
24
27
  <META HTTP-EQUIV="Expires" CONTENT="-1"> -->
25
28
  </head>
26
29
  <body id="page-top">
30
+ {% include google-noscript-wrapper.html %}
File without changes
File without changes
@@ -1,2 +1,4 @@
1
- <!-- custom compiled and minified javascript -->
2
- <script src="{{page.baseurl}}assets/js/dist/kcc-theme.bundle.js"></script>
1
+ {% comment %}
2
+ This file is here just to prevent Liquid include errors when building the theme (otherwise, Liquid errors will break the build).
3
+ This file just gets overriden by the identically-named 'custom.html' from whatever site uses this theme.
4
+ {% endcomment %}
@@ -0,0 +1,2 @@
1
+ <!-- custom compiled and minified javascript -->
2
+ <script src="{{page.baseurl}}assets/js/theme/kcc-theme.{{ site.data.hash }}.bundle.js"></script>
@@ -0,0 +1,4 @@
1
+ {% comment %}
2
+ Another placeholder that just gets replaced.
3
+ This file prevents Liquid errors from breaking the build in the gem-theme.
4
+ {% endcomment %}
File without changes
@@ -1,8 +1,9 @@
1
1
  {% include head.html %}
2
- {% include global-nav.html %}
3
- {% include local-nav.html %}
2
+ {% include nav-global.html %}
3
+ {% include nav-local.html %}
4
4
  {{ content }}
5
5
  {% include footer.html %}
6
6
  {% include scripts/vendor-cdn.html %}
7
+ {% include scripts/kcc-theme.html %}
7
8
  {% include scripts/custom.html %}
8
9
  {% include foot.html %}
@@ -0,0 +1 @@
1
+ body,html{overflow-x:hidden}.page-heading{color:#fff;font-family:Roboto,sans-serif;font-size:1.1em;font-weight:700;letter-spacing:.06em;text-transform:uppercase}@media screen and (min-width:992px){.page-heading{font-size:1.8em}}p,ul{color:#666;font-size:1em}ul{font-family:Open Sans,sans-serif}.menu-heading{color:#c61f48;font-size:1.2em;font-weight:700;margin-bottom:20px}.menu-heading,.nav-link-main{font-family:Roboto,sans-serif;text-transform:uppercase}.nav-link-main{color:#fff!important;font-size:1em;font-weight:400;letter-spacing:.06em}@media screen and (max-width:1080px){.nav-link-main{font-size:.9em}}.sub-nav-link{color:#fff;font-family:Roboto,sans-serif;font-size:.8em;font-weight:400;letter-spacing:.06em}@media screen and (min-width:992px){.sub-nav-link{font-size:1em}}.footer-heading{font-family:Roboto,sans-serif;font-size:1.95rem;font-weight:900}@media screen and (min-width:360px){.footer-heading{font-size:2.2rem}}@media screen and (min-width:375px){.footer-heading{font-size:2.4rem}}@media screen and (min-width:410px){.footer-heading{font-size:2.6rem}}p{font-family:Open Sans,sans-serif}.blue-heading{color:#0f3b63;font-family:Roboto,sans-serif;font-size:1.4em;font-weight:700}.f-color{color:#c61f48}.coaches-heading,.main-heading{color:#666;font-family:Roboto,sans-serif;font-size:1.4em;font-weight:400}.coaches-heading{margin-left:15px}.coach-name{color:#c61f48;font-size:1.5em;font-weight:700}.coach-name,.coach-title{font-family:Roboto,sans-serif}.coach-title{color:#666;font-size:1.2em;font-weight:900}p.general-p{font-family:Open Sans,sans-serif;font-size:1rem}.news__heading{color:#c61f48;font-family:Roboto,sans-serif;font-size:1.2em}.news__sub-heading{color:#666;font-family:Roboto,sans-serif;font-size:.9em;font-weight:500;text-transform:uppercase}.news__paragraph{color:#666;font-family:Open Sans,sans-serif;font-size:1rem}.alert__title{color:#c61f48;font-family:Roboto,sans-serif;font-size:1.2em}.typography__latest-news-widget__h2{border-bottom-color:#c61f48;border-bottom-style:solid;border-bottom-width:thick;color:#0f3b63;text-transform:uppercase}.typography__newsroom-main-heading{-ms-flex-item-align:center;-ms-grid-row-align:center;align-self:center;color:#0f3b63;display:inline;font-family:eurostile,sans-serif;font-size:1.5rem;font-style:italic;font-weight:700;text-transform:uppercase;vertical-align:middle;transition-property:color;transition-timing-function:ease;transition-duration:.4s}.typography__newsroom-main-heading:focus,.typography__newsroom-main-heading:hover{color:#c61f48}@media screen and (min-width:360px){.typography__newsroom-main-heading{font-size:1.8rem}}@media screen and (min-width:410px){.typography__newsroom-main-heading{font-size:2rem}}@media screen and (min-width:576px){.typography__newsroom-main-heading{font-size:2.3rem}}@media screen and (min-width:768px){.typography__newsroom-main-heading{font-size:2.4rem}}@media screen and (min-width:1500px){.typography__newsroom-main-heading{font-size:2.6rem}}.typography__latest-news-widget__rollup-list-h{color:#000}.latest-news-widget__latest__tease__link:focus .typography__latest-news-widget__rollup-list-h,.latest-news-widget__latest__tease__link:hover .typography__latest-news-widget__rollup-list-h,.latest-news-widget__latest__tease__number .tease-is-active{color:#c61f48}.typography__upcoming-events{color:#0f3b63;font-family:Open Sans,sans-serif;font-weight:600;text-transform:uppercase}.typography__social-accounts{color:#0f3b63}.typography__newsroom-heading{font-family:700}.red-heading{font-size:2.8rem;font-weight:600;line-height:2.8rem;margin-bottom:30px;margin-top:20px}.red-heading,.typography__red-h3{color:#c61f48;font-family:Oswald,sans-serif}.typography__red-h3{font-size:2rem;font-weight:500;text-transform:uppercase}.typography__red-h3--margin-btm{margin-bottom:40px}.typography__red-h3--tan--margin-btm{margin-bottom:21px}.typography__col--heading-underline{background-image:url(/assets/img/heading-bg-underline.png);background-repeat:no-repeat;background-position:0 50px}.typography__col--heading-underline-tan{background-image:url(/assets/img/heading-bg-underline-tan.png);background-repeat:no-repeat;background-position:0 50px}.typography__contacts--name{color:#0f3b63;font-family:Roboto,sans-serif;font-size:1.3em;font-weight:700}.typography__contacts--title{color:#666;font-family:Roboto,sans-serif;font-size:1.1em;font-weight:900}.typography__stories--quote{color:#0f3b63;font-family:Oswald,sans-serif;font-size:1.1em;font-weight:300}@media screen and (min-width:488px){.typography__stories--quote{font-size:1.3rem}}@media screen and (min-width:768px){.typography__stories--quote{font-size:1.2rem}}@media screen and (min-width:992px){.typography__stories--quote{font-size:1.4rem}}.typography__stories--name{color:#0f3b63;font-family:Oswald,sans-serif;font-size:1.2rem;font-weight:500}.typography__orange-h4{color:#f99e1b;font-family:Oswald,sans-serif;font-size:2.4rem}.typography__h5{color:#58585b;font-family:Oswald,sans-serif;font-weight:400;margin-bottom:20px}.typography__sub-nav--red-h3{color:#c61f48;font-family:Oswald,sans-serif;font-size:1.4rem;font-weight:500;text-transform:uppercase}@media screen and (min-width:768px){.typography__sub-nav--red-h3{font-size:1.8rem}}.typography__nav-link{font-family:Oswald,sans-serif;font-weight:500;text-transform:uppercase}.typography__power-text{color:#fff;font-family:Libre Franklin,sans-serif;font-size:1.1rem;font-weight:700;letter-spacing:.02em;text-transform:uppercase}@media screen and (min-width:360px){.typography__power-text{font-size:1.3rem}}@media screen and (min-width:768px){.typography__power-text{font-size:2.2rem}}@media screen and (min-width:992px){.typography__power-text{font-size:2.9rem}}@media screen and (min-width:1200px){.typography__power-text{font-size:3.1rem}}.blue-link{color:#0f3b63;font-family:Roboto,sans-serif;font-size:1.1em;font-weight:700}.blue-link:hover{color:#c61f48;text-decoration:none}.schedule-link{margin-left:-20px}.news__link{text-decoration:none!important}.news__cell-left:focus .news__heading,.news__cell-left:hover .news__heading,.news__cell-right:focus .news__heading,.news__cell-right:hover .news__heading{color:#0f3b63}.link__offset:before{content:" ";display:block;height:371px;margin-top:-371px;pointer-events:none;visibility:hidden}@media screen and (min-width:768px){.link__offset:before{height:271px;margin-top:-271px}}.links__kcc-logo{display:inline;float:left;width:120px;height:80px}.link__more-padding{margin-left:20px;margin-right:20px}.links__local-nav__newsroom-heading-link,.links__local-nav__newsroom-heading-link:hover{text-decoration:none}.navbar-light .navbar-nav .links__local-nav__nav-link--color{color:#0f3b63}.navbar-light .navbar-nav .active>.nav-link,.navbar-light .navbar-nav .nav-link:focus,.navbar-light .navbar-nav .nav-link:hover{color:#c61f48}.links__darker-link{color:#006ce0}.navbar-light .navbar-nav .nav-link.buttons__btn-primary-custom{background-color:#c61f48;color:#fff}.navbar-light .navbar-nav .nav-link.buttons__btn-primary-custom:hover{background-color:#0f3b63}.buttons__yt-subscribe{display:inline-block;height:1rem;margin-top:-4px;margin-right:5px;transform:scale(1.8);vertical-align:middle;width:1rem}.buttons__custom-danger{margin-right:20px}.buttons__btn-margin-top{margin-top:20px}.btn-primary{background-color:#0051a7;border-color:#003773}.btn-primary:hover{background-color:#022b55;border-color:#021e3d}.slider-container{padding-left:0;padding-right:0}@media screen and (min-width:1400px){.index-slider-container,.slider-container{max-width:1300px}}.slider-row{margin-left:0;margin-right:0}.heading-container{border-left-color:#fff;border-left-style:solid;border-left-width:2px;margin-left:.9%;padding-left:5px;position:absolute;top:55%;width:7%;z-index:4444}@media screen and (min-width:488px){.heading-container{top:60%;width:6%}}@media screen and (min-width:768px){.heading-container{margin-left:.7%;padding-left:10px;top:61%;width:6%}}@media screen and (min-width:992px){.heading-container{margin-left:.6%;padding-left:20px;top:67%}}@media screen and (min-width:1200px){.heading-container{top:69%}}.baseballSlider .slide-img,.heroSlider .slide-img{position:relative;width:100%}.baseballSlider .slick-next,.heroSlider .slick-next{right:20px}.baseballSlider .slick-prev,.heroSlider .slick-prev{left:20px;z-index:4}@media screen and (min-width:576px){.baseballSlider .slick-next,.heroSlider .slick-next{right:25px}.baseballSlider .slick-prev,.heroSlider .slick-prev{left:25px;z-index:4}}.baseballSlider .slick-next,.baseballSlider .slick-prev,.heroSlider .slick-next,.heroSlider .slick-prev{height:25px;top:75%;width:25px}@media screen and (min-width:992px){.baseballSlider .slick-next,.baseballSlider .slick-prev,.heroSlider .slick-next,.heroSlider .slick-prev{height:40px;top:80%;width:40px}}.baseballSlider .slick-dots li button:before,.heroSlider .slick-dots li button:before{color:#e5e8ed;font-size:12px;line-height:30px;opacity:1;text-shadow:-1px -1px 0 #000,1px -1px 0 #000,-1px 1px 0 #000,1px 1px 0 #000}.baseballSlider .slick-dots li.slick-active button:before,.heroSlider .slick-dots li.slick-active button:before{color:#0f3b63;opacity:1;text-shadow:-1px -1px 0 #000,1px -1px 0 #000,-1px 1px 0 #000,1px 1px 0 #000}.baseballSlider .slick-dots li,.heroSlider .slick-dots li{margin-left:1px;margin-right:1px;padding-left:0;padding-right:0}.njcaa-link{margin-top:30px;position:absolute;right:15%;z-index:1000}@media screen and (min-width:1600px){.njcaa-link{right:20%}}@media screen and (min-width:1900px){.njcaa-link{right:25%}}@media screen and (min-width:1200px){.njcaa-logo{width:175px}}@media screen and (min-width:1600px){.njcaa-logo{width:200px}}.baseballSlider{visibility:hidden}.slick-initialized{visibility:visible}.slick-track{margin-left:0}.latest-news-widget-mod{overflow:hidden;margin-bottom:50px;background-color:#000;position:relative}@media (min-width:980px){.latest-news-widget-mod{display:-ms-flexbox;display:flex}}.latest-news-widget__latest__h{font-size:41px;font-weight:600;font-family:Open Sans,sans-serif;margin:0 0 18px;line-height:1;padding:15px 0;border-bottom:1px solid;background:#fff;position:absolute;top:0;right:0;left:0;display:none}@media (min-width:980px){.latest-news-widget__latest__h{position:static;display:block}}@media screen and (min-width:980px) and (max-width:1000px){.latest-news-widget__latest__h{font-size:38px}}@media screen and (min-width:1200px) and (max-width:1313px){.latest-news-widget__latest__h{font-size:36px}}.latest-news-widget__latest__tease-group{list-style:none;margin-bottom:0;padding-top:2px;padding-left:0}@media (min-width:600px) and (max-width:979px){.latest-news-widget__latest__tease-group{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.latest-news-widget__latest__tease{width:48%}.latest-news-widget__latest__tease:nth-child(odd){margin-right:2%}.latest-news-widget__latest__tease:nth-child(2n){margin-left:2%}}@media (min-width:980px){.latest-news-widget__latest__tease-group{padding-top:0}}.latest-news-widget__latest__tease{padding:18px 0 18px 7px;border-bottom:1px solid #000;position:relative;font-family:harriet,serif;font-size:17px;font-weight:400}.latest-news-widget__latest__tease:after{content:"";display:table;clear:both}.latest-news-widget__latest__tease:last-child{margin-bottom:0}.latest-news-widget__latest__tease:first-child{display:none}@media (min-width:600px){.latest-news-widget__latest__tease:first-child{display:block}}@media (min-width:980px){.latest-news-widget__latest__tease{padding-left:0}}@media (min-width:1600px){.latest-news-widget__latest__tease{padding-top:24px;padding-bottom:24px}}.latest-news-widget__latest__tease__number{display:block;float:left;font-family:akkurat,sans-serif;font-size:11px;font-weight:700;height:26px;min-width:26px;padding:8px 4px 0;line-height:1;border-radius:13px;box-shadow:inset 0 0 0 1.4px #000;text-align:center;background-color:#0f3b63;margin:-1px 7px 0 -2px;letter-spacing:0;transition:all .2s ease;color:#fff}.latest-news-widget__feature__tease__overline,.latest-news-widget__latest__tease__overline{font-family:brauerneue,sans-serif;font-weight:700;letter-spacing:.075em;font-style:normal;text-transform:uppercase}.latest-news-widget__latest__tease__link:focus .latest-news-widget__latest__tease__number,.latest-news-widget__latest__tease__link:hover .latest-news-widget__latest__tease__number,.tease-is-active .latest-news-widget__latest__tease__number{color:#c61f48;background-color:#fff;box-shadow:inset 0 0 0 1.4px #c61f48}.latest-news-widget__latest__tease__link:focus{outline:none}.latest-news-widget__feature:hover,.latest-news-widget__latest__tease__link:hover{text-decoration:none}.latest-news-widget__latest__tease__hgroup{max-width:320px;float:left}.latest-news-widget__latest__tease__img-mod{line-height:0}.latest-news-widget__latest__tease__img-mod--default{background-size:cover;background-position:50% 50%;width:50px!important;height:50px!important;margin:0 5px 0 0;min-width:50px!important;min-height:50px!important;float:right;border-radius:50%}@media (min-width:450px){.latest-news-widget__latest__tease__img-mod--default{width:80px!important;height:80px!important;min-width:80px!important;min-height:80px!important}}@media (min-width:1700px){.latest-news-widget__latest__tease__img-mod--default{margin-right:10px}}.latest-news-widget__latest__tease--has-image.latest-news-widget__latest__tease--profile .latest-news-widget__latest__tease__hgroup{margin-right:85px}.latest-news-widget__latest__tease--has-image.latest-news-widget__latest__tease--profile .latest-news-widget__latest__tease__link{display:block}.latest-news-widget__latest__tease__img-mod--profile{width:80px;position:absolute;top:0;right:0;bottom:0}.latest-news-widget__latest__tease__img-mod--profile .latest-news-widget__latest__tease__img{max-height:95%;position:absolute;right:0;bottom:0}.latest-news-widget__latest__tease__overline{margin-bottom:.4em;font-size:15px;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center}.latest-news-widget__latest__tease__overline:after{content:"";display:table;clear:both}@media (max-width:1069px){.latest-news-widget__latest__tease__overline{font-size:14px}}.latest-news-widget__latest__tease__h{display:inline;margin-bottom:0;line-height:1.25}.latest-news-widget__latest__date{color:#ddd}.latest-news-widget__latest__tease__link{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:justify;justify-content:space-between;text-decoration:none;line-height:1}.latest-news-widget__latest{background:#fff;width:100%;box-shadow:-1px 0 #000}@media (min-width:980px){.latest-news-widget__latest{position:relative;width:40%;padding-left:20px;z-index:1;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:justify;justify-content:space-between}}@media (min-width:1200px){.latest-news-widget__latest{width:30%}}@keyframes a{to{opacity:1}}@keyframes b{to{opacity:0}}@keyframes c{0%{transform:scale(1.02);opacity:1}to{transform:scale(1);opacity:0}}@keyframes d{0%{transform:scale(1.05);opacity:0}to{transform:scale(1.02);opacity:1}}.latest-news-widget__feature-mod{width:100%;display:-ms-flexbox;display:flex;overflow:hidden}@media (min-width:980px){.latest-news-widget__feature-mod{width:60%}}@media (min-width:1200px){.latest-news-widget__feature-mod{width:70%}}.latest-news-widget__feature-mod--inner{min-width:400%;width:400%;display:-ms-flexbox;display:flex}.latest-news-widget__feature{position:relative;overflow:hidden;text-decoration:none;min-width:25%;width:25%}.latest-news-widget__feature:before{display:block;content:"";border-left:1px solid #000;position:absolute;top:0;bottom:0;left:0}.latest-news-widget__feature.topper-trans-out{opacity:1;animation:b .3s ease forwards .25s}.latest-news-widget__feature.topper-trans-in{opacity:1;animation:a .3s ease forwards .25s}.disable-carousel .latest-news-widget__feature:not(:first-child){display:none}.topper-trans-in .latest-news-widget__feature__img-mod{opacity:0;animation:d 1s ease forwards .2s}.topper-trans-out .latest-news-widget__feature__img-mod{opacity:1;animation:c .5s ease forwards}@keyframes e{0%{opacity:1;transform:translateZ(0)}to{opacity:0;transform:translate3d(0,-35px,0)}}@keyframes f{0%{opacity:0;transform:translate3d(0,35px,0)}to{opacity:1;transform:translateZ(0)}}.latest-news-widget__feature.topper-trans-out .latest-news-widget__feature__tease__h,.latest-news-widget__feature.topper-trans-out .latest-news-widget__feature__tease__overline,.latest-news-widget__feature.topper-trans-out .latest-news-widget__feature__text-mod{animation:e .3s ease forwards}.latest-news-widget__feature.topper-trans-in .latest-news-widget__feature__text-mod{opacity:0;animation:f .5s ease .2s forwards}.latest-news-widget__feature.topper-trans-in .latest-news-widget__feature__tease__h{opacity:0;animation:f .5s ease .1s forwards}.latest-news-widget__feature.topper-trans-in .latest-news-widget__feature__tease__overline{opacity:0;animation:f .5s ease forwards}.latest-news-widget__feature--image{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column}@media (min-width:600px) and (max-width:1199px){.latest-news-widget__feature--image{padding-bottom:142px}.latest-news-widget__feature--image .latest-news-widget__feature__tease__hgroup{min-height:142px;position:absolute;right:0;left:0;bottom:0}}@media (min-width:1200px){.latest-news-widget__feature--image{-ms-flex-direction:row;flex-direction:row}}.latest-news-widget__feature--image .latest-news-widget__feature__text-mod{display:none}.latest-news-widget__feature--image .latest-news-widget__feature__tease__hgroup{display:-ms-flexbox;display:flex;z-index:1;-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:end;justify-content:flex-end;color:#fff;background-color:#000;padding:0 20px 20px;-ms-flex-order:1;order:1;-ms-flex-align:start;align-items:flex-start}@media (min-width:980px){.latest-news-widget__feature--image .latest-news-widget__feature__tease__hgroup{padding:25px}}@media (min-width:1200px){.latest-news-widget__feature--image .latest-news-widget__feature__tease__hgroup{-ms-flex-order:0;order:0;width:44.5%;padding:15px;min-width:230px}}.latest-news-widget__feature__tease__overline{display:inline-block;color:#fff;background-color:#000;line-height:1;padding:5px 7px 3px;text-decoration:none;font-size:15px;box-shadow:inset 0 0 0 1px #fff;margin-bottom:18px;transition:background-color .25s ease;margin-top:-10px}@media screen and (min-width:980px){.latest-news-widget__feature__tease__overline{background-color:#fff;color:#000}}@media (max-width:1069px){.latest-news-widget__feature__tease__overline{font-size:14px}}.latest-news-widget__feature:focus .latest-news-widget__feature__tease__overline,.latest-news-widget__feature:hover .latest-news-widget__feature__tease__overline{color:#fff;background-color:#000}@media (min-width:980px){.latest-news-widget__feature__tease__overline{margin-top:0}}.latest-news-widget__feature--no-image{padding:20px;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:end;justify-content:flex-end}@media (min-width:1500px){.latest-news-widget__feature--no-image{padding:50px}}.latest-news-widget__feature--no-image .latest-news-widget__feature__img-mod{display:none}@media (min-width:1070px){.latest-news-widget__feature--no-image .latest-news-widget__feature__tease__h{font-size:calc(50px + 6 * (100vw - 1070px)/ 280)}}.latest-news-widget__feature--no-image .latest-news-widget__feature__tease__h span{background:0 0}.latest-news-widget__feature--video .latest-news-widget__feature__img-mod:after,.tease-grid__tease__img-mod-vid:after{display:block;background-color:#fff;background-size:cover;background-position:50% 50%;background-repeat:no-repeat;content:""}.latest-news-widget__feature__text-mod{color:#fff;padding-top:15px;margin-top:15px;font-family:harriet,serif;font-size:16px;position:relative;height:calc(6.7em + 25px);overflow:hidden}.latest-news-widget__feature__text-mod:before{position:absolute;top:0;right:0;left:0;content:"";display:block;border-top:1px solid #fff;transition:all .5s ease .4s}.latest-news-widget__feature__text-mod .latest-news-widget__feature__text-mod__inner{max-width:925px}@media (min-width:770px){.latest-news-widget__feature__text-mod{height:auto}.latest-news-widget__feature__text-mod .latest-news-widget__feature__text-mod__inner{columns:2}}.latest-news-widget__feature__img-mod{width:100%;background-size:cover;background-position:50% 50%;position:relative}.latest-news-widget__feature__img-mod:before{display:block;content:"";width:100%;padding-top:66.66%}@media (min-width:1350px){.latest-news-widget__feature__img-mod{width:72.5%}}.latest-news-widget__feature--photo .latest-news-widget__feature__img-mod,.latest-news-widget__feature--video .latest-news-widget__feature__img-mod{width:100%;position:absolute;top:0;right:0;bottom:0;left:0}.latest-news-widget__feature--video .latest-news-widget__feature__img-mod:after{position:absolute;top:50%;left:50%;margin:-35px 0 0 -35px;width:70px;height:70px;border-radius:50%;background-image:url(../../img/play-icon.svg);border:1px solid #000;transition:all .2s ease}@media (min-width:600px){.latest-news-widget__feature--video .latest-news-widget__feature__img-mod:after{width:94px;height:94px;margin:-47px 0 0 -47px}}.latest-news-widget__feature--video .latest-news-widget__feature__img-mod:hover:after{transform:scale(1.05)}.latest-news-widget__feature__img{opacity:0;width:100%;height:100%;position:absolute;top:0;right:0;bottom:0;left:0;-ms-flex-order:0;order:0}.latest-news-widget__feature__expert-img{width:6.7em;height:6.7em;float:left;box-shadow:inset 0 0 0 1px #fff;margin-right:10px;margin-top:.4em;background-size:cover;background-position:50% 50%}.latest-news-widget__dropcap{text-align:center;padding-top:.14em;width:1.31em;height:1.31em;display:block;float:left;line-height:1;border:1px solid;margin-right:.26em;margin-top:.14em;font-family:harriet-display,serif;font-size:2.8em;font-weight:500}.latest-news-widget__feature__expert-name{font-weight:700}.latest-news-widget__feature__tease__h{color:#fff;text-decoration:none;margin-bottom:0;font-family:Oswald,sans-serif;font-size:32px;font-weight:500;letter-spacing:.1rem;text-transform:uppercase;line-height:1;max-width:700px}@media screen and (min-width:360px){.latest-news-widget__feature__tease__h{font-size:38px}}@media (min-width:600px) and (max-width:1069px){.latest-news-widget__feature__tease__h{font-size:46px}}@media (min-width:1070px){.latest-news-widget__feature__tease__h{font-size:calc(46px + 3 * (100vw - 1070px)/ 280)}}@media screen and (min-width:1200px){.latest-news-widget__feature__tease__h{width:100%}}.latest-news-widget__latest__h--no-underline{border-bottom:none}.latest-news-widget__red-underline{border-bottom-color:#c61f48;border-bottom-style:solid;border-bottom-width:thick}.latest-news-widget--rollup__section-margin{margin-left:auto;margin-right:auto;width:95%}@media screen and (min-width:576px){.latest-news-widget--rollup__section-margin{width:90%}}@media screen and (min-width:768px){.latest-news-widget--rollup__section-margin{width:70%}}@media screen and (min-width:992px){.latest-news-widget--rollup__section-margin{width:60%}}@media screen and (min-width:1200px){.latest-news-widget--rollup__section-margin{width:50%}}.latest-news-widget--rollup__latest__tease-group{list-style:none;margin-bottom:0;padding-top:2px;padding-left:0}@media (min-width:980px){.latest-news-widget--rollup__latest__tease-group{padding-top:0}}.latest-news-widget--rollup__latest__tease-width{width:100%}@media (min-width:600px) and (max-width:979px){.latest-news-widget--rollup__latest__tease-width:nth-child(odd){margin-right:0}.latest-news-widget--rollup__latest__tease-width:nth-child(2n){margin-left:0}}.latest-news-widget--rollup__latest__tease-width:first-child{display:block}.latest-news-widget__play-icon{animation:a .4s ease forwards .35s;left:50%;margin-left:-30px;margin-top:-30px;opacity:0;position:absolute;top:17%;width:60px;z-index:999}@media screen and (min-width:360px){.latest-news-widget__play-icon{left:50%;margin-left:-40px;margin-top:-40px;top:20%;width:80px}}@media screen and (min-width:410px){.latest-news-widget__play-icon{top:23%}}@media screen and (min-width:500px){.latest-news-widget__play-icon{top:27%}}@media screen and (min-width:576px){.latest-news-widget__play-icon{margin-left:-50px;margin-right:-50px;top:38%;width:100px}}@media screen and (min-width:600px){.latest-news-widget__play-icon{top:30%}}@media screen and (min-width:980px){.latest-news-widget__play-icon{left:50%;margin-left:-65px;margin-top:-65px;top:30%;width:130px}}@media screen and (min-width:1200px){.latest-news-widget__play-icon{left:70%;margin-left:-90px;margin-top:-90px;top:50%;width:180px}}.latest-news-widget__play-icon.topper-trans-out{animation:g 1.1s ease forwards}.latest-news-widget__play-icon.topper-trans-in{animation-name:h;animation-duration:1.1s;animation-timing-function:ease;animation-fill-mode:forwards}@keyframes g{0%{transform:scale(1.02);opacity:.8}to{transform:scale(1);opacity:0}}@keyframes h{0%{transform:scale(1.08);opacity:0}to{transform:scale(1.02);opacity:.8}}.latest-news-widget__play-icon.play-zoom-in{animation:i 1.1s ease forwards}.latest-news-widget__play-icon.play-zoom-out{animation:j 1.1s ease forwards}@keyframes i{0%{transform:scale(1.02);opacity:.8}to{transform:scale(1.2);opacity:.95}}@keyframes j{0%{transform:scale(1.2);opacity:.95}to{transform:scale(1.02);opacity:.8}}.latest-news-widget__feature__yt-thumb{background-repeat:no-repeat;background-size:120% auto;-ms-filter:blur(0);filter:blur(0);-ms-filter:blur(1px);filter:blur(1px)}@media screen and (min-width:576px){.latest-news-widget__feature__yt-thumb{-ms-filter:blur(3px);filter:blur(3px)}}@media screen and (min-width:1200px){.latest-news-widget__feature__yt-thumb{background-size:280% auto;-ms-filter:blur(5px);filter:blur(5px)}}@media screen and (min-width:1350px){.latest-news-widget__feature__yt-thumb{background-size:210% auto}}@media screen and (min-width:1400px){.latest-news-widget__feature__yt-thumb{background-size:200% auto}}@media screen and (min-width:1500px){.latest-news-widget__feature__yt-thumb{background-size:180% auto}}@media screen and (min-width:1800px){.latest-news-widget__feature__yt-thumb{background-size:160% auto;-ms-filter:blur(5px);filter:blur(5px)}}.news__modal-thumb{margin-bottom:10px;margin-right:10px;max-width:200px}.latest-news-widget__img-mod--crop{border-bottom-left-radius:25px!important;border-bottom-right-radius:25px!important;border-top-left-radius:25px!important;border-top-right-radius:25px!important;height:50px!important;margin-right:5px;min-height:50px!important;min-width:50px!important;overflow:hidden;width:50px!important}@media screen and (min-width:480px){.latest-news-widget__img-mod--crop{border-bottom-left-radius:40px!important;border-bottom-right-radius:40px!important;border-top-left-radius:40px!important;border-top-right-radius:40px!important;height:80px!important;min-height:80px!important;min-width:80px!important;width:80px!important}}.local-nav{top:55px;border-bottom-color:#b1b1b1;border-bottom-style:solid;border-bottom-width:1px}.local-nav--search-toggle{top:86px}.local-nav__custom-nav{padding-left:40px;border-bottom-color:#000;border-bottom-width:3px;border-bottom-style:solid}.local-nav__centered{margin-left:auto;margin-right:auto}.local-nav__kcc-logo{margin-bottom:-4px;width:65px}@media screen and (min-width:360px){.local-nav__kcc-logo{margin-bottom:-5px;width:70px}}@media screen and (min-width:410px){.local-nav__kcc-logo{margin-bottom:-7px;width:75px}}@media screen and (min-width:576px){.local-nav__kcc-logo{margin-bottom:-15px;width:140px}}@media screen and (min-width:768px){.local-nav__kcc-logo{margin-bottom:-15px;width:160px}}@media screen and (min-width:992px){.local-nav__kcc-logo{margin-bottom:-17px;width:135px}}@media screen and (min-width:1200px){.local-nav__kcc-logo{margin-bottom:-15px;width:160px}}.local-nav .nav-link{margin-left:10px;margin-right:10px}@media screen and (min-width:992px){.local-nav .nav-link{margin-left:5px;margin-right:5px}}@media screen and (min-width:1200px){.local-nav .nav-link{margin-left:10px;margin-right:10px}}#mainNav,.links__local-nav__newsroom-heading-link,.navbar-brand{transition:all .4s ease}@media screen and (min-width:992px){#mainNav.navbar-shrink{padding-top:0;padding-bottom:0;opacity:.96}#mainNav.navbar-shrink .navbar-brand{transform:scale(.8)}#mainNav.navbar-shrink .links__local-nav__newsroom-heading-link{transform:scale(.8);margin-left:-35px}}.events__bottom-underline{border-bottom-color:#c61f48;border-bottom-style:solid;border-bottom-width:5px}.fb-widget__heading-margin{margin-bottom:20px}@media screen and (min-width:992px){.featured-videos__right-border{border-right-color:#000;border-right-style:solid;border-right-width:thin}}.featured-videos__heading-margin{margin-bottom:20px}.featured-video__video-center{margin-left:auto;margin-right:auto}.timeline__scroll{height:800px;overflow-y:scroll}.timeline__wrapper{margin-left:auto;margin-right:auto}@media screen and (min-width:768px){.timeline__wrapper{width:80%}}@media screen and (min-width:992px){.timeline__wrapper{width:70%}}@media screen and (min-width:1200px){.timeline__wrapper{width:60%}}.social-icons__icons{background-color:#c61f48;border-radius:50%;height:33px;margin:4px;padding:2px;transition-property:background-color;transition-timing-function:ease;transition-duration:.3s;width:33px}@media screen and (min-width:360px){.social-icons__icons{height:40px;margin:5px;width:40px}}@media screen and (min-width:412px){.social-icons__icons{height:50px;width:50px}}a.social-icons__links,a.social-icons__links .social-icons__icons{text-decoration:none!important}a.social-icons__links:hover .social-icons__icons{text-decoration:none!important;background-color:#0f3b63}.footer__margin{margin-top:20px}.footer{background-color:#f8f9fa;margin-top:60px;padding-bottom:40px;padding-top:40px;width:100%}a.footer-link{color:#0f3b63}a.footer-link:hover{text-decoration:none!important;color:#c61f48}.footer-heading{transition-property:color;transition-timing-function:ease;transition-duration:.3s}.footer-icons{background-color:#c61f48;border-radius:50%;transition-property:background-color;transition-timing-function:ease;transition-duration:.3s;height:33px;margin:4px;padding:2px;width:33px}@media screen and (min-width:360px){.footer-icons{height:40px;margin:5px;width:40px}}@media screen and (min-width:412px){.footer-icons{height:50px;width:50px}}a.footer-social-links,a.footer-social-links .footer-icons{text-decoration:none!important}a.footer-social-links:hover .footer-icons{text-decoration:none!important;background-color:#0f3b63}.footer__mobile--margin-bottom{margin-bottom:20px}@media screen and (min-width:992px){.footer__mobile--margin-bottom{margin-bottom:0}}.global-nav{background-color:#c61f48;height:56px;margin-left:0;margin-right:0;max-width:100%;min-width:100%;padding-bottom:10px;padding-left:5%;padding-top:15px;width:100%;z-index:1031}.kcc-logo{margin-left:5px;width:190px}@media screen and (min-width:360px){.kcc-logo{width:225px}}@media screen and (min-width:410px){.kcc-logo{width:255px}}@media screen and (min-width:488px){.kcc-logo{width:260px}}@media screen and (min-width:576px){.kcc-logo{width:300px}}@media screen and (min-width:768px){.kcc-logo{width:320px}}@media screen and (min-width:992px) and (max-width:1100px){.kcc-logo{margin-left:-25px;width:310px}}@media screen and (min-width:1100px){.kcc-logo{margin-left:-25px;width:340px}}.form-inline{float:right}.local-search{border-radius:1.5em}.search{font-size:1.2em;margin-right:40%}.clearSearch{background-position:center 72px;padding-top:72px}.search-row{background-color:#005bac;height:46px}.global-nav__gcse-wrapper{margin-left:-5px}@media screen and (min-width:992px){.global-nav__gcse-wrapper{display:block;float:right;margin-top:-18px;width:50%}}.global-nav__search-icon{background-position:50%;background-size:20px 20px;background-repeat:no-repeat;display:inline;height:22px;margin:4px;width:22px}@media screen and (min-width:360px){.global-nav__search-icon{background-size:21px 21px}}@media screen and (min-width:410px){.global-nav__search-icon{background-size:22px 22px}}@media screen and (min-width:576px){.global-nav__search-icon{background-size:24px 24px;height:24px;width:24px}}@media screen and (min-width:768px){.global-nav__search-icon{background-size:25px 25px;height:26px;width:26px}}.global-nav .global-nav__search-toggle .global-nav__search-icon{float:right}.global-nav__search-collapse{display:none;margin-top:-110px}@media screen and (min-width:576px){.global-nav__search-collapse{margin-top:-115px}}@media screen and (min-width:992px){.global-nav__search-collapse{display:block;margin-left:0;margin-right:0;margin-top:0}}.global-nav__search-collapse--visible{display:block;width:100%}.global-nav--search-toggle{top:30px}.global-nav__search--conatiner{max-width:1100px;margin-left:auto;margin-right:auto}.global-nav__search--open-background{width:120%;background-color:#c61f48;height:65px;position:absolute;z-index:-1;top:-60px;left:-40px}.global-nav__navbar-brand{margin-left:-10px}@media screen and (min-width:410px){.global-nav__navbar-brand{margin-left:-15px}}@media screen and (min-width:488px){.global-nav__navbar-brand{margin-left:-20px}}@media screen and (min-width:576px){.global-nav__navbar-brand{margin-left:-25px}}@media screen and (min-width:768px){.global-nav__navbar-brand{margin-left:-35px}}@media screen and (min-width:992px){.global-nav__navbar-brand{margin-left:-20px}}@media screen and (min-width:1000px){.global-nav__navbar-brand{margin-left:-18px}}@media screen and (min-width:1080px){.global-nav__navbar-brand{margin-left:-22px}}@media screen and (min-width:1200px){.global-nav__navbar-brand{margin-left:-2.5%}}@media screen and (min-width:1600px){.global-nav__navbar-brand{margin-left:-3%}}@media screen and (min-width:1900px){.global-nav__navbar-brand{margin-left:-3.25%}}@media screen and (min-width:2000px){.global-nav__navbar-brand{margin-left:-3.5%}}.global-nav__kcc-logo-inverse{margin-left:-3px;width:50px;margin-right:-10px}@media screen and (min-width:360px){.global-nav__kcc-logo-inverse{width:60px}}@media screen and (min-width:410px){.global-nav__kcc-logo-inverse{width:68px}}@media screen and (min-width:488px){.global-nav__kcc-logo-inverse{width:68px}}@media screen and (min-width:576px){.global-nav__kcc-logo-inverse{width:73px}}@media screen and (min-width:768px){.global-nav__kcc-logo-inverse{width:80px}}@media screen and (min-width:992px){.global-nav__kcc-logo-inverse{width:80px;margin-left:-30px;margin-right:20px}}@media screen and (min-width:1100px){.global-nav__kcc-logo-inverse{width:85px;margin-right:15px}}@media screen and (min-width:1300px){.global-nav__kcc-logo-inverse{width:85px;margin-left:-35px}}@media screen and (min-width:1400px){.global-nav__kcc-logo-inverse{width:85px;margin-left:-40px}}#yt_wrapper{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}@media screen and (min-width:992px){#yt_wrapper{-ms-flex-wrap:nowrap;flex-wrap:nowrap}}#yt_player{-ms-flex-direction:column;flex-direction:column;height:50vh;left:0;margin-top:10px;top:0;width:100vw}@media screen and (min-width:1200px){#yt_player{width:50vw}}#yt_list{-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:center;justify-content:center;height:50.5vh;margin-left:0;width:100vw;top:0;right:0;overflow-y:scroll}@media screen and (min-width:992px){#yt_list{margin-left:20px}}@media screen and (min-width:1200px){#yt_list{width:50vw}}.yt-item{background:#fff;box-shadow:0 1px 2px rgba(0,0,0,.1);height:auto;width:calc(98% - 30px);float:left;padding:15px;margin:10px 10px 10px 35px}@media screen and (orientation:portrait) and (max-width:468px){.yt-item{height:auto;width:calc(95% - 30px)}}@media screen and (min-width:992px){.yt-item{margin-left:40px;width:calc(98% - 50px)}}a>.yt-item>img{width:25%;float:left;margin-right:20px}.yt-item:hover{box-shadow:0 1px 2px rgba(0,0,0,.3)}div#channel_input{position:fixed;left:10px}div#channel_input>button,div#channel_input>input{display:inline-block;padding:.2em;font-weight:700;font-size:2em}div#channel_input>input#user_name{width:250px;color:#111;background:hsla(0,0%,100%,.7);border:1px solid #dfab12;transition:112ms}button#sbm:focus,div#channel_input>input#user_name:focus{outline:1px solid #000;box-shadow:0 0 10px #fff}div#channel_input>input#user_name.error{color:#d33;border-color:#d33;text-decoration:line-through;background:rgba(0,0,0,.5)}div#channel_input>button#sbm{color:#dfab12;background:rgba(0,0,0,.7);border:1px solid #dfab12}div#channel_input>div.info{display:none;width:calc(100% - 2em);font-size:1em;line-height:1.2em;background:rgba(0,0,0,.7);color:#fff;padding:1em;transition:225ms}button#load-more{display:block;margin:1em auto;pading:.8em 1em;font-size:2em;border:1px solid;outline:none;border-radius:1em;transition:225ms}button#load-more:hover{cursor:pointer;background:#000;color:#dfab12;border-color:#dfab12}@media screen and (orientation:portrait){#yt_player{width:100%;height:40vh}#yt_list{height:59vh;width:100%;top:auto;bottom:0;left:0}}.playlist__count{margin-left:-10vw;position:relative;top:1.5rem;left:-15px}@media screen and (min-width:360px){.playlist__count{margin-left:-9vw}}@media screen and (min-width:375px){.playlist__count{margin-left:-9vw}}@media screen and (min-width:390px){.playlist__count{margin-left:-8vw}}@media screen and (min-width:410px){.playlist__count{margin-left:-8vw}}@media screen and (min-width:430px){.playlist__count{margin-left:-7vw}}@media screen and (min-width:490px){.playlist__count{margin-left:-6vw}}@media screen and (min-width:576px){.playlist__count{margin-left:-5vw}}@media screen and (min-width:700px){.playlist__count{margin-left:-4.5vw}}@media screen and (orientation:portrait) and (min-width:768px){.playlist__count{margin-left:-4vw}}@media screen and (orientation:portrait) and (min-width:880px){.playlist__count{margin-left:-3.5vw}}@media screen and (min-width:992px){.playlist__count{margin-left:-35px}}.playlist__title{font-size:1.2rem}@media screen and (min-width:992px){.playlist__title{font-size:1.3rem}}@media screen and (min-width:1400px){.playlist__title{font-size:1.4rem}}.playlist__title--shift{position:relative;top:-.5rem;margin-left:35%}.playlist__more-btn--wrapper{text-align:center;margin-top:30px}.playlist__more-btn{margin-top:20px}.playlist__blue-play{clear:left;width:2rem;height:2rem;margin-left:5%;margin-top:5%;margin-right:0}.archive__post-meta{color:#666;overflow:hidden;margin:0}.archive__link-item{text-decoration:none}.archive__list{list-style-type:none}.coach-img{border:5px solid #fff;width:300px}.coach-modal-img{border:5px solid #c61f48;margin-right:20px;width:300px}.coach-row-marg{margin-top:60px}.coaches__col-bottom-margin{margin-bottom:20px}.error__main-heading{color:#c61f48;font-weight:700}.error__sub-heading{color:#0f3b63;font-weight:700}.positioning__margin-bottom{margin-bottom:30px}@media screen and (min-width:1200px){.positioning__margin-bottom{margin-bottom:40px}}.positioning__margin-top{margin-top:30px}@media screen and (min-width:1200px){.positioning__margin-top{margin-top:40px}}.positioning__heading-margin-bottom{margin-bottom:15px}@media screen and (min-width:1200px){.positioning__heading-margin-bottom{margin-bottom:20px}}.position__offset-fixed-nav{margin-top:115px}@media screen and (min-width:360px){.position__offset-fixed-nav{margin-top:115px}}@media screen and (min-width:410px){.position__offset-fixed-nav{margin-top:120px}}@media screen and (min-width:576px){.position__offset-fixed-nav{margin-top:145px}}@media screen and (min-width:768px){.position__offset-fixed-nav{margin-top:160px}}.positioning__iframe-wrapper{margin-bottom:20px;position:relative;padding-bottom:56.25%;padding-top:25px;height:0}.positioning__iframe-wrapper iframe{position:absolute;top:0;left:0;width:100%;height:100%}.posts__post-img{margin-bottom:20px}.ie-only__no-flex{display:inline!important}.ie-only__float-right{float:right}@media screen and (min-width:980px) and (max-width:1448px){.ie-only__hgroup{max-width:240px!important}}@media screen and (min-width:1000px) and (max-width:1448px){.ie-only__hgroup{max-width:270px!important}}@media screen and (min-width:1100px) and (max-width:1448px){.ie-only__hgroup{max-width:300px!important}}@media screen and (min-width:1200px) and (max-width:1448px){.ie-only__hgroup{max-width:230px!important}}@media screen and (min-width:1300px) and (max-width:1448px){.ie-only__hgroup{max-width:240px!important}}
@@ -6,7 +6,8 @@ function doStuff() {
6
6
  'Beryllium',
7
7
  'Boron',
8
8
  'Carbon',
9
- 'Nitrogen'
9
+ 'Nitrogen',
10
+ 'Oxygen'
10
11
  ];
11
12
  const data = materials.map(material => material.length + '<br>' + material + ' <br><hr>');
12
13
  const theDiv = document.getElementById('theDiv');
@@ -1 +1 @@
1
- !function(e){var t={};function n(r){if(t[r])return t[r].exports;var o=t[r]={i:r,l:!1,exports:{}};return e[r].call(o.exports,o,o.exports,n),o.l=!0,o.exports}n.m=e,n.c=t,n.d=function(e,t,r){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var o in e)n.d(r,o,function(t){return e[t]}.bind(null,o));return r},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="",n(n.s=0)}([function(e,t,n){"use strict";n.r(t);n(1),n(2),n(3),n(4),n(5)},function(e,t){document.addEventListener("DOMContentLoaded",function(){var e;e=(new Date).getFullYear(),document.getElementById("currentYear").innerHTML=e})},function(e,t){$("#searchImg").attr("src");$("#searchIcon").click(function(){-1!=$("#searchImg").css("background-image").indexOf("assets/img/search.svg")?$("#searchImg").css("background-image",'url("http://news.kcc.edu/assets/img/x.svg")'):$("#searchImg").css("background-image",'url("http://news.kcc.edu/assets/img/search.svg")'),$("#searchCollapse").toggleClass("global-nav__search-collapse--visible"),$("#mainNav").toggleClass("local-nav--search-toggle"),$("#globalNav").toggleClass("global-nav--search-toggle")}),$("document").ready(function(){window.setTimeout(function(){$("input.gsc-input").attr("placeholder","Search KCC...")},3e3)})},function(e,t){document.addEventListener("DOMContentLoaded",function(){[].forEach.call(document.querySelectorAll("img[data-src]"),function(e){e.setAttribute("src",e.getAttribute("data-src")),e.onload=function(){e.removeAttribute("data-src")}})})},function(e,t){},function(e,t){document.addEventListener("DOMContentLoaded",function(){var e;e=["Hydrogen","Helium","Lithium","Beryllium","Boron","Carbon","Nitrogen"].map(function(e){return e.length+"<br>"+e+" <br><hr>"}),document.getElementById("theDiv").innerHTML=e})}]);
1
+ !function(e){var t={};function n(r){if(t[r])return t[r].exports;var o=t[r]={i:r,l:!1,exports:{}};return e[r].call(o.exports,o,o.exports,n),o.l=!0,o.exports}n.m=e,n.c=t,n.d=function(e,t,r){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var o in e)n.d(r,o,function(t){return e[t]}.bind(null,o));return r},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="",n(n.s=0)}([function(e,t,n){"use strict";n.r(t);n(1),n(2),n(3),n(4),n(5)},function(e,t){document.addEventListener("DOMContentLoaded",function(){var e;e=(new Date).getFullYear(),document.getElementById("currentYear").innerHTML=e})},function(e,t){$("#searchImg").attr("src");$("#searchIcon").click(function(){-1!=$("#searchImg").css("background-image").indexOf("assets/img/search.svg")?$("#searchImg").css("background-image",'url("http://news.kcc.edu/assets/img/x.svg")'):$("#searchImg").css("background-image",'url("http://news.kcc.edu/assets/img/search.svg")'),$("#searchCollapse").toggleClass("global-nav__search-collapse--visible"),$("#mainNav").toggleClass("local-nav--search-toggle"),$("#globalNav").toggleClass("global-nav--search-toggle")}),$("document").ready(function(){window.setTimeout(function(){$("input.gsc-input").attr("placeholder","Search KCC...")},3e3)})},function(e,t){document.addEventListener("DOMContentLoaded",function(){[].forEach.call(document.querySelectorAll("img[data-src]"),function(e){e.setAttribute("src",e.getAttribute("data-src")),e.onload=function(){e.removeAttribute("data-src")}})})},function(e,t){},function(e,t){document.addEventListener("DOMContentLoaded",function(){var e;e=["Hydrogen","Helium","Lithium","Beryllium","Boron","Carbon","Nitrogen","Oxygen"].map(function(e){return e.length+"<br>"+e+" <br><hr>"}),document.getElementById("theDiv").innerHTML=e})}]);
File without changes
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: kcc-gem-theme
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.1
4
+ version: 0.4.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - wdzajicek
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-03-27 00:00:00.000000000 Z
11
+ date: 2019-03-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -54,32 +54,30 @@ dependencies:
54
54
  version: '12.0'
55
55
  description:
56
56
  email:
57
- - tig.welder4@gmail.com
57
+ - wdzajicek@gmail.com
58
58
  executables: []
59
59
  extensions: []
60
60
  extra_rdoc_files: []
61
61
  files:
62
62
  - LICENSE.txt
63
63
  - README.md
64
- - _includes/announcement.html
65
- - _includes/facebook-script.html
66
- - _includes/facebook-widget.html
64
+ - _data/cache_bust_css.yml
65
+ - _data/hash.yml
67
66
  - _includes/foot.html
68
67
  - _includes/footer.html
69
- - _includes/global-nav.html
70
- - _includes/google-noscript.html
71
- - _includes/google-tag.html
68
+ - _includes/google-noscript-wrapper.html
69
+ - _includes/google-tag-wrapper.html
72
70
  - _includes/head.html
73
- - _includes/local-nav.html
74
- - _includes/local-stylesheets.html
71
+ - _includes/nav-global.html
72
+ - _includes/nav-local.html
75
73
  - _includes/scripts/custom.html
74
+ - _includes/scripts/kcc-theme.html
76
75
  - _includes/scripts/vendor-cdn.html
77
- - _includes/social-icons.html
78
- - _includes/stylesheets.html
79
- - _includes/timeline.html
80
- - _includes/vendor-scripts.html
76
+ - _includes/styles/main.html
77
+ - _includes/styles/vendor.html
81
78
  - _layouts/default.html
82
79
  - assets/css/content.css
80
+ - assets/css/kcc-theme.css
83
81
  - assets/css/main.css
84
82
  - assets/img/alert.svg
85
83
  - assets/img/baseball.svg
@@ -112,13 +110,13 @@ files:
112
110
  - assets/img/volleyball.svg
113
111
  - assets/img/youtube-white.svg
114
112
  - assets/img/yt-loading.png
115
- - assets/js/dist/kcc-theme.bundle.js
116
113
  - assets/js/script/all.js
117
114
  - assets/js/script/babelTest.js
118
115
  - assets/js/script/footerDate.js
119
116
  - assets/js/script/lazyLoad.js
120
117
  - assets/js/script/searchToggle.js
121
118
  - assets/js/script/test.js
119
+ - assets/js/theme/kcc-theme.5289a02005c9c97c90cd.bundle.js
122
120
  - assets/scss/0-tools/_ie-only.scss
123
121
  - assets/scss/0-tools/_vars.scss
124
122
  - assets/scss/1-base/_buttons.scss
@@ -144,7 +142,7 @@ files:
144
142
  - assets/scss/3-layout/_posts.scss
145
143
  - assets/scss/4-pages/index/_home.scss
146
144
  - assets/scss/content.scss
147
- - assets/scss/main.scss
145
+ - assets/scss/kcc-theme.scss
148
146
  - assets/vendor/css/ajax-loader.gif
149
147
  - assets/vendor/css/bootstrap.min.css
150
148
  - assets/vendor/css/fonts/slick.eot
@@ -158,7 +156,6 @@ files:
158
156
  - assets/vendor/js/jquery.min.js
159
157
  - assets/vendor/js/popper.min.js
160
158
  - assets/vendor/js/slick.min.js
161
- - uploads/uploads-placeholder.txt
162
159
  homepage: https://github.com/KankakeeCommunityCollege/kcc-gem-theme
163
160
  licenses:
164
161
  - MIT
@@ -1,13 +0,0 @@
1
- <div class="container">
2
- <div class="row">
3
- <div class="col">
4
- <h3 class="typography__upcoming-events"><span class="events__bottom-underline">Announcements</span></h3>
5
- </div>
6
- </div>
7
- <div class="row">
8
- <div class="col">
9
- <h4>{{ announcement.title }}</h4>
10
- <p>{{ announcement.content }}</p>
11
- </div>
12
- </div>
13
- </div>
@@ -1,8 +0,0 @@
1
- <div id="fb-root"></div>
2
- <script>(function(d, s, id) {
3
- var js, fjs = d.getElementsByTagName(s)[0];
4
- if (d.getElementById(id)) return;
5
- js = d.createElement(s); js.id = id;
6
- js.src = 'https://connect.facebook.net/en_US/sdk.js#xfbml=1&version=v3.0';
7
- fjs.parentNode.insertBefore(js, fjs);
8
- }(document, 'script', 'facebook-jssdk'));</script>
@@ -1,5 +0,0 @@
1
-
2
- <div class="fb-widget__heading-margin">
3
- <h4 class="typography__social-accounts">Facebook</h4>
4
- </div>
5
- <div class="fb-page" data-href="https://www.facebook.com/KankakeeCommunityCollege/" data-width="500" data-height="800" data-tabs="timeline" data-small-header="false" data-adapt-container-width="true" data-hide-cover="false" data-show-facepile="true"><blockquote cite="https://www.facebook.com/KankakeeCommunityCollege/" class="fb-xfbml-parse-ignore"><a href="https://www.facebook.com/KankakeeCommunityCollege/">Kankakee Community College</a></blockquote></div>
@@ -1,6 +0,0 @@
1
- <!-- Google Tag Manager (noscript) -->
2
-
3
- <!-- Place appropriate Google Tag Manager noscript here
4
- ======================================================= -->
5
-
6
- <!-- End Google Tag Manager (noscript) -->
@@ -1,6 +0,0 @@
1
- <!-- Google Tag Manager -->
2
-
3
- <!-- Place appropriate Google Tag Manager script here
4
- ===================================================== -->
5
-
6
- <!-- End Google Tag Manager -->
@@ -1,15 +0,0 @@
1
- <!-- Bootstrap 4 Beta stylesheet CDN link -->
2
- <!-- <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous"> -->
3
- <link rel="stylesheet" href="{{ page.baseurl }}assets/vendor/css/bootstrap.min.css">
4
- <!-- Slick.js v1.8.1 stylesheet followed by slick-theme stylesheet -->
5
- <link rel="stylesheet" type="text/css" href="{{ page.baseurl }}assets/vendor/css/slick.min.css"/>
6
- <link rel="stylesheet" type="text/css" href="{{ page.baseurl }}assets/vendor/css/slick-theme.min.css"/>
7
- <!-- Typkit font for local nav's "FOUNDATION" header -->
8
- <link rel="stylesheet" href="http://use.typekit.net/mli7lsm.css">
9
- <!-- Link to Google Font's "Roboto" font -->
10
- <link href="http://fonts.googleapis.com/css?family=Roboto:400,500,700,900" rel="stylesheet">
11
- <!-- Link to Google Font's "Open Sans" font -->
12
- <link href="http://fonts.googleapis.com/css?family=Open+Sans:400,700" rel="stylesheet">
13
- <!-- Link to Google Font's "Oswald" font -->
14
- <link href="http://fonts.googleapis.com/css?family=Oswald:300,400,500,600" rel="stylesheet">
15
- <link href="http://fonts.googleapis.com/css?family=Libre+Franklin:300,500,700" rel="stylesheet">
@@ -1,32 +0,0 @@
1
- <div class="text-center">
2
- <span>
3
- <a href="http://www.facebook.com/KankakeeCommunityCollege/" class="social-icons__links" target="_blank" rel="noopener">
4
- <img src="{{page.baseurl}}assets/img/facebook-f_white.svg" class="social-icons__icons" alt="Facebook icon, link to the KCC Facebook page">
5
- </a>
6
- </span>
7
- <span>
8
- <a href="http://twitter.com/KCCedu" class="social-icons__links" target="_blank" rel="noopener">
9
- <img src="{{page.baseurl}}assets/img/twitter-white.svg" class="social-icons__icons" alt="Twitter icon, link to KCC Twitter page">
10
- </a>
11
- </span>
12
- <span>
13
- <a href="http://www.instagram.com/kccedu/" class="social-icons__links" target="_blank" rel="noopener">
14
- <img src="{{page.baseurl}}assets/img/instagram-white.svg" class="social-icons__icons" alt="Instagram icon, link to KCC Instagram page">
15
- </a>
16
- </span>
17
- <span>
18
- <a href="http://www.youtube.com/user/KankakeeCommCollege" class="social-icons__links" target="_blank" rel="noopener">
19
- <img src="{{page.baseurl}}assets/img/youtube-white.svg" class="social-icons__icons" alt="YouTube icon, link to KCC YouTube page">
20
- </a>
21
- </span>
22
- <span>
23
- <a href="http://www.pinterest.com/kccedu/" class="social-icons__links" target="_blank" rel="noopener">
24
- <img src="{{page.baseurl}}assets/img/pinterest-p_white.svg" class="social-icons__icons" alt="Pinterest icon, link to KCC Pinterest page">
25
- </a>
26
- </span>
27
- <span>
28
- <a href="http://www.linkedin.com/company/kankakee-community-college" class="social-icons__links" target="_blank" rel="noopener">
29
- <img src="{{page.baseurl}}assets/img/linkedin-white.svg" class="social-icons__icons" alt="LinkedIn icon, link to KCC LinkedIn page">
30
- </a>
31
- </span>
32
- </div>
@@ -1,4 +0,0 @@
1
-
2
- <div>
3
- <a data-tweet-limit="5" class="twitter-timeline" href="https://twitter.com/KCCedu?ref_src=twsrc%5Etfw">Tweets by KCCedu</a> <script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>
4
- </div>
@@ -1,9 +0,0 @@
1
- <!-- CDN links to Bootstrap 4 beta dependancies -->
2
- <!-- jQuery is required for BS4 -->
3
- <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js" integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8=" crossorigin="anonymous"></script>
4
- <!-- Poppers for BS4 -->
5
- <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
6
- <!-- The BS4 JS -->
7
- <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
8
- <!-- Link to the Slicks Slider's Slick.js javascript (must occur after jquery) -->
9
- <script type="text/javascript" src="https://cdn.jsdelivr.net/gh/kenwheeler/slick@1.8.1/slick/slick.min.js" crossorigin="anonymous"></script>
@@ -1 +0,0 @@
1
- Holding the place of the uploads directory