|
|
Line 1: |
Line 1: |
| <noinclude>
| |
| To insert this widget, use the following code:
| |
|
| |
|
| <syntaxhighlight lang=moin>{{#widget:Timeline|id=1xuY4upIooEeszZ_lCmeNx24eSFWe0rHe9ZdqH2xqVNk}}</syntaxhighlight> | | Â Â Â Â <script type="text/javascript"> |
| <link rel="stylesheet" href="https://cdn.knightlab.com/libs/timeline3/latest/css/themes/timeline.theme.dark.css">
| | Â Â Â Â Â Â var additionalOptions = { |
| == Parameters == | | Â Â Â Â Â Â Â Â font: 'opensans-gentiumbook' |
| * '''id''' - timeline id (everything after "''source=''")
| | Â Â Â Â Â Â } |
| * '''height''' timeline height, default = 650 (px)
| |
| * '''width''' timeline width, 100% is default, can be % or pixels (without %)
| |
| * '''zoom''' zoom ("initial zoom") in the timeline embed code
| |
| * '''theme''' theme("theme") in the timeline embed code
| |
|
| |
|
| This widget lets you add a [https://timeline.knightlab.com/ Timeline] to your wiki page.
| | Â Â Â Â Â Â timeline = new TL.Timeline('timeline-embed', |
| | Â Â Â Â Â Â 'https://docs.google.com/spreadsheets/d/1cWqQBZCkX9GpzFtxCWHoqFXCHg-ylTVUWlnrdYMzKUI/pubhtml', |
| | Â Â Â Â Â Â additionalOptions); |
| | Â Â Â Â </script> |
|
| |
|
| == Using this widget == | | Â Â Â Â <!-- or, if you have created your own CSS file... --> |
| For information on how to use this widget, see the [http://www.mediawikiwidgets.org/Timeline widget description page on MediaWikiWidgets.org].
| | Â Â Â Â <script type="text/javascript"> |
| | Â Â Â Â Â Â var additionalOptions = { |
| | Â Â Â Â Â Â Â Â font: '/css/my-custom-timeline-fonts.css' |
| | Â Â Â Â Â Â } |
|
| |
|
| | Â Â Â Â Â Â timeline = new TL.Timeline('timeline-embed', |
| | Â Â Â Â Â Â 'https://docs.google.com/spreadsheets/d/1cWqQBZCkX9GpzFtxCWHoqFXCHg-ylTVUWlnrdYMzKUI/pubhtml', |
| | Â Â Â Â Â Â additionalOptions); |
| | Â Â Â Â </script> |
|
| |
|
| | Â Â Â Â <!-- another way, if you have created your own CSS file... --> |
| | Â Â Â Â <link rel="stylesheet" href="https://cdn.knightlab.com/libs/timeline3/latest/css/themes/timeline.theme.dark.css"> |
| | Â Â Â Â <script type="text/javascript"> |
| | Â Â Â Â Â Â var additionalOptions = { |
| | Â Â Â Â Â Â Â Â font: null |
| | Â Â Â Â Â Â } |
|
| |
|
| <style>
| | Â Â Â Â Â Â timeline = new TL.Timeline('timeline-embed', |
| iframe {
| | Â Â Â Â Â Â 'https://docs.google.com/spreadsheets/d/1cWqQBZCkX9GpzFtxCWHoqFXCHg-ylTVUWlnrdYMzKUI/pubhtml', |
| Â Â Â Â /*!
| | Â Â Â Â Â Â Â additionalOptions); |
| Timeline JS 3
| | Â Â Â Â </script> |
|
| |
| Designed and built by Zach Wise for the Northwestern University Knight Lab
| |
|
| |
| This Source Code Form is subject to the terms of the Mozilla Public
| |
| License, v. 2.0. If a copy of the MPL was not distributed with this
| |
| file, You can obtain one at https://mozilla.org/MPL/2.0/.
| |
| Â | |
| */
| |
| /* Includes
| |
| ================================================== */
| |
| /* VARIABLES
| |
| THEME DARK
| |
| ----------------------------------------------------- */
| |
| /* ICON PATH
| |
| ================================================== */
| |
| /* TYPEFACE
| |
| ================================================== */
| |
| /* COLOR SCHEME
| |
| ================================================== */
| |
| /* UI COLOR
| |
| ================================================== */
| |
| /* UI
| |
| ================================================== */
| |
| /* Animation
| |
| ================================================== */
| |
| /* GFX
| |
| ================================================== */
| |
| /*!
| |
| Timeline JS 3
| |
| Â | |
| Designed and built by Zach Wise for the Northwestern University Knight Lab
| |
| Â | |
| This Source Code Form is subject to the terms of the Mozilla Public
| |
| License, v. 2.0. If a copy of the MPL was not distributed with this
| |
| file, You can obtain one at https://mozilla.org/MPL/2.0/.
| |
| Â | |
| */
| |
| /* Includes
| |
| ================================================== */
| |
| /* Mixins.less
| |
| Snippets of reusable CSS to develop faster and keep code readable
| |
| * ----------------------------------------------------------------- */
| |
| .tl-timeline {
| |
| Â font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
| |
| Â /* VCard
| |
| ================================================== */
| |
| }
| |
| .tl-timeline h1, | |
| .tl-timeline h2,
| |
| .tl-timeline h3,
| |
| .tl-timeline h4,
| |
| .tl-timeline h5,
| |
| .tl-timeline h6 {
| |
| Â color: #FFF;
| |
| }
| |
| .tl-timeline h1,
| |
| .tl-timeline h2,
| |
| .tl-timeline h3 {
| |
| Â font-size: 36px;
| |
| Â line-height: 36px;
| |
| }
| |
| .tl-timeline h1 small,
| |
| .tl-timeline h2 small,
| |
| .tl-timeline h3 small {
| |
| Â font-size: 24px;
| |
| Â line-height: 24px;
| |
| }
| |
| .tl-timeline h4,
| |
| .tl-timeline h5,
| |
| .tl-timeline h6 {
| |
| Â font-size: 24px;
| |
| Â line-height: 24px;
| |
| Â margin-bottom: 0px;
| |
| }
| |
| .tl-timeline h4 small,
| |
| .tl-timeline h5 small,
| |
| .tl-timeline h6 small {
| |
| Â font-size: 15px;
| |
| Â line-height: 15px;
| |
| }
| |
| .tl-timeline h2.tl-headline-title {
| |
| Â font-size: 46px;
| |
| Â line-height: 46px;
| |
| }
| |
| .tl-timeline h2.tl-headline-title small {
| |
| Â display: block;
| |
| Â margin-top: 5px;
| |
| Â font-size: 24px;
| |
| Â line-height: 24px;
| |
| }
| |
| .tl-timeline h2 {
| |
| Â margin-top: 20px;
| |
| Â margin-bottom: 5px;
| |
| }
| |
| .tl-timeline p {
| |
| Â margin-top: 5px;
| |
| Â margin-bottom: 10px;
| |
| Â font-size: 15px;
| |
| Â line-height: 1.42857143;
| |
| Â color: #ffffff;
| |
| }
| |
| .tl-timeline p.lead {
| |
| Â font-size: 24px;
| |
| }
| |
| .tl-timeline p a {
| |
| Â /*
| |
| color: lighten(@color-dark, 40%);
| |
| text-decoration: none;
| |
| background-image: -moz-linear-gradient(top, fade(lighten(@color-dark, 40%), 0%) 50%, fade(lighten(@color-dark, 40%), 60%) 50%);
| |
| background-image: -webkit-linear-gradient(top, fade(lighten(@color-dark, 40%), 0%) 50%, fade(lighten(@color-dark, 40%), 60%) 50%);
| |
| background-image: -o-linear-gradient(top, fade(lighten(@color-dark, 40%), 0%) 50%, fade(lighten(@color-dark, 40%), 60%) 50%);
| |
| background-image: linear-gradient(to bottom, fade(lighten(@color-dark, 40%), 0%) 50%, fade(lighten(@color-dark, 40%), 60%) 50%);
| |
| background-repeat: repeat-x;
| |
| background-size: 2px 2px;
| |
| background-position: 0 @base-font-size+2;
| |
| text-shadow: -2px -1px 0 white, 2px -1px 0 white, -2px 1px 0 white, 2px 1px 0 white;
| |
| &:hover,
| |
| &:focus {
| |
| color:@color-theme;
| |
| text-decoration: none;
| |
| }
| |
| */
| |
| Â color: #ffffff;
| |
| Â text-decoration: underline;
| |
| }
| |
| .tl-timeline p a:hover,
| |
| .tl-timeline p a:focus {
| |
| Â color: #c34528;
| |
| }
| |
| @media (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 144dpi) {
| |
| Â .tl-timeline p a {
| |
| Â Â text-decoration: underline;
| |
| Â Â background-image: none;
| |
| Â Â text-shadow: none;
| |
| Â }
| |
| Â .tl-timeline p a:hover,
| |
| Â .tl-timeline p a:focus {
| |
| Â Â color: #c34528;
| |
| Â Â text-decoration: underline;
| |
| Â }
| |
| }
| |
| .tl-timeline b,
| |
| .tl-timeline strong {
| |
| Â font-weight: bold;
| |
| }
| |
| .tl-timeline i,
| |
| .tl-timeline em {
| |
| Â font-style: italic;
| |
| }
| |
| .tl-timeline a {
| |
| Â text-decoration: none;
| |
| Â color: #c34528;
| |
| }
| |
| .tl-timeline a:hover {
| |
| Â text-decoration: underline;
| |
| Â color: #6e2717;
| |
| }
| |
| .tl-timeline .tl-caption,
| |
| .tl-timeline .tl-credit,
| |
| .tl-timeline .tl-slidenav-next,
| |
| .tl-timeline .tl-slidenav-previous {
| |
| Â font-size: 11px;
| |
| Â line-height: 11px;
| |
| }
| |
| .tl-timeline .tl-caption a,
| |
| .tl-timeline .tl-credit a,
| |
| .tl-timeline .tl-slidenav-next a,
| |
| .tl-timeline .tl-slidenav-previous a {
| |
| Â color: #FFF;
| |
| }
| |
| .tl-timeline .tl-makelink {
| |
| Â word-break: break-all;
| |
| Â word-break: break-word;
| |
| Â -webkit-hyphens: auto;
| |
| Â -moz-hyphens: auto;
| |
| Â hyphens: auto;
| |
| }
| |
| .tl-timeline blockquote,
| |
| .tl-timeline blockquote p {
| |
| Â font-family: "Georgia", "Times New Roman", Times, serif;
| |
| Â color: #ffffff;
| |
| Â font-size: 24px;
| |
| Â line-height: 24px;
| |
| Â text-align: left;
| |
| Â background: transparent;
| |
| Â border: 0px;
| |
| Â padding: 0px;
| |
| }
| |
| .tl-timeline blockquote cite,
| |
| .tl-timeline blockquote p cite {
| |
| Â font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
| |
| Â font-size: 11px;
| |
| Â color: #ffffff;
| |
| Â display: block;
| |
| Â text-align: right;
| |
| Â font-style: normal;
| |
| }
| |
| .tl-timeline blockquote cite:before,
| |
| .tl-timeline blockquote p cite:before {
| |
| Â content: "\2014";
| |
| }
| |
| .tl-timeline blockquote p:before {
| |
| Â content: open-quote;
| |
| Â display: inline-block;
| |
| Â font-size: 36px;
| |
| Â position: relative;
| |
| Â top: 8px;
| |
| Â margin-right: 5px;
| |
| }
| |
| .tl-timeline blockquote p:after {
| |
| Â content: close-quote;
| |
| Â display: inline-block;
| |
| Â font-size: 36px;
| |
| Â position: relative;
| |
| Â top: 8px;
| |
| Â margin-left: 3px;
| |
| }
| |
| .tl-timeline blockquote {
| |
| Â margin: 10px;
| |
| }
| |
| .tl-timeline blockquote p {
| |
| Â margin: 0;
| |
| }
| |
| .tl-timeline .vcard {
| |
| Â font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
| |
| Â font-size: 15px;
| |
| Â line-height: 15px;
| |
| Â margin-bottom: 15px;
| |
| Â margin-top: 10px;
| |
| }
| |
| .tl-timeline .vcard:before,
| |
| .tl-timeline .vcard:after {
| |
| Â display: table;
| |
| Â content: "";
| |
| }
| |
| .tl-timeline .vcard:after {
| |
| Â clear: both;
| |
| }
| |
| .tl-timeline .vcard .twitter-date {
| |
| Â text-align: left;
| |
| Â font-size: 11px;
| |
| }
| |
| .tl-timeline .vcard .author {
| |
| Â float: right;
| |
| }
| |
| .tl-timeline .vcard a {
| |
| Â color: #ffffff;
| |
| Â text-decoration: none;
| |
| }
| |
| .tl-timeline .vcard a:hover {
| |
| Â text-decoration: none;
| |
| }
| |
| .tl-timeline .vcard a:hover .fn,
| |
| .tl-timeline .vcard a:hover .nickname {
| |
| Â color: #c34528;
| |
| }
| |
| .tl-timeline .vcard .fn,
| |
| .tl-timeline .vcard .nickname {
| |
| Â padding-left: 42px;
| |
| }
| |
| .tl-timeline .vcard .fn {
| |
| Â display: block;
| |
| Â font-weight: bold;
| |
| }
| |
| .tl-timeline .vcard .nickname {
| |
| Â margin-top: 1px;
| |
| Â display: block;
| |
| Â color: #ffffff;
| |
| }
| |
| .tl-timeline .vcard .avatar {
| |
| Â float: left;
| |
| Â display: block;
| |
| Â width: 32px;
| |
| Â height: 32px;
| |
| }
| |
| .tl-timeline .vcard .avatar img {
| |
| Â -moz-border-radius: 5px;
| |
| Â -webkit-border-radius: 5px;
| |
| Â border-radius: 5px;
| |
| }
| |
| .tl-timeline .tl-text ul {
| |
| Â padding: 0px;
| |
| Â padding-left: 30px;
| |
| Â margin: 0;
| |
| }
| |
| .tl-timeline .tl-text ul li {
| |
| Â margin-bottom: 5px;
| |
| }
| |
| .tl-timeline .tl-button-calltoaction {
| |
| Â cursor: pointer;
| |
| Â font-weight: bold;
| |
| Â padding-top: 10px;
| |
| Â margin-bottom: 10px;
| |
| Â padding-bottom: 10px;
| |
| }
| |
| .tl-timeline .tl-button-calltoaction .tl-button-calltoaction-text {
| |
| Â display: inline-block;
| |
| Â background-color: #c34528;
| |
| Â color: #fff;
| |
| Â padding: 10px 15px 10px 15px;
| |
| Â border-radius: 7px;
| |
| }
| |
| .tl-timeline .tl-note {
| |
| Â display: block;
| |
| Â font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
| |
| Â font-style: italic;
| |
| Â background-color: #e5e5e5;
| |
| Â font-size: 15px;
| |
| Â line-height: 17px;
| |
| Â padding: 10px;
| |
| Â -webkit-border-radius: 7px;
| |
| Â -moz-border-radius: 7px;
| |
| Â border-radius: 7px;
| |
| Â color: #8a6d3b;
| |
| Â border: 1px solid #faebcc;
| |
| Â text-shadow: none;
| |
| }
| |
| @media only screen and (max-width: 800px), only screen and (max-device-width: 800px) {
| |
| Â .tl-timeline h1,
| |
| Â .tl-timeline h2,
| |
| Â .tl-timeline h3 {
| |
| Â Â font-size: 36px;
| |
| Â Â line-height: 36px;
| |
| Â }
| |
| }
| |
| @media only screen and (max-width: 500px), only screen and (max-device-width: 500px) {
| |
| Â .tl-timeline h1,
| |
| Â .tl-timeline h2,
| |
| Â .tl-timeline h3 {
| |
| Â Â font-size: 32px;
| |
| Â Â line-height: 32px;
| |
| Â }
| |
| }
| |
| .tl-skinny h2 {
| |
| Â margin-top: 0px;
| |
| }
| |
| /* Icons
| |
| ================================================== */
| |
| @font-face {
| |
| Â font-family: 'tl-icons';
| |
| Â src: url('../icons/tl-icons.eot');
| |
| Â src: url('../icons/tl-icons.eot?#iefix') format('embedded-opentype'), url('../icons/tl-icons.ttf') format('truetype'), url('../icons/tl-icons.woff2') format('woff2'), url('../icons/tl-icons.woff') format('woff'), url('../icons/tl-icons.svg#tl-icons') format('svg');
| |
| Â font-weight: normal;
| |
| Â font-style: normal;
| |
| }
| |
| [class^="tl-icon-"],
| |
| [class*=" tl-icon-"] {
| |
| Â font-family: 'tl-icons';
| |
| Â speak: none;
| |
| Â font-style: normal;
| |
| Â font-weight: normal;
| |
| Â font-variant: normal;
| |
| Â text-transform: none;
| |
| Â line-height: 1;
| |
| Â /* Better Font Rendering =========== */
| |
| Â -webkit-font-smoothing: antialiased;
| |
| Â -moz-osx-font-smoothing: grayscale;
| |
| }
| |
| .tl-icon-vine:after {
| |
| Â content: "\e64d";
| |
| }
| |
| .tl-icon-wikipedia:after { | |
| Â content: "\e64e";
| |
| }
| |
| .tl-icon-chevron-right:after {
| |
| Â content: "\e64f";
| |
| }
| |
| .tl-icon-chevron-left:after {
| |
| Â content: "\e650";
| |
| }
| |
| .tl-icon-youtube-logo:after {
| |
| Â content: "\e651";
| |
| }
| |
| .tl-icon-foursquare:after {
| |
| Â content: "\e652";
| |
| }
| |
| .tl-icon-camera-retro:after {
| |
| Â content: "\e653";
| |
| }
| |
| .tl-icon-doc:after {
| |
| Â content: "\e654";
| |
| }
| |
| .tl-icon-weibo:after {
| |
| Â content: "\e655";
| |
| }
| |
| .tl-icon-resize-horizontal:after {
| |
| Â content: "\e656";
| |
| }
| |
| .tl-icon-resize-vertical:after {
| |
| Â content: "\e657";
| |
| }
| |
| .tl-icon-resize-full:after {
| |
| Â content: "\e658";
| |
| }
| |
| .tl-icon-resize-small:after {
| |
| Â content: "\e659";
| |
| }
| |
| .tl-icon-twitter:after {
| |
| Â content: "\e62b";
| |
| }
| |
| .tl-icon-google-plus:after {
| |
| Â content: "\e62c";
| |
| }
| |
| .tl-icon-video:after { | |
| Â content: "\e62d";
| |
| }
| |
| .tl-icon-youtube:after {
| |
| Â content: "\e62d";
| |
| }
| |
| .tl-icon-plaintext:after {
| |
| Â content: "\e62e";
| |
| }
| |
| .tl-icon-storify:after {
| |
| Â content: "\e62e";
| |
| }
| |
| .tl-icon-image-v2:after {
| |
| Â content: "\e62f";
| |
| }
| |
| .tl-icon-quote-v2:after {
| |
| Â content: "\e630";
| |
| }
| |
| .tl-icon-zoom-in:after {
| |
| Â content: "\e631";
| |
| }
| |
| .tl-icon-zoom-out:after {
| |
| Â content: "\e632";
| |
| }
| |
| .tl-icon-list:after {
| |
| Â content: "\e633";
| |
| }
| |
| .tl-icon-music:after {
| |
| Â content: "\e634";
| |
| }
| |
| .tl-icon-spotify:after {
| |
| Â content: "\e634";
| |
| }
| |
| .tl-icon-location:after {
| |
| Â content: "\e635";
| |
| }
| |
| .tl-icon-googlemaps:after {
| |
| Â content: "\e635";
| |
| }
| |
| .tl-icon-web:after {
| |
| Â content: "\e636";
| |
| }
| |
| .tl-icon-share-v2:after {
| |
| Â content: "\e637";
| |
| }
| |
| .tl-icon-soundcloud:after {
| |
| Â content: "\e639";
| |
| }
| |
| .tl-icon-video-v2:after {
| |
| Â content: "\e63a";
| |
| }
| |
| .tl-icon-dailymotion:after {
| |
| Â content: "\e63a";
| |
| }
| |
| .tl-icon-tumblr:after {
| |
| Â content: "\e63b";
| |
| }
| |
| .tl-icon-lastfm:after {
| |
| Â content: "\e63c";
| |
| }
| |
| .tl-icon-github:after {
| |
| Â content: "\e63d";
| |
| }
| |
| .tl-icon-goback:after {
| |
| Â content: "\e63e";
| |
| }
| |
| .tl-icon-goend:after {
| |
| Â content: "\e969";
| |
| }
| |
| .tl-icon-prev2:after {
| |
| Â content: "\ea23";
| |
| }
| |
| .tl-icon-next2:after {
| |
| Â content: "\ea24";
| |
| }
| |
| .tl-icon-doc-v2:after {
| |
| Â content: "\e63f";
| |
| }
| |
| .tl-icon-googledrive:after {
| |
| Â content: "\e640";
| |
| }
| |
| .tl-icon-facebook:after {
| |
| Â content: "\e641";
| |
| }
| |
| .tl-icon-flickr:after {
| |
| Â content: "\e642";
| |
| }
| |
| .tl-icon-dribbble:after {
| |
| Â content: "\e643";
| |
| }
| |
| .tl-icon-image:after {
| |
| Â content: "\e605";
| |
| }
| |
| .tl-icon-vimeo:after {
| |
| Â content: "\e606";
| |
| }
| |
| .tl-icon-instagram:after {
| |
| Â content: "\e644";
| |
| }
| |
| .tl-icon-pinterest:after {
| |
| Â content: "\e645";
| |
| }
| |
| .tl-icon-arrow-left:after {
| |
| Â content: "\e646";
| |
| }
| |
| .tl-icon-arrow-down:after {
| |
| Â content: "\e647";
| |
| }
| |
| .tl-icon-arrow-up:after {
| |
| Â content: "\e648";
| |
| }
| |
| .tl-icon-arrow-right:after {
| |
| Â content: "\e649";
| |
| }
| |
| .tl-icon-share:after {
| |
| Â content: "\e64a";
| |
| }
| |
| .tl-icon-blockquote:after {
| |
| Â content: "\e64b";
| |
| }
| |
| .tl-icon-evernote:after {
| |
| Â content: "\e64c";
| |
| }
| |
| .tl-icon-mappin:after {
| |
| Â content: "\e600";
| |
| }
| |
| .tl-icon-swipe-right:after {
| |
| Â content: "\e601";
| |
| }
| |
| .tl-icon-swipe-left:after {
| |
| Â content: "\e602";
| |
| }
| |
| .tl-icon-touch-spread:after {
| |
| Â content: "\e603";
| |
| }
| |
| .tl-icon-touch-pinch:after {
| |
| Â content: "\e604";
| |
| }
| |
| /* Disable Text selection when dragging
| |
| ================================================== */
| |
| .tl-dragging {
| |
| Â -webkit-touch-callout: none;
| |
| Â -webkit-user-select: none;
| |
| Â -moz-user-select: none;
| |
| Â -ms-user-select: none;
| |
| Â -o-user-select: none;
| |
| Â user-select: none;
| |
| }
| |
| /* MenuBar
| |
| ================================================== */
| |
| .tl-menubar {
| |
| Â position: absolute;
| |
| Â z-index: 11;
| |
| Â text-align: center;
| |
| Â color: #333;
| |
| Â overflow: hidden;
| |
| Â border-bottom-right-radius: 10px;
| |
| Â border-top-right-radius: 10px;
| |
| Â top: 100%;
| |
| Â left: 50%;
| |
| Â left: 0;
| |
| }
| |
| /* Skinny
| |
| ================================================== */
| |
| /* Mobile, iPhone
| |
| ================================================== */
| |
| /* Mobile, iPhone and skinny
| |
| ================================================== */
| |
| /* Color
| |
| ================================================== */
| |
| /* | |
| .tl-sizebar.tl-sizebar-inverted {
| |
| border-bottom: 1px solid #FFF;
| |
| //background-color:#000;
| |
| color:#a5a5a5;
| |
| .tl-sizebar-button {
| |
| border-left: 1px solid darken(@color-background, 70);
| |
| //color:#a5a5a5;
| |
| }
| |
| .tl-sizebar-button:hover {
| |
| //background:@color-theme;
| |
| color:@color-background;
| |
| }
| |
| }
| |
| .tl-sizebar.tl-sizebar-inverted:before {
| |
| background-color:#000;
| |
| //.gradient-vertical (rgba(0,0,0,0.25), rgba(0,0,0,1));
| |
| //.translucent-background(rgb(0,0,0), .5);
| |
| border-top: 2px solid #000;
| |
| animation: invertToBlack 1s;
| |
| -webkit-animation:invertToBlack 1s;
| |
| }
| |
| */
| |
| @keyframes invertToBlack {
| |
| Â from {
| |
| Â Â background-color: #FFF;
| |
| Â }
| |
| Â to {
| |
| Â Â background-color: #000;
| |
| Â }
| |
| }
| |
| @-webkit-keyframes invertToBlack {
| |
| Â from {
| |
| Â Â background: #FFF;
| |
| Â }
| |
| Â to {
| |
| Â Â background: #000;
| |
| Â }
| |
| }
| |
| @keyframes invertToWhite {
| |
| Â from {
| |
| Â Â background-color: #000;
| |
| Â }
| |
| Â to {
| |
| Â Â background-color: #FFF;
| |
| Â }
| |
| }
| |
| @-webkit-keyframes invertToWhite {
| |
| Â from {
| |
| Â Â background: #000;
| |
| Â }
| |
| Â to {
| |
| Â Â background: #FFF;
| |
| Â }
| |
| }
| |
| /* MenuBar Button
| |
| ================================================== */
| |
| .tl-menubar-button {
| |
| Â border: none;
| |
| Â font-size: 18px;
| |
| Â line-height: 18px;
| |
| Â background-color: rgba(77, 77, 77, 0.9);
| |
| Â cursor: pointer;
| |
| Â padding: 5px 10px 5px 10px;
| |
| Â display: inline-block;
| |
| Â display: block;
| |
| Â color: #000000;
| |
| }
| |
| .tl-menubar-button:disabled {
| |
| Â opacity: 0.33;
| |
| Â cursor: default;
| |
| }
| |
| .tl-menubar-button:hover,
| |
| .tl-menubar-button:focus-visible {
| |
| Â background: #CCC;
| |
| Â color: #333;
| |
| }
| |
| .tl-menubar-button:hover:disabled,
| |
| .tl-menubar-button:focus-visible:disabled {
| |
| Â color: #000000;
| |
| Â background-color: rgba(77, 77, 77, 0.9);
| |
| }
| |
| .tl-mobile .tl-menubar-button {
| |
| Â display: block;
| |
| }
| |
| .tl-mobile .tl-menubar-button:hover {
| |
| Â background-color: rgba(77, 77, 77, 0.67);
| |
| Â color: #808080;
| |
| }
| |
| .tl-mobile .tl-menubar-button:active {
| |
| Â background: #c34528;
| |
| Â color: #333;
| |
| }
| |
| @keyframes invertToBlack {
| |
| Â from {
| |
| Â Â background-color: #FFF;
| |
| Â }
| |
| Â to {
| |
| Â Â background-color: #000;
| |
| Â }
| |
| }
| |
| @-webkit-keyframes invertToBlack {
| |
| Â from {
| |
| Â Â background: #FFF;
| |
| Â }
| |
| Â to {
| |
| Â Â background: #000;
| |
| Â }
| |
| }
| |
| @keyframes invertToWhite {
| |
| Â from {
| |
| Â Â background-color: #000;
| |
| Â }
| |
| Â to {
| |
| Â Â background-color: #FFF;
| |
| Â }
| |
| }
| |
| @-webkit-keyframes invertToWhite {
| |
| Â from {
| |
| Â Â background: #000;
| |
| Â }
| |
| Â to {
| |
| Â Â background: #FFF;
| |
| Â }
| |
| }
| |
| /* MESSAGE
| |
| ================================================== */
| |
| .tl-message,
| |
| .tl-message-full {
| |
| Â width: 100%;
| |
| Â height: 100%;
| |
| Â position: absolute;
| |
| Â display: table;
| |
| Â overflow: hidden;
| |
| Â top: 0px;
| |
| Â left: 0px;
| |
| Â z-index: 99;
| |
| Â margin: auto;
| |
| Â text-align: center;
| |
| }
| |
| .tl-message .tl-message-container,
| |
| .tl-message-full .tl-message-container {
| |
| Â padding: 20px;
| |
| Â margin: 20px;
| |
| Â text-align: center;
| |
| Â vertical-align: middle;
| |
| Â display: table-cell;
| |
| }
| |
| .tl-message .tl-message-container .tl-message-content,
| |
| .tl-message-full .tl-message-container .tl-message-content {
| |
| Â color: #666;
| |
| Â text-align: center;
| |
| Â font-size: 11px;
| |
| Â line-height: 13px;
| |
| Â text-transform: uppercase;
| |
| Â margin-top: 7.5px;
| |
| Â margin-bottom: 7.5px;
| |
| Â text-shadow: 1px 1px 1px #FFF;
| |
| }
| |
| .tl-message .tl-message-container .tl-message-content strong,
| |
| .tl-message-full .tl-message-container .tl-message-content strong {
| |
| Â text-transform: uppercase;
| |
| }
| |
| .tl-message .tl-message-container .tl-loading-icon,
| |
| .tl-message-full .tl-message-container .tl-loading-icon {
| |
| Â width: 30px;
| |
| Â height: 30px;
| |
| Â background-color: #666;
| |
| Â vertical-align: middle;
| |
| Â -webkit-box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.1);
| |
| Â -moz-box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.1);
| |
| Â box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.1);
| |
| Â margin-left: auto;
| |
| Â margin-right: auto;
| |
| Â text-align: center;
| |
| Â -webkit-animation: rotateplane 1.2s infinite ease-in-out;
| |
| Â animation: rotateplane 1.2s infinite ease-in-out;
| |
| }
| |
| @-webkit-keyframes rotateplane {
| |
| Â 0% {
| |
| Â Â -webkit-transform: perspective(120px);
| |
| Â }
| |
| Â 50% {
| |
| Â Â -webkit-transform: perspective(120px) rotateY(180deg);
| |
| Â }
| |
| Â 100% {
| |
| Â Â -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg);
| |
| Â }
| |
| }
| |
| @keyframes rotateplane {
| |
| Â 0% {
| |
| Â Â transform: perspective(120px) rotateX(0deg) rotateY(0deg);
| |
| Â }
| |
| Â 50% {
| |
| Â Â transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
| |
| Â }
| |
| Â 100% {
| |
| Â Â transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
| |
| Â }
| |
| }
| |
| .tl-message-full {
| |
| Â background-color: hsla(0, 0%, 100%, 0.8);
| |
| }
| |
| .tl-message-full [class^="tl-icon-"],
| |
| .tl-message-full [class*=" tl-icon-"] {
| |
| Â color: #666;
| |
| Â font-size: 72px;
| |
| }
| |
| .tl-message-full .tl-message-container .tl-message-content {
| |
| Â font-size: 22px;
| |
| Â line-height: 22px;
| |
| Â text-shadow: none;
| |
| Â color: #666;
| |
| Â text-transform: none;
| |
| Â font-weight: normal;
| |
| }
| |
| .tl-message-full .tl-message-container .tl-message-content .tl-button {
| |
| Â display: inline-block;
| |
| Â cursor: pointer;
| |
| Â background-color: #FFF;
| |
| Â color: #333;
| |
| Â padding: 10px;
| |
| Â margin-top: 10px;
| |
| Â -webkit-border-radius: 7px;
| |
| Â -moz-border-radius: 7px;
| |
| Â border-radius: 7px;
| |
| }
| |
| /* TL.TimeNav
| |
| ================================================== */
| |
| .tl-timenav {
| |
| Â width: 100%;
| |
| Â background-color: #4d4d4d;
| |
| Â position: relative;
| |
| Â overflow: hidden;
| |
| Â border-top: 1px solid #404040;
| |
| }
| |
| .tl-timenav .tl-timenav-line {
| |
| Â position: absolute;
| |
| Â top: 0;
| |
| Â left: 50%;
| |
| Â width: 1px;
| |
| Â height: 100%;
| |
| Â background-color: #333333;
| |
| Â z-index: 2;
| |
| Â display: none;
| |
| }
| |
| .tl-timenav .tl-timenav-line:before,
| |
| .tl-timenav .tl-timenav-line:after {
| |
| Â font-family: 'tl-icons';
| |
| Â speak: none;
| |
| Â font-style: normal;
| |
| Â font-weight: normal;
| |
| Â font-variant: normal;
| |
| Â text-transform: none;
| |
| Â line-height: 1;
| |
| Â /* Better Font Rendering =========== */
| |
| Â -webkit-font-smoothing: antialiased;
| |
| Â -moz-osx-font-smoothing: grayscale;
| |
| Â color: #c34528;
| |
| Â font-size: 32px;
| |
| Â line-height: 32px;
| |
| Â position: absolute;
| |
| Â left: -14px;
| |
| }
| |
| .tl-timenav .tl-timenav-line:before {
| |
| Â top: -10px;
| |
| }
| |
| .tl-timenav .tl-timenav-line:after {
| |
| Â content: "\e648";
| |
| Â bottom: 24px;
| |
| }
| |
| .tl-timenav .tl-timenav-slider {
| |
| Â position: absolute;
| |
| Â height: 100%;
| |
| Â width: 100%;
| |
| Â top: 0;
| |
| }
| |
| .tl-timenav .tl-timenav-slider.tl-timenav-slider-animate {
| |
| Â -webkit-transition: all 1000ms cubic-bezier(0.77, 0, 0.175, 1);
| |
| Â -moz-transition: all 1000ms cubic-bezier(0.77, 0, 0.175, 1);
| |
| Â -o-transition: all 1000ms cubic-bezier(0.77, 0, 0.175, 1);
| |
| Â transition: all 1000ms cubic-bezier(0.77, 0, 0.175, 1);
| |
| Â -webkit-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
| |
| Â -moz-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
| |
| Â -o-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
| |
| Â transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
| |
| }
| |
| .tl-timenav .tl-timenav-slider .tl-timenav-slider-background {
| |
| Â position: absolute;
| |
| Â height: 100%;
| |
| Â width: 100%;
| |
| Â cursor: move;
| |
| Â z-index: 6;
| |
| }
| |
| .tl-timenav .tl-timenav-slider .tl-timenav-container-mask {
| |
| Â position: absolute;
| |
| Â height: 100%;
| |
| Â top: 0;
| |
| }
| |
| .tl-timenav .tl-timenav-slider .tl-timenav-container-mask .tl-timenav-container {
| |
| Â position: absolute;
| |
| Â height: 100%;
| |
| }
| |
| .tl-timenav .tl-timenav-slider .tl-timenav-container-mask .tl-timenav-container .tl-timenav-item-container {
| |
| Â position: absolute;
| |
| Â height: 100%;
| |
| }
| |
| /* Skinny
| |
| ================================================== */
| |
| /* Mobile, iPhone
| |
| ================================================== */
| |
| /* Mobile, iPhone and skinny
| |
| ================================================== */
| |
| /* TL.TimeMarker
| |
| ================================================== */
| |
| .tl-timemarker {
| |
| Â height: 100%;
| |
| Â position: absolute;
| |
| Â top: 0;
| |
| Â left: 0;
| |
| Â cursor: pointer;
| |
| Â /* Animate Left Width and Top
| |
| ================================================== */
| |
| Â -webkit-transition: left 1000ms cubic-bezier(0.77, 0, 0.175, 1), top 500ms cubic-bezier(0.77, 0, 0.175, 1), height 500ms cubic-bezier(0.77, 0, 0.175, 1), width 1000ms cubic-bezier(0.77, 0, 0.175, 1);
| |
| Â -moz-transition: left 1000ms cubic-bezier(0.77, 0, 0.175, 1), top 500ms cubic-bezier(0.77, 0, 0.175, 1), height 500ms cubic-bezier(0.77, 0, 0.175, 1), width 1000ms cubic-bezier(0.77, 0, 0.175, 1);
| |
| Â -o-transition: left 1000ms cubic-bezier(0.77, 0, 0.175, 1), top 500ms cubic-bezier(0.77, 0, 0.175, 1), height 500ms cubic-bezier(0.77, 0, 0.175, 1), width 1000ms cubic-bezier(0.77, 0, 0.175, 1);
| |
| Â transition: left 1000ms cubic-bezier(0.77, 0, 0.175, 1), top 500ms cubic-bezier(0.77, 0, 0.175, 1), height 500ms cubic-bezier(0.77, 0, 0.175, 1), width 1000ms cubic-bezier(0.77, 0, 0.175, 1);
| |
| Â -webkit-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
| |
| Â -moz-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
| |
| Â -o-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
| |
| Â transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
| |
| Â /* Timespan
| |
| ================================================== */
| |
| Â /* Lines
| |
| ================================================== */
| |
| Â /* Content
| |
| ================================================== */
| |
| Â /* Hover | Focus State
| |
| ================================================== */
| |
| Â /* Hover | Focus Active State
| |
| ================================================== */
| |
| Â /* Focus-visible State
| |
| Â Â ================================================== */
| |
| Â /* Active Markers
| |
| ================================================== */
| |
| Â /* Markers with End Dates
| |
| ================================================== */
| |
| Â /* Markers with End Dates and Hover
| |
| ================================================== */
| |
| Â /* Markers with End Dates and Active
| |
| ================================================== */
| |
| Â /* Markers with End Dates and Active and Hover
| |
| ================================================== */
| |
| }
| |
| .tl-timemarker.tl-timemarker-fast {
| |
| Â -webkit-transition: top 500ms cubic-bezier(0.77, 0, 0.175, 1), height 500ms cubic-bezier(0.77, 0, 0.175, 1), width 500ms cubic-bezier(0.77, 0, 0.175, 1);
| |
| Â -moz-transition: top 500ms cubic-bezier(0.77, 0, 0.175, 1), height 500ms cubic-bezier(0.77, 0, 0.175, 1), width 500ms cubic-bezier(0.77, 0, 0.175, 1);
| |
| Â -o-transition: top 500ms cubic-bezier(0.77, 0, 0.175, 1), height 500ms cubic-bezier(0.77, 0, 0.175, 1), width 500ms cubic-bezier(0.77, 0, 0.175, 1);
| |
| Â transition: top 500ms cubic-bezier(0.77, 0, 0.175, 1), height 500ms cubic-bezier(0.77, 0, 0.175, 1), width 500ms cubic-bezier(0.77, 0, 0.175, 1);
| |
| Â -webkit-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
| |
| Â -moz-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
| |
| Â -o-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
| |
| Â transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
| |
| }
| |
| .tl-timemarker.tl-timemarker-fast .tl-timemarker-content-container {
| |
| Â -webkit-transition: width 500ms cubic-bezier(0.77, 0, 0.175, 1), height 500ms cubic-bezier(0.77, 0, 0.175, 1);
| |
| Â -moz-transition: width 500ms cubic-bezier(0.77, 0, 0.175, 1), height 500ms cubic-bezier(0.77, 0, 0.175, 1);
| |
| Â -o-transition: width 500ms cubic-bezier(0.77, 0, 0.175, 1), height 500ms cubic-bezier(0.77, 0, 0.175, 1);
| |
| Â transition: width 500ms cubic-bezier(0.77, 0, 0.175, 1), height 500ms cubic-bezier(0.77, 0, 0.175, 1);
| |
| }
| |
| .tl-timemarker.tl-timemarker-fast .tl-timemarker-timespan {
| |
| Â -webkit-transition: height 500ms cubic-bezier(0.77, 0, 0.175, 1), width 500ms cubic-bezier(0.77, 0, 0.175, 1);
| |
| Â -moz-transition: height 500ms cubic-bezier(0.77, 0, 0.175, 1), width 500ms cubic-bezier(0.77, 0, 0.175, 1);
| |
| Â -o-transition: height 500ms cubic-bezier(0.77, 0, 0.175, 1), width 500ms cubic-bezier(0.77, 0, 0.175, 1);
| |
| Â transition: height 500ms cubic-bezier(0.77, 0, 0.175, 1), width 500ms cubic-bezier(0.77, 0, 0.175, 1);
| |
| }
| |
| .tl-timemarker .tl-timemarker-timespan {
| |
| Â pointer-events: none;
| |
| Â position: absolute;
| |
| Â margin: 0;
| |
| Â width: 100%;
| |
| Â height: 100%;
| |
| Â background-color: rgba(38, 38, 38, 0.15);
| |
| Â border-top-right-radius: 5px;
| |
| Â border-top-left-radius: 5px;
| |
| Â -webkit-transition: height 500ms cubic-bezier(0.77, 0, 0.175, 1), width 1000ms cubic-bezier(0.77, 0, 0.175, 1);
| |
| Â -moz-transition: height 500ms cubic-bezier(0.77, 0, 0.175, 1), width 1000ms cubic-bezier(0.77, 0, 0.175, 1);
| |
| Â -o-transition: height 500ms cubic-bezier(0.77, 0, 0.175, 1), width 1000ms cubic-bezier(0.77, 0, 0.175, 1);
| |
| Â transition: height 500ms cubic-bezier(0.77, 0, 0.175, 1), width 1000ms cubic-bezier(0.77, 0, 0.175, 1);
| |
| Â -webkit-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
| |
| Â -moz-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
| |
| Â -o-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
| |
| Â transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
| |
| }
| |
| .tl-timemarker .tl-timemarker-timespan .tl-timemarker-timespan-content {
| |
| Â display: none;
| |
| Â position: absolute;
| |
| Â width: 100%;
| |
| Â background-color: #262626;
| |
| Â border-top-left-radius: 5px;
| |
| Â border-top-right-radius: 5px;
| |
| Â height: 100px;
| |
| Â box-sizing: border-box;
| |
| }
| |
| .tl-timemarker .tl-timemarker-line-right {
| |
| Â display: none;
| |
| Â right: 0px;
| |
| }
| |
| .tl-timemarker .tl-timemarker-line-left {
| |
| Â width: 1px;
| |
| Â left: 0px;
| |
| }
| |
| .tl-timemarker .tl-timemarker-line-left,
| |
| .tl-timemarker .tl-timemarker-line-right {
| |
| Â margin-top: 7px;
| |
| Â -webkit-box-sizing: border-box;
| |
| Â /* Safari/Chrome, other WebKit */
| |
| Â -moz-box-sizing: border-box;
| |
| Â /* Firefox, other Gecko */
| |
| Â box-sizing: border-box;
| |
| Â border-left: 1px solid #0d0d0d;
| |
| Â z-index: 5;
| |
| Â content: " ";
| |
| Â position: absolute;
| |
| Â height: 100%;
| |
| Â -webkit-touch-callout: none;
| |
| Â -webkit-user-select: none;
| |
| Â -khtml-user-select: none;
| |
| Â -moz-user-select: none;
| |
| Â -ms-user-select: none;
| |
| Â user-select: none;
| |
| Â box-shadow: 1px 1px 1px #333;
| |
| }
| |
| .tl-timemarker .tl-timemarker-line-left:after,
| |
| .tl-timemarker .tl-timemarker-line-right:after {
| |
| Â display: block;
| |
| Â content: " ";
| |
| Â position: absolute;
| |
| Â left: -4px;
| |
| Â bottom: 0px;
| |
| Â height: 6px;
| |
| Â width: 6px;
| |
| Â background-color: #000000;
| |
| Â z-index: 8;
| |
| Â -webkit-border-radius: 50%;
| |
| Â -moz-border-radius: 50%;
| |
| Â border-radius: 50%;
| |
| }
| |
| .tl-timemarker .tl-timemarker-content-container {
| |
| Â position: absolute;
| |
| Â background-color: #262626;
| |
| Â border: 0;
| |
| Â border-top-left-radius: 5px;
| |
| Â border-top-right-radius: 5px;
| |
| Â border-bottom-right-radius: 5px;
| |
| Â height: 100%;
| |
| Â width: 100px;
| |
| Â overflow: hidden;
| |
| Â z-index: 6;
| |
| Â -webkit-transition: height 500ms cubic-bezier(0.77, 0, 0.175, 1), width 1000ms cubic-bezier(0.77, 0, 0.175, 1);
| |
| Â -moz-transition: height 500ms cubic-bezier(0.77, 0, 0.175, 1), width 1000ms cubic-bezier(0.77, 0, 0.175, 1);
| |
| Â -o-transition: height 500ms cubic-bezier(0.77, 0, 0.175, 1), width 1000ms cubic-bezier(0.77, 0, 0.175, 1);
| |
| Â transition: height 500ms cubic-bezier(0.77, 0, 0.175, 1), width 1000ms cubic-bezier(0.77, 0, 0.175, 1);
| |
| Â -webkit-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
| |
| Â -moz-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
| |
| Â -o-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
| |
| Â transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
| |
| Â box-sizing: border-box;
| |
| Â border: 1px solid #0d0d0d;
| |
| Â box-shadow: 1px 1px 1px #333;
| |
| }
| |
| .tl-timemarker .tl-timemarker-content-container:hover {
| |
| Â z-index: 9;
| |
| }
| |
| .tl-timemarker .tl-timemarker-content-container .tl-timemarker-content {
| |
| Â position: relative;
| |
| Â overflow: hidden;
| |
| Â height: 100%;
| |
| Â z-index: 8;
| |
| Â padding: 5px;
| |
| Â -webkit-box-sizing: border-box;
| |
| Â /* Safari/Chrome, other WebKit */
| |
| Â -moz-box-sizing: border-box;
| |
| Â /* Firefox, other Gecko */
| |
| Â box-sizing: border-box;
| |
| }
| |
| .tl-timemarker .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-text {
| |
| Â overflow: hidden;
| |
| Â position: relative;
| |
| }
| |
| .tl-timemarker .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-text h2.tl-headline,
| |
| .tl-timemarker .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-text h2.tl-headline p {
| |
| Â display: -webkit-box;
| |
| Â line-clamp: 2;
| |
| Â -webkit-line-clamp: 2;
| |
| Â box-orient: vertical;
| |
| Â -webkit-box-orient: vertical;
| |
| Â text-overflow: ellipsis;
| |
| Â font-size: 12px;
| |
| Â line-height: 12px;
| |
| Â height: 100%;
| |
| Â overflow: hidden;
| |
| Â font-weight: normal;
| |
| Â margin: 0;
| |
| Â color: #4d4d4d;
| |
| Â position: relative;
| |
| }
| |
| .tl-timemarker .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-text h2.tl-headline.tl-headline-fadeout:after,
| |
| .tl-timemarker .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-text h2.tl-headline p.tl-headline-fadeout:after {
| |
| Â content: "";
| |
| Â text-align: right;
| |
| Â position: absolute;
| |
| Â bottom: 0;
| |
| Â right: 0;
| |
| Â width: 100%;
| |
| Â height: 50%;
| |
| Â background: -moz-linear-gradient(top, rgba(38, 38, 38, 0) 0%, #262626 50%);
| |
| Â /* FF3.6+ */
| |
| Â background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(38, 38, 38, 0)), color-stop(50%, #262626));
| |
| Â /* Chrome,Safari4+ */
| |
| Â background: -webkit-linear-gradient(top, rgba(38, 38, 38, 0) 0%, #262626 50%);
| |
| Â /* Chrome10+,Safari5.1+ */
| |
| Â background: -o-linear-gradient(top, rgba(38, 38, 38, 0) 0%, #262626 50%);
| |
| Â /* Opera 11.10+ */
| |
| Â background: -ms-linear-gradient(top, rgba(38, 38, 38, 0) 0%, #262626 50%);
| |
| Â /* IE10+ */
| |
| Â background: linear-gradient(to bottom, rgba(38, 38, 38, 0) 0%, #262626 50%);
| |
| Â /* W3C */
| |
| Â filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='@thecolor', endColorstr='@thecolor', GradientType=0);
| |
| Â /* IE6-9 */
| |
| }
| |
| .tl-timemarker .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-media-container {
| |
| Â float: left;
| |
| Â max-width: 24px;
| |
| Â max-height: 24px;
| |
| Â overflow: hidden;
| |
| Â margin-right: 5px;
| |
| Â height: 100%;
| |
| Â -webkit-box-sizing: border-box;
| |
| Â /* Safari/Chrome, other WebKit */
| |
| Â -moz-box-sizing: border-box;
| |
| Â /* Firefox, other Gecko */
| |
| Â box-sizing: border-box;
| |
| }
| |
| .tl-timemarker .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-media-container .tl-timemarker-media {
| |
| Â max-width: 24px;
| |
| Â max-height: 100%;
| |
| Â opacity: 0.25;
| |
| }
| |
| .tl-timemarker .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-media-container [class^="tl-icon-"],
| |
| .tl-timemarker .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-media-container [class*=" tl-icon-"] {
| |
| Â display: block;
| |
| Â font-size: 24px;
| |
| Â color: #4d4d4d;
| |
| Â margin-top: 0px;
| |
| }
| |
| .tl-timemarker .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-media-container .tl-icon-wikipedia {
| |
| Â font-size: 16px;
| |
| }
| |
| .tl-timemarker .tl-timemarker-content-container .tl-timemarker-content.tl-timemarker-content-small .tl-timemarker-text h2.tl-headline {
| |
| Â display: block;
| |
| Â white-space: nowrap;
| |
| Â text-overflow: ellipsis;
| |
| }
| |
| .tl-timemarker .tl-timemarker-content-container .tl-timemarker-content.tl-timemarker-content-small .tl-timemarker-media-container [class^="tl-icon-"],
| |
| .tl-timemarker .tl-timemarker-content-container .tl-timemarker-content.tl-timemarker-content-small .tl-timemarker-media-container [class*=" tl-icon-"] {
| |
| Â font-size: 12px;
| |
| }
| |
| .tl-timemarker:hover .tl-timemarker-timespan,
| |
| .tl-timemarker:focus .tl-timemarker-timespan {
| |
| Â background-color: rgba(77, 77, 77, 0.25);
| |
| }
| |
| .tl-timemarker:hover .tl-timemarker-timespan .tl-timemarker-timespan-content,
| |
| .tl-timemarker:focus .tl-timemarker-timespan .tl-timemarker-timespan-content {
| |
| Â background-color: #4d4d4d;
| |
| }
| |
| .tl-timemarker:hover .tl-timemarker-timespan .tl-timemarker-line-left,
| |
| .tl-timemarker:focus .tl-timemarker-timespan .tl-timemarker-line-left,
| |
| .tl-timemarker:hover .tl-timemarker-timespan .tl-timemarker-line-right,
| |
| .tl-timemarker:focus .tl-timemarker-timespan .tl-timemarker-line-right {
| |
| Â border-color: #000000;
| |
| }
| |
| .tl-timemarker:hover .tl-timemarker-timespan .tl-timemarker-line-left:after,
| |
| .tl-timemarker:focus .tl-timemarker-timespan .tl-timemarker-line-left:after,
| |
| .tl-timemarker:hover .tl-timemarker-timespan .tl-timemarker-line-right:after,
| |
| .tl-timemarker:focus .tl-timemarker-timespan .tl-timemarker-line-right:after {
| |
| Â background-color: #ffffff;
| |
| }
| |
| .tl-timemarker:hover .tl-timemarker-content-container,
| |
| .tl-timemarker:focus .tl-timemarker-content-container {
| |
| Â background-color: #000000;
| |
| Â border-color: #000000;
| |
| Â -webkit-transition: height 250ms cubic-bezier(0.77, 0, 0.175, 1), width 250ms cubic-bezier(0.77, 0, 0.175, 1);
| |
| Â -moz-transition: height 250ms cubic-bezier(0.77, 0, 0.175, 1), width 250ms cubic-bezier(0.77, 0, 0.175, 1);
| |
| Â -o-transition: height 250ms cubic-bezier(0.77, 0, 0.175, 1), width 250ms cubic-bezier(0.77, 0, 0.175, 1);
| |
| Â transition: height 250ms cubic-bezier(0.77, 0, 0.175, 1), width 250ms cubic-bezier(0.77, 0, 0.175, 1);
| |
| }
| |
| .tl-timemarker:hover .tl-timemarker-content-container.tl-timemarker-content-container-small,
| |
| .tl-timemarker:focus .tl-timemarker-content-container.tl-timemarker-content-container-small {
| |
| Â width: 200px;
| |
| }
| |
| .tl-timemarker:hover .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-text h2.tl-headline,
| |
| .tl-timemarker:focus .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-text h2.tl-headline {
| |
| Â color: #FFF;
| |
| }
| |
| .tl-timemarker:hover .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-text h2.tl-headline.tl-headline-fadeout:after,
| |
| .tl-timemarker:focus .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-text h2.tl-headline.tl-headline-fadeout:after {
| |
| Â background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, #000000 80%);
| |
| Â /* FF3.6+ */
| |
| Â background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(0, 0, 0, 0)), color-stop(80%, #000000));
| |
| Â /* Chrome,Safari4+ */
| |
| Â background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, #000000 80%);
| |
| Â /* Chrome10+,Safari5.1+ */
| |
| Â background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, #000000 80%);
| |
| Â /* Opera 11.10+ */
| |
| Â background: -ms-linear-gradient(top, rgba(0, 0, 0, 0) 0%, #000000 80%);
| |
| Â /* IE10+ */
| |
| Â background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #000000 80%);
| |
| Â /* W3C */
| |
| Â filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='@thecolor', endColorstr='@thecolor', GradientType=0);
| |
| Â /* IE6-9 */
| |
| }
| |
| .tl-timemarker:hover .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-media-container .tl-timemarker-media,
| |
| .tl-timemarker:focus .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-media-container .tl-timemarker-media {
| |
| Â opacity: 1;
| |
| }
| |
| .tl-timemarker:hover .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-media-container [class^="tl-icon-"],
| |
| .tl-timemarker:focus .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-media-container [class^="tl-icon-"],
| |
| .tl-timemarker:hover .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-media-container [class*=" tl-icon-"],
| |
| .tl-timemarker:focus .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-media-container [class*=" tl-icon-"] {
| |
| Â color: #FFF;
| |
| }
| |
| .tl-timemarker:hover.tl-timemarker-active .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-text h2.tl-headline.tl-headline-fadeout:after,
| |
| .tl-timemarker:focus.tl-timemarker-active .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-text h2.tl-headline.tl-headline-fadeout:after {
| |
| Â background: -moz-linear-gradient(top, rgba(51, 51, 51, 0) 0%, #333 80%);
| |
| Â /* FF3.6+ */
| |
| Â background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(51, 51, 51, 0)), color-stop(80%, #333));
| |
| Â /* Chrome,Safari4+ */
| |
| Â background: -webkit-linear-gradient(top, rgba(51, 51, 51, 0) 0%, #333 80%);
| |
| Â /* Chrome10+,Safari5.1+ */
| |
| Â background: -o-linear-gradient(top, rgba(51, 51, 51, 0) 0%, #333 80%);
| |
| Â /* Opera 11.10+ */
| |
| Â background: -ms-linear-gradient(top, rgba(51, 51, 51, 0) 0%, #333 80%);
| |
| Â /* IE10+ */
| |
| Â background: linear-gradient(to bottom, rgba(51, 51, 51, 0) 0%, #333 80%);
| |
| Â /* W3C */
| |
| Â filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='@thecolor', endColorstr='@thecolor', GradientType=0);
| |
| Â /* IE6-9 */
| |
| }
| |
| .tl-timemarker:hover.tl-timemarker-active .tl-timemarker-line-left,
| |
| .tl-timemarker:focus.tl-timemarker-active .tl-timemarker-line-left,
| |
| .tl-timemarker:hover.tl-timemarker-active .tl-timemarker-line-right,
| |
| .tl-timemarker:focus.tl-timemarker-active .tl-timemarker-line-right {
| |
| Â border-color: #FFF;
| |
| }
| |
| .tl-timemarker:hover.tl-timemarker-active .tl-timemarker-line-left:after,
| |
| .tl-timemarker:focus.tl-timemarker-active .tl-timemarker-line-left:after,
| |
| .tl-timemarker:hover.tl-timemarker-active .tl-timemarker-line-right:after,
| |
| .tl-timemarker:focus.tl-timemarker-active .tl-timemarker-line-right:after {
| |
| Â background-color: #FFF;
| |
| }
| |
| .tl-timemarker:focus-visible {
| |
| Â outline: none;
| |
| }
| |
| .tl-timemarker.tl-timemarker-active .tl-timemarker-timespan {
| |
| Â background-color: rgba(51, 51, 51, 0.5);
| |
| Â z-index: 8;
| |
| }
| |
| .tl-timemarker.tl-timemarker-active .tl-timemarker-timespan .tl-timemarker-timespan-content {
| |
| Â background-color: #CCC;
| |
| }
| |
| .tl-timemarker.tl-timemarker-active .tl-timemarker-line-left,
| |
| .tl-timemarker.tl-timemarker-active .tl-timemarker-line-right {
| |
| Â border-color: rgba(204, 204, 204, 0.5);
| |
| Â border-width: 1px;
| |
| Â z-index: 8;
| |
| Â box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.5);
| |
| }
| |
| .tl-timemarker.tl-timemarker-active .tl-timemarker-line-left:after,
| |
| .tl-timemarker.tl-timemarker-active .tl-timemarker-line-right:after {
| |
| Â background-color: #CCC;
| |
| }
| |
| .tl-timemarker.tl-timemarker-active .tl-timemarker-content-container {
| |
| Â background-color: #333;
| |
| Â color: #CCC;
| |
| Â z-index: 9;
| |
| Â border-color: rgba(204, 204, 204, 0.5);
| |
| Â box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
| |
| }
| |
| .tl-timemarker.tl-timemarker-active .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-text h2.tl-headline {
| |
| Â color: #CCC;
| |
| }
| |
| .tl-timemarker.tl-timemarker-active .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-text h2.tl-headline.tl-headline-fadeout:after {
| |
| Â background: -moz-linear-gradient(top, rgba(51, 51, 51, 0) 0%, #333 80%);
| |
| Â /* FF3.6+ */
| |
| Â background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(51, 51, 51, 0)), color-stop(80%, #333));
| |
| Â /* Chrome,Safari4+ */
| |
| Â background: -webkit-linear-gradient(top, rgba(51, 51, 51, 0) 0%, #333 80%);
| |
| Â /* Chrome10+,Safari5.1+ */
| |
| Â background: -o-linear-gradient(top, rgba(51, 51, 51, 0) 0%, #333 80%);
| |
| Â /* Opera 11.10+ */
| |
| Â background: -ms-linear-gradient(top, rgba(51, 51, 51, 0) 0%, #333 80%);
| |
| Â /* IE10+ */
| |
| Â background: linear-gradient(to bottom, rgba(51, 51, 51, 0) 0%, #333 80%);
| |
| Â /* W3C */
| |
| Â filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='@thecolor', endColorstr='@thecolor', GradientType=0);
| |
| Â /* IE6-9 */
| |
| }
| |
| .tl-timemarker.tl-timemarker-active .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-media-container .tl-timemarker-media {
| |
| Â opacity: 1;
| |
| }
| |
| .tl-timemarker.tl-timemarker-active .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-media-container [class^="tl-icon-"],
| |
| .tl-timemarker.tl-timemarker-active .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-media-container [class*=" tl-icon-"] {
| |
| Â color: #CCC;
| |
| }
| |
| .tl-timemarker.tl-timemarker-with-end .tl-timemarker-timespan .tl-timemarker-timespan-content {
| |
| Â display: block;
| |
| }
| |
| .tl-timemarker.tl-timemarker-with-end .tl-timemarker-timespan .tl-timemarker-line-left,
| |
| .tl-timemarker.tl-timemarker-with-end .tl-timemarker-timespan .tl-timemarker-line-right {
| |
| Â z-index: 5;
| |
| }
| |
| .tl-timemarker.tl-timemarker-with-end .tl-timemarker-timespan:after {
| |
| Â display: block;
| |
| Â content: " ";
| |
| Â position: absolute;
| |
| Â left: 0px;
| |
| Â bottom: -7px;
| |
| Â height: 6px;
| |
| Â width: 100%;
| |
| Â background-color: rgba(0, 0, 0, 0.15);
| |
| Â z-index: 6;
| |
| Â -webkit-border-radius: 7px;
| |
| Â -moz-border-radius: 7px;
| |
| Â border-radius: 7px;
| |
| }
| |
| .tl-timemarker.tl-timemarker-with-end .tl-timemarker-content-container.tl-timemarker-content-container-long {
| |
| Â box-shadow: none;
| |
| }
| |
| .tl-timemarker.tl-timemarker-with-end .tl-timemarker-line-right {
| |
| Â display: block;
| |
| }
| |
| .tl-timemarker.tl-timemarker-with-end .tl-timemarker-line-left {
| |
| Â box-shadow: none;
| |
| }
| |
| .tl-timemarker.tl-timemarker-with-end:hover .tl-timemarker-timespan:after {
| |
| Â background-color: rgba(0, 0, 0, 0.35);
| |
| }
| |
| .tl-timemarker.tl-timemarker-with-end.tl-timemarker-active .tl-timemarker-timespan:after {
| |
| Â background-color: rgba(204, 204, 204, 0.5);
| |
| }
| |
| .tl-timemarker.tl-timemarker-with-end.tl-timemarker-active .tl-timemarker-line-left,
| |
| .tl-timemarker.tl-timemarker-with-end.tl-timemarker-active .tl-timemarker-line-right {
| |
| Â border-width: 1px;
| |
| }
| |
| .tl-timemarker.tl-timemarker-with-end.tl-timemarker-active .tl-timemarker-line-left:after,
| |
| .tl-timemarker.tl-timemarker-with-end.tl-timemarker-active .tl-timemarker-line-right:after {
| |
| Â background-color: #CCC !important;
| |
| }
| |
| .tl-timemarker.tl-timemarker-with-end.tl-timemarker-active .tl-timemarker-line-left {
| |
| Â box-shadow: none;
| |
| }
| |
| .tl-timemarker.tl-timemarker-with-end.tl-timemarker-active:hover .tl-timemarker-timespan:after {
| |
| Â background-color: rgba(204, 204, 204, 0.5);
| |
| }
| |
| /* Skinny
| |
| ================================================== */
| |
| /* Mobile, iPhone
| |
| ================================================== */
| |
| /* Mobile, iPhone and skinny
| |
| ================================================== */
| |
| /* TL.TimeMarker
| |
| ================================================== */
| |
| .tl-timeera {
| |
| Â height: 100%;
| |
| Â height: 40px;
| |
| Â position: absolute;
| |
| Â bottom: 0;
| |
| Â left: 0;
| |
| Â pointer-events: none;
| |
| Â z-index: 3;
| |
| Â /* Animate Left Width and Top
| |
| ================================================== */
| |
| Â -webkit-transition: left 1000ms cubic-bezier(0.77, 0, 0.175, 1), top 500ms cubic-bezier(0.77, 0, 0.175, 1), height 500ms cubic-bezier(0.77, 0, 0.175, 1), width 1000ms cubic-bezier(0.77, 0, 0.175, 1);
| |
| Â -moz-transition: left 1000ms cubic-bezier(0.77, 0, 0.175, 1), top 500ms cubic-bezier(0.77, 0, 0.175, 1), height 500ms cubic-bezier(0.77, 0, 0.175, 1), width 1000ms cubic-bezier(0.77, 0, 0.175, 1);
| |
| Â -o-transition: left 1000ms cubic-bezier(0.77, 0, 0.175, 1), top 500ms cubic-bezier(0.77, 0, 0.175, 1), height 500ms cubic-bezier(0.77, 0, 0.175, 1), width 1000ms cubic-bezier(0.77, 0, 0.175, 1);
| |
| Â transition: left 1000ms cubic-bezier(0.77, 0, 0.175, 1), top 500ms cubic-bezier(0.77, 0, 0.175, 1), height 500ms cubic-bezier(0.77, 0, 0.175, 1), width 1000ms cubic-bezier(0.77, 0, 0.175, 1);
| |
| Â -webkit-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
| |
| Â -moz-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
| |
| Â -o-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
| |
| Â transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
| |
| Â /* Timespan
| |
| ================================================== */
| |
| Â /* Content
| |
| ================================================== */
| |
| }
| |
| .tl-timeera.tl-timeera-fast {
| |
| Â -webkit-transition: top 500ms cubic-bezier(0.77, 0, 0.175, 1), height 500ms cubic-bezier(0.77, 0, 0.175, 1), width 500ms cubic-bezier(0.77, 0, 0.175, 1);
| |
| Â -moz-transition: top 500ms cubic-bezier(0.77, 0, 0.175, 1), height 500ms cubic-bezier(0.77, 0, 0.175, 1), width 500ms cubic-bezier(0.77, 0, 0.175, 1);
| |
| Â -o-transition: top 500ms cubic-bezier(0.77, 0, 0.175, 1), height 500ms cubic-bezier(0.77, 0, 0.175, 1), width 500ms cubic-bezier(0.77, 0, 0.175, 1);
| |
| Â transition: top 500ms cubic-bezier(0.77, 0, 0.175, 1), height 500ms cubic-bezier(0.77, 0, 0.175, 1), width 500ms cubic-bezier(0.77, 0, 0.175, 1);
| |
| Â -webkit-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
| |
| Â -moz-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
| |
| Â -o-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
| |
| Â transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
| |
| }
| |
| .tl-timeera .tl-timeera-background {
| |
| Â position: absolute;
| |
| Â background-color: #28a6c3;
| |
| Â width: 100%;
| |
| Â height: 100%;
| |
| Â opacity: 1;
| |
| }
| |
| .tl-timeera.tl-timeera-color0 .tl-timeera-background {
| |
| Â background-color: #c34528;
| |
| }
| |
| .tl-timeera.tl-timeera-color1 .tl-timeera-background {
| |
| Â background-color: #28a6c3;
| |
| }
| |
| .tl-timeera.tl-timeera-color2 .tl-timeera-background {
| |
| Â background-color: #2832c3;
| |
| }
| |
| .tl-timeera.tl-timeera-color3 .tl-timeera-background {
| |
| Â background-color: #28c36c;
| |
| }
| |
| .tl-timeera.tl-timeera-color4 .tl-timeera-background {
| |
| Â background-color: #286dc3;
| |
| }
| |
| .tl-timeera.tl-timeera-color5 .tl-timeera-background {
| |
| Â background-color: #28c3a7;
| |
| }
| |
| .tl-timeera .tl-timeera-content-container {
| |
| Â position: absolute;
| |
| Â border: 0;
| |
| Â border-top-left-radius: 5px;
| |
| Â border-top-right-radius: 5px;
| |
| Â border-bottom-right-radius: 5px;
| |
| Â height: 100%;
| |
| Â width: 100px;
| |
| Â overflow: hidden;
| |
| Â -webkit-transition: height 500ms cubic-bezier(0.77, 0, 0.175, 1), width 1000ms cubic-bezier(0.77, 0, 0.175, 1);
| |
| Â -moz-transition: height 500ms cubic-bezier(0.77, 0, 0.175, 1), width 1000ms cubic-bezier(0.77, 0, 0.175, 1);
| |
| Â -o-transition: height 500ms cubic-bezier(0.77, 0, 0.175, 1), width 1000ms cubic-bezier(0.77, 0, 0.175, 1);
| |
| Â transition: height 500ms cubic-bezier(0.77, 0, 0.175, 1), width 1000ms cubic-bezier(0.77, 0, 0.175, 1);
| |
| Â -webkit-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
| |
| Â -moz-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
| |
| Â -o-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
| |
| Â transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
| |
| Â box-sizing: border-box;
| |
| Â border: 1px solid #0d0d0d;
| |
| }
| |
| .tl-timeera .tl-timeera-content-container .tl-timeera-content {
| |
| Â position: relative;
| |
| Â overflow: hidden;
| |
| Â height: 100%;
| |
| Â padding: 5px;
| |
| Â -webkit-box-sizing: border-box;
| |
| Â /* Safari/Chrome, other WebKit */
| |
| Â -moz-box-sizing: border-box;
| |
| Â /* Firefox, other Gecko */
| |
| Â box-sizing: border-box;
| |
| }
| |
| .tl-timeera .tl-timeera-content-container .tl-timeera-content .tl-timeera-text {
| |
| Â overflow: hidden;
| |
| Â position: relative;
| |
| Â height: 100%;
| |
| }
| |
| .tl-timeera .tl-timeera-content-container .tl-timeera-content .tl-timeera-text h2.tl-headline {
| |
| Â bottom: 0px;
| |
| Â position: absolute;
| |
| Â display: -webkit-box;
| |
| Â line-clamp: 4;
| |
| Â -webkit-line-clamp: 4;
| |
| Â box-orient: vertical;
| |
| Â -webkit-box-orient: vertical;
| |
| Â text-overflow: ellipsis;
| |
| Â font-size: 10px;
| |
| Â line-height: 10px;
| |
| Â overflow: hidden;
| |
| Â font-weight: normal;
| |
| Â margin: 0;
| |
| Â color: #333;
| |
| Â margin-left: 10px;
| |
| }
| |
| .tl-timeera .tl-timeera-content-container .tl-timeera-content .tl-timeera-text h2.tl-headline.tl-headline-fadeout:after {
| |
| Â content: "";
| |
| Â text-align: right;
| |
| Â position: absolute;
| |
| Â bottom: 0;
| |
| Â right: 0;
| |
| Â width: 100%;
| |
| Â height: 50%;
| |
| Â background: -moz-linear-gradient(top, rgba(38, 38, 38, 0) 0%, #262626 50%);
| |
| Â /* FF3.6+ */
| |
| Â background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(38, 38, 38, 0)), color-stop(50%, #262626));
| |
| Â /* Chrome,Safari4+ */
| |
| Â background: -webkit-linear-gradient(top, rgba(38, 38, 38, 0) 0%, #262626 50%);
| |
| Â /* Chrome10+,Safari5.1+ */
| |
| Â background: -o-linear-gradient(top, rgba(38, 38, 38, 0) 0%, #262626 50%);
| |
| Â /* Opera 11.10+ */
| |
| Â background: -ms-linear-gradient(top, rgba(38, 38, 38, 0) 0%, #262626 50%);
| |
| Â /* IE10+ */
| |
| Â background: linear-gradient(to bottom, rgba(38, 38, 38, 0) 0%, #262626 50%);
| |
| Â /* W3C */
| |
| Â filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='@thecolor', endColorstr='@thecolor', GradientType=0);
| |
| Â /* IE6-9 */
| |
| }
| |
| /* Skinny
| |
| ================================================== */
| |
| /* Mobile, iPhone
| |
| ================================================== */
| |
| /* Mobile, iPhone and skinny
| |
| ================================================== */
| |
| /* TL.TimeMarker
| |
| ================================================== */
| |
| .tl-timegroup {
| |
| Â width: 100%;
| |
| Â position: absolute;
| |
| Â top: 0;
| |
| Â left: 0;
| |
| Â background-color: #4d4d4d;
| |
| Â display: -ms-flexbox;
| |
| Â display: -webkit-flex;
| |
| Â display: flex;
| |
| Â align-items: center;
| |
| Â -ms-flex-align: center;
| |
| Â -webkit-align-items: center;
| |
| Â -webkit-box-align: center;
| |
| Â /* Animate Left Width and Top
| |
| ================================================== */
| |
| Â -webkit-transition: left 1000ms cubic-bezier(0.77, 0, 0.175, 1), top 500ms cubic-bezier(0.77, 0, 0.175, 1), height 500ms cubic-bezier(0.77, 0, 0.175, 1), width 1000ms cubic-bezier(0.77, 0, 0.175, 1);
| |
| Â -moz-transition: left 1000ms cubic-bezier(0.77, 0, 0.175, 1), top 500ms cubic-bezier(0.77, 0, 0.175, 1), height 500ms cubic-bezier(0.77, 0, 0.175, 1), width 1000ms cubic-bezier(0.77, 0, 0.175, 1);
| |
| Â -o-transition: left 1000ms cubic-bezier(0.77, 0, 0.175, 1), top 500ms cubic-bezier(0.77, 0, 0.175, 1), height 500ms cubic-bezier(0.77, 0, 0.175, 1), width 1000ms cubic-bezier(0.77, 0, 0.175, 1);
| |
| Â transition: left 1000ms cubic-bezier(0.77, 0, 0.175, 1), top 500ms cubic-bezier(0.77, 0, 0.175, 1), height 500ms cubic-bezier(0.77, 0, 0.175, 1), width 1000ms cubic-bezier(0.77, 0, 0.175, 1);
| |
| Â -webkit-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
| |
| Â -moz-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
| |
| Â -o-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
| |
| Â transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
| |
| }
| |
| .tl-timegroup .tl-timegroup-message {
| |
| Â color: #000000;
| |
| Â text-shadow: #333 0px 2px 2px;
| |
| Â margin-left: 80px;
| |
| }
| |
| .tl-timegroup.tl-timegroup-alternate {
| |
| Â background-color: #545454;
| |
| }
| |
| .tl-timegroup.tl-timegroup-hidden {
| |
| Â display: none;
| |
| }
| |
| /* Skinny
| |
| ================================================== */
| |
| /* Mobile, iPhone
| |
| ================================================== */
| |
| /* Mobile, iPhone and skinny
| |
| ================================================== */
| |
| /* TL.TimeAxis
| |
| ================================================== */
| |
| .tl-timeaxis-background {
| |
| Â height: 38px;
| |
| Â width: 100%;
| |
| Â position: absolute;
| |
| Â bottom: 0;
| |
| Â left: 0;
| |
| Â background-color: #333;
| |
| Â border-top: 1px solid #404040;
| |
| Â z-index: 2;
| |
| }
| |
| .tl-timeaxis {
| |
| Â height: 38px;
| |
| Â width: 100%;
| |
| Â position: absolute;
| |
| Â bottom: 0;
| |
| Â left: 0;
| |
| Â z-index: 3;
| |
| }
| |
| .tl-timeaxis .tl-timeaxis-content-container {
| |
| Â position: relative;
| |
| Â bottom: 0;
| |
| Â height: 38px;
| |
| }
| |
| .tl-timeaxis .tl-timeaxis-content-container .tl-timeaxis-major,
| |
| .tl-timeaxis .tl-timeaxis-content-container .tl-timeaxis-minor {
| |
| Â opacity: 0;
| |
| Â position: absolute;
| |
| }
| |
| .tl-timeaxis .tl-timeaxis-content-container .tl-timeaxis-major .tl-timeaxis-tick,
| |
| .tl-timeaxis .tl-timeaxis-content-container .tl-timeaxis-minor .tl-timeaxis-tick {
| |
| Â position: absolute;
| |
| Â display: block;
| |
| Â top: 0;
| |
| Â left: 0;
| |
| Â text-align: center;
| |
| Â font-weight: normal;
| |
| }
| |
| .tl-timeaxis .tl-timeaxis-content-container .tl-timeaxis-major .tl-timeaxis-tick .tl-timeaxis-tick-text,
| |
| .tl-timeaxis .tl-timeaxis-content-container .tl-timeaxis-minor .tl-timeaxis-tick .tl-timeaxis-tick-text {
| |
| Â display: inline-block;
| |
| Â white-space: nowrap;
| |
| Â text-overflow: ellipsis;
| |
| Â overflow: hidden;
| |
| }
| |
| .tl-timeaxis .tl-timeaxis-content-container .tl-timeaxis-major .tl-timeaxis-tick:before,
| |
| .tl-timeaxis .tl-timeaxis-content-container .tl-timeaxis-minor .tl-timeaxis-tick:before {
| |
| Â content: "|";
| |
| Â display: block;
| |
| Â color: #333;
| |
| Â width: 1px;
| |
| Â overflow: hidden;
| |
| Â border-left: 1px solid #575757;
| |
| Â text-align: center;
| |
| }
| |
| .tl-timeaxis .tl-timeaxis-content-container .tl-timeaxis-major.tl-timeaxis-animate .tl-timeaxis-tick,
| |
| .tl-timeaxis .tl-timeaxis-content-container .tl-timeaxis-minor.tl-timeaxis-animate .tl-timeaxis-tick {
| |
| Â -webkit-transition: all 1000ms cubic-bezier(0.77, 0, 0.175, 1);
| |
| Â -moz-transition: all 1000ms cubic-bezier(0.77, 0, 0.175, 1);
| |
| Â -o-transition: all 1000ms cubic-bezier(0.77, 0, 0.175, 1);
| |
| Â transition: all 1000ms cubic-bezier(0.77, 0, 0.175, 1);
| |
| Â -webkit-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
| |
| Â -moz-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
| |
| Â -o-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
| |
| Â transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
| |
| }
| |
| .tl-timeaxis .tl-timeaxis-content-container .tl-timeaxis-major.tl-timeaxis-animate-opacity .tl-timeaxis-tick,
| |
| .tl-timeaxis .tl-timeaxis-content-container .tl-timeaxis-minor.tl-timeaxis-animate-opacity .tl-timeaxis-tick {
| |
| Â -webkit-transition: opacity 1000ms cubic-bezier(0.77, 0, 0.175, 1);
| |
| Â -moz-transition: opacity 1000ms cubic-bezier(0.77, 0, 0.175, 1);
| |
| Â -o-transition: opacity 1000ms cubic-bezier(0.77, 0, 0.175, 1);
| |
| Â transition: opacity 1000ms cubic-bezier(0.77, 0, 0.175, 1);
| |
| Â -webkit-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
| |
| Â -moz-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
| |
| Â -o-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
| |
| Â transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
| |
| }
| |
| .tl-timeaxis .tl-timeaxis-content-container .tl-timeaxis-major {
| |
| Â z-index: 1;
| |
| Â background-color: #333;
| |
| }
| |
| .tl-timeaxis .tl-timeaxis-content-container .tl-timeaxis-major .tl-timeaxis-tick {
| |
| Â font-size: 12px;
| |
| Â line-height: 14px;
| |
| Â color: #8a8a8a;
| |
| Â width: 100px;
| |
| Â margin-left: -50px;
| |
| }
| |
| .tl-timeaxis .tl-timeaxis-content-container .tl-timeaxis-major .tl-timeaxis-tick:before {
| |
| Â border-color: #707070;
| |
| Â font-size: 18px;
| |
| Â line-height: 18px;
| |
| Â margin-bottom: 2px;
| |
| Â margin-left: 50px;
| |
| }
| |
| .tl-timeaxis .tl-timeaxis-content-container .tl-timeaxis-minor .tl-timeaxis-tick {
| |
| Â font-size: 10px;
| |
| Â line-height: 12px;
| |
| Â color: #575757;
| |
| Â width: 50px;
| |
| Â margin-left: -25px;
| |
| }
| |
| .tl-timeaxis .tl-timeaxis-content-container .tl-timeaxis-minor .tl-timeaxis-tick .tl-timeaxis-tick-text {
| |
| Â opacity: 0;
| |
| Â white-space: normal;
| |
| Â padding-left: 2px;
| |
| Â padding-right: 2px;
| |
| }
| |
| .tl-timeaxis .tl-timeaxis-content-container .tl-timeaxis-minor .tl-timeaxis-tick .tl-timeaxis-tick-text span {
| |
| Â display: block;
| |
| Â font-size: 9px;
| |
| Â line-height: 9px;
| |
| Â margin-top: -2px;
| |
| Â color: #7d7d7d;
| |
| }
| |
| .tl-timeaxis .tl-timeaxis-content-container .tl-timeaxis-minor .tl-timeaxis-tick:before {
| |
| Â font-size: 8px;
| |
| Â line-height: 8px;
| |
| Â margin-left: 25px;
| |
| }
| |
| .tl-timeaxis .tl-timeaxis-content-container .tl-timeaxis-minor .tl-timeaxis-tick.tl-timeaxis-tick-hidden .tl-timeaxis-tick-text {
| |
| Â opacity: 0 !important;
| |
| }
| |
| .tl-timeaxis .tl-timeaxis-content-container .tl-timeaxis-minor .tl-timeaxis-tick.tl-timeaxis-tick-hidden:before {
| |
| Â opacity: 0.33;
| |
| }
| |
| /* Skinny
| |
| ================================================== */
| |
| /* Mobile, iPhone
| |
| ================================================== */
| |
| /* Mobile, iPhone and skinny
| |
| ================================================== */
| |
| .tlanimate {
| |
| Â -webkit-transform: translateZ(0);
| |
| Â -webkit-perspective: 1000;
| |
| Â -webkit-backface-visibility: hidden;
| |
| }
| |
| .tl-animate {
| |
| Â -webkit-transition: all 1000ms cubic-bezier(0.77, 0, 0.175, 1);
| |
| Â -moz-transition: all 1000ms cubic-bezier(0.77, 0, 0.175, 1);
| |
| Â -o-transition: all 1000ms cubic-bezier(0.77, 0, 0.175, 1);
| |
| Â transition: all 1000ms cubic-bezier(0.77, 0, 0.175, 1);
| |
| Â -webkit-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
| |
| Â -moz-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
| |
| Â -o-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
| |
| Â transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
| |
| }
| |
| .tl-animate-opacity {
| |
| Â -webkit-transition: opacity 1000ms cubic-bezier(0.77, 0, 0.175, 1);
| |
| Â -moz-transition: opacity 1000ms cubic-bezier(0.77, 0, 0.175, 1);
| |
| Â -o-transition: opacity 1000ms cubic-bezier(0.77, 0, 0.175, 1);
| |
| Â transition: opacity 1000ms cubic-bezier(0.77, 0, 0.175, 1);
| |
| Â -webkit-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
| |
| Â -moz-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
| |
| Â -o-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
| |
| Â transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
| |
| }
| |
| /* SLIDE
| |
| ================================================== */
| |
| .tl-slide {
| |
| Â position: absolute;
| |
| Â width: 100%;
| |
| Â height: 100%;
| |
| Â padding: 0;
| |
| Â margin: 0;
| |
| Â overflow-x: hidden;
| |
| Â overflow-y: auto;
| |
| }
| |
| .tl-slide .tl-slide-background {
| |
| Â position: absolute;
| |
| Â left: 0;
| |
| Â top: 0;
| |
| Â width: 100%;
| |
| Â height: 100%;
| |
| Â z-index: -1;
| |
| Â overflow: hidden;
| |
| Â display: none;
| |
| Â filter: alpha(opacity=50);
| |
| Â -khtml-opacity: 0.5;
| |
| Â -moz-opacity: 0.5;
| |
| Â opacity: 0.5;
| |
| Â background: no-repeat center center;
| |
| Â -webkit-background-size: cover;
| |
| Â -moz-background-size: cover;
| |
| Â -o-background-size: cover;
| |
| Â background-size: cover;
| |
| }
| |
| .tl-slide .tl-slide-scrollable-container {
| |
| Â display: table;
| |
| Â table-layout: fixed;
| |
| Â height: 100%;
| |
| Â z-index: 1;
| |
| }
| |
| .tl-slide .tl-slide-content-container {
| |
| Â display: table-cell;
| |
| Â vertical-align: middle;
| |
| Â position: relative;
| |
| Â width: 100%;
| |
| Â height: 100%;
| |
| Â z-index: 3;
| |
| }
| |
| .tl-slide .tl-slide-content-container .tl-slide-content {
| |
| Â display: table;
| |
| Â vertical-align: middle;
| |
| Â direction: rtl;
| |
| Â padding-left: 100px;
| |
| Â padding-right: 100px;
| |
| Â position: relative;
| |
| Â max-width: 100%;
| |
| Â user-select: text;
| |
| Â -webkit-box-sizing: content-box;
| |
| Â -moz-box-sizing: content-box;
| |
| Â box-sizing: content-box;
| |
| }
| |
| .tl-slide .tl-slide-content-container .tl-slide-content .tl-media {
| |
| Â direction: ltr;
| |
| Â position: relative;
| |
| Â width: 100%;
| |
| Â min-width: 50%;
| |
| Â float: left;
| |
| Â margin-top: auto;
| |
| Â margin-bottom: auto;
| |
| }
| |
| .tl-slide .tl-slide-content-container .tl-slide-content .tl-text {
| |
| Â direction: ltr;
| |
| Â width: 50%;
| |
| Â max-width: 50%;
| |
| Â min-width: 120px;
| |
| Â padding: 0 20px 0 20px;
| |
| Â display: table-cell;
| |
| Â vertical-align: middle;
| |
| Â text-align: left;
| |
| }
| |
| /* Only Media (no text)
| |
| ================================================== */
| |
| .tl-slide-media-only .tl-slide-content-container .tl-slide-content {
| |
| Â text-align: center;
| |
| }
| |
| .tl-slide-media-only .tl-slide-content-container .tl-slide-content .tl-media {
| |
| Â text-align: center;
| |
| Â position: relative;
| |
| Â width: 100%;
| |
| Â min-width: 50%;
| |
| Â max-width: 100%;
| |
| Â float: none;
| |
| Â margin-top: auto;
| |
| Â margin-bottom: auto;
| |
| }
| |
| .tl-slide-media-only .tl-slide-content-container .tl-slide-content .tl-text {
| |
| Â width: 100%;
| |
| Â max-width: 100%;
| |
| Â display: block;
| |
| Â margin-left: auto;
| |
| Â margin-right: auto;
| |
| Â text-align: center;
| |
| }
| |
| /* Only Text (no media)
| |
| ================================================== */
| |
| .tl-slide-text-only .tl-slide-content-container .tl-slide-content {
| |
| Â text-align: center;
| |
| }
| |
| .tl-slide-text-only .tl-slide-content-container .tl-slide-content .tl-text {
| |
| Â max-width: 80%;
| |
| Â width: 80%;
| |
| Â display: block;
| |
| Â margin-left: auto;
| |
| Â margin-right: auto;
| |
| }
| |
| /* Background
| |
| ================================================== */
| |
| .tl-slide.tl-full-image-background,
| |
| .tl-slide.tl-full-color-background {
| |
| Â color: #FFF !important;
| |
| Â text-shadow: 1px 1px 1px #000 !important;
| |
| }
| |
| .tl-slide.tl-full-image-background p,
| |
| .tl-slide.tl-full-color-background p,
| |
| .tl-slide.tl-full-image-background h1,
| |
| .tl-slide.tl-full-color-background h1,
| |
| .tl-slide.tl-full-image-background h2,
| |
| .tl-slide.tl-full-color-background h2,
| |
| .tl-slide.tl-full-image-background h3,
| |
| .tl-slide.tl-full-color-background h3,
| |
| .tl-slide.tl-full-image-background h4,
| |
| .tl-slide.tl-full-color-background h4,
| |
| .tl-slide.tl-full-image-background h5,
| |
| .tl-slide.tl-full-color-background h5,
| |
| .tl-slide.tl-full-image-background h6,
| |
| .tl-slide.tl-full-color-background h6 {
| |
| Â color: #FFF !important;
| |
| Â text-shadow: 1px 1px 1px #000 !important;
| |
| }
| |
| .tl-slide.tl-full-image-background a,
| |
| .tl-slide.tl-full-color-background a,
| |
| .tl-slide.tl-full-image-background b,
| |
| .tl-slide.tl-full-color-background b,
| |
| .tl-slide.tl-full-image-background i,
| |
| .tl-slide.tl-full-color-background i,
| |
| .tl-slide.tl-full-image-background blockquote,
| |
| .tl-slide.tl-full-color-background blockquote,
| |
| .tl-slide.tl-full-image-background blockquote p,
| |
| .tl-slide.tl-full-color-background blockquote p {
| |
| Â text-shadow: 1px 1px 1px #000;
| |
| Â color: #ffffff;
| |
| }
| |
| .tl-slide.tl-full-image-background a:hover,
| |
| .tl-slide.tl-full-color-background a:hover {
| |
| Â text-decoration: underline;
| |
| Â color: #c34528;
| |
| }
| |
| .tl-slide.tl-full-image-background .tl-caption,
| |
| .tl-slide.tl-full-color-background .tl-caption,
| |
| .tl-slide.tl-full-image-background .tl-credit,
| |
| .tl-slide.tl-full-color-background .tl-credit {
| |
| Â color: #FFF !important;
| |
| Â text-shadow: 1px 1px 1px #000 !important;
| |
| }
| |
| .tl-slide.tl-full-image-background .tl-media-twitter blockquote,
| |
| .tl-slide.tl-full-color-background .tl-media-twitter blockquote,
| |
| .tl-slide.tl-full-image-background .tl-media-blockquote blockquote,
| |
| .tl-slide.tl-full-color-background .tl-media-blockquote blockquote {
| |
| Â color: #FFF !important;
| |
| Â text-shadow: 1px 1px 1px #000 !important;
| |
| }
| |
| .tl-slide.tl-full-image-background .tl-media-twitter blockquote p,
| |
| .tl-slide.tl-full-color-background .tl-media-twitter blockquote p,
| |
| .tl-slide.tl-full-image-background .tl-media-blockquote blockquote p,
| |
| .tl-slide.tl-full-color-background .tl-media-blockquote blockquote p {
| |
| Â color: #FFF !important;
| |
| Â text-shadow: 1px 1px 1px #000 !important;
| |
| }
| |
| .tl-slide.tl-full-image-background .vcard a,
| |
| .tl-slide.tl-full-color-background .vcard a,
| |
| .tl-slide.tl-full-image-background .vcard .nickname,
| |
| .tl-slide.tl-full-color-background .vcard .nickname {
| |
| Â color: #FFF !important;
| |
| Â text-shadow: 1px 1px 1px #000 !important;
| |
| }
| |
| /* Full Image Background
| |
| ================================================== */
| |
| .tl-slide.tl-full-image-background {
| |
| Â background: no-repeat center center;
| |
| Â -webkit-background-size: cover;
| |
| Â -moz-background-size: cover;
| |
| Â -o-background-size: cover;
| |
| Â background-size: cover;
| |
| Â background-position: center 25%;
| |
| Â text-shadow: 1px 1px 2px #000;
| |
| }
| |
| .tl-slide.tl-full-image-background p,
| |
| .tl-slide.tl-full-image-background h1,
| |
| .tl-slide.tl-full-image-background h2,
| |
| .tl-slide.tl-full-image-background h3,
| |
| .tl-slide.tl-full-image-background h4,
| |
| .tl-slide.tl-full-image-background h5,
| |
| .tl-slide.tl-full-image-background h6 {
| |
| Â text-shadow: 1px 1px 2px #000;
| |
| }
| |
| .tl-slide.tl-full-image-background .tl-caption,
| |
| .tl-slide.tl-full-image-background .tl-credit {
| |
| Â text-shadow: 1px 1px 2px #000;
| |
| }
| |
| .tl-slide.tl-full-image-background .tl-media-twitter blockquote,
| |
| .tl-slide.tl-full-image-background .tl-media-blockquote blockquote {
| |
| Â text-shadow: 1px 1px 2px #000 !important;
| |
| }
| |
| .tl-slide.tl-full-image-background .tl-media-twitter blockquote p,
| |
| .tl-slide.tl-full-image-background .tl-media-blockquote blockquote p {
| |
| Â text-shadow: 1px 1px 2px #000 !important;
| |
| }
| |
| /* Color Background
| |
| ================================================== */
| |
| /* Text Background
| |
| ================================================== */
| |
| .tl-slide.tl-text-background .tl-text .tl-text-content-container {
| |
| Â padding: 20px;
| |
| Â /* Fallback for web browsers that doesn't support RGBa */
| |
| Â background: #000000 transparent;
| |
| Â /* RGBa with 0.6 opacity */
| |
| Â background: rgba(0, 0, 0, 0.6);
| |
| Â -webkit-border-radius: 7px;
| |
| Â -moz-border-radius: 7px;
| |
| Â border-radius: 7px;
| |
| }
| |
| .tl-slide.tl-text-background .tl-text .tl-text-content-container h2 {
| |
| Â margin-top: 5px;
| |
| }
| |
| /* Skinny
| |
| ================================================== */
| |
| .tl-skinny .tl-slide {
| |
| Â display: block;
| |
| Â padding-top: 10px;
| |
| }
| |
| .tl-skinny .tl-slide .tl-slide-content-container {
| |
| Â display: block;
| |
| Â position: static;
| |
| Â height: 100%;
| |
| Â display: -webkit-flex;
| |
| Â /* Safari */
| |
| Â display: flex;
| |
| Â align-items: center;
| |
| Â -webkit-align-items: center;
| |
| Â /* Safari 7.0+ */
| |
| }
| |
| .tl-skinny .tl-slide .tl-slide-content-container .tl-slide-content {
| |
| Â display: block;
| |
| Â display: -webkit-flex;
| |
| Â /* Safari */
| |
| Â display: flex;
| |
| Â flex-direction: column;
| |
| Â -webkit-flex-direction: column;
| |
| Â /* Safari */
| |
| Â position: static;
| |
| Â height: auto;
| |
| Â padding-left: 50px;
| |
| Â padding-right: 50px;
| |
| }
| |
| .tl-skinny .tl-slide .tl-slide-content-container .tl-slide-content .tl-media {
| |
| Â width: 100%;
| |
| Â height: auto;
| |
| Â float: none;
| |
| Â display: block;
| |
| Â padding-top: 20px;
| |
| Â border-top: 1px solid #000000;
| |
| }
| |
| .tl-skinny .tl-slide .tl-slide-content-container .tl-slide-content .tl-text {
| |
| Â display: block;
| |
| Â height: auto;
| |
| Â vertical-align: initial;
| |
| Â position: static;
| |
| Â width: 100%;
| |
| Â max-width: 100%;
| |
| Â min-width: 0;
| |
| Â float: none;
| |
| Â padding: 0;
| |
| }
| |
| .tl-skinny .tl-slide .tl-slide-content-container .tl-slide-content .tl-text .tl-text-content-container {
| |
| Â padding-left: 10px;
| |
| Â padding-right: 10px;
| |
| Â padding-bottom: 10px;
| |
| }
| |
| .tl-skinny .tl-slide.tl-slide.tl-full-color-background .tl-slide-content-container .tl-slide-content .tl-media,
| |
| .tl-skinny .tl-slide.tl-full-image-background .tl-slide-content-container .tl-slide-content .tl-media {
| |
| Â border-color: rgba(0, 0, 0, 0.25);
| |
| }
| |
| .tl-skinny .tl-slide.tl-slide-media-only .tl-slide-content-container .tl-slide-content {
| |
| Â flex-direction: column;
| |
| Â -webkit-flex-direction: column;
| |
| Â /* Safari */
| |
| }
| |
| .tl-skinny .tl-slide.tl-slide-media-only .tl-slide-content-container .tl-slide-content .tl-media {
| |
| Â border-top: none;
| |
| Â padding-top: 0px;
| |
| }
| |
| /* Mobile, iPhone
| |
| ================================================== */
| |
| /* Mobile, iPhone and skinny
| |
| ================================================== */
| |
| .tl-mobile.tl-skinny .tl-slide .tl-slide-content-container .tl-slide-content .tl-media img,
| |
| .tl-mobile.tl-skinny .tl-slide .tl-slide-content-container .tl-slide-content .tl-media embed,
| |
| .tl-mobile.tl-skinny .tl-slide .tl-slide-content-container .tl-slide-content .tl-media object,
| |
| .tl-mobile.tl-skinny .tl-slide .tl-slide-content-container .tl-slide-content .tl-media video,
| |
| .tl-mobile.tl-skinny .tl-slide .tl-slide-content-container .tl-slide-content .tl-media iframe {
| |
| Â max-height: 175px;
| |
| }
| |
| /* SlideNav
| |
| ================================================== */
| |
| /* NAVIGATION
| |
| ================================================== */
| |
| .tl-slidenav-previous,
| |
| .tl-slidenav-next {
| |
| Â position: absolute;
| |
| Â top: 45%;
| |
| Â z-index: 10;
| |
| Â cursor: pointer;
| |
| Â padding: 0;
| |
| Â outline-offset: 5px;
| |
| Â background-color: transparent;
| |
| Â border: none;
| |
| Â text-align: inherit;
| |
| Â text-transform: inherit;
| |
| Â font-family: inherit;
| |
| Â font-size: inherit;
| |
| Â font-weight: inherit;
| |
| }
| |
| .tl-slidenav-previous .tl-slidenav-content-container,
| |
| .tl-slidenav-next .tl-slidenav-content-container {
| |
| Â width: 100px;
| |
| Â position: absolute;
| |
| }
| |
| .tl-slidenav-previous .tl-slidenav-title,
| |
| .tl-slidenav-next .tl-slidenav-title,
| |
| .tl-slidenav-previous .tl-slidenav-description,
| |
| .tl-slidenav-next .tl-slidenav-description {
| |
| Â width: 80px;
| |
| Â -webkit-line-clamp: 2;
| |
| Â line-clamp: 2;
| |
| Â text-overflow: ellipsis;
| |
| Â /* Non standard for webkit */
| |
| Â /*
| |
| Â -webkit-hyphens: auto;
| |
| Â Â Â -moz-hyphens: auto;
| |
| Â Â Â -ms-hyphens: auto;
| |
| Â Â Â Â Â hyphens: auto;
| |
| */
| |
| }
| |
| .tl-slidenav-previous .tl-slidenav-title small,
| |
| .tl-slidenav-next .tl-slidenav-title small,
| |
| .tl-slidenav-previous .tl-slidenav-description small,
| |
| .tl-slidenav-next .tl-slidenav-description small {
| |
| Â display: block;
| |
| }
| |
| .tl-slidenav-previous .tl-slidenav-title,
| |
| .tl-slidenav-next .tl-slidenav-title {
| |
| Â margin-top: 10px;
| |
| Â filter: alpha(opacity=15);
| |
| Â -khtml-opacity: 0.15;
| |
| Â -moz-opacity: 0.15;
| |
| Â opacity: 0.15;
| |
| Â font-size: 11px;
| |
| Â line-height: 11px;
| |
| }
| |
| .tl-slidenav-previous .tl-slidenav-description,
| |
| .tl-slidenav-next .tl-slidenav-description {
| |
| Â font-size: 11px;
| |
| Â margin-top: 5px;
| |
| Â filter: alpha(opacity=0);
| |
| Â -khtml-opacity: 0;
| |
| Â -moz-opacity: 0;
| |
| Â opacity: 0;
| |
| }
| |
| .tl-slidenav-previous .tl-slidenav-description small,
| |
| .tl-slidenav-next .tl-slidenav-description small {
| |
| Â display: none;
| |
| }
| |
| /* NAVIGATION COLOR
| |
| ================================================== */
| |
| .tl-slidenav-previous .tl-slidenav-content-container .tl-slidenav-icon,
| |
| .tl-slidenav-next .tl-slidenav-content-container .tl-slidenav-icon,
| |
| .tl-slidenav-previous .tl-slidenav-content-container .tl-slidenav-title,
| |
| .tl-slidenav-next .tl-slidenav-content-container .tl-slidenav-title,
| |
| .tl-slidenav-previous .tl-slidenav-content-container .tl-slidenav-description,
| |
| .tl-slidenav-next .tl-slidenav-content-container .tl-slidenav-description {
| |
| Â text-shadow: 1px 1px 1px #333;
| |
| Â color: #CCC;
| |
| }
| |
| .tl-slidenav-previous .tl-slidenav-content-container.tl-slidenav-inverted .tl-slidenav-icon,
| |
| .tl-slidenav-next .tl-slidenav-content-container.tl-slidenav-inverted .tl-slidenav-icon,
| |
| .tl-slidenav-previous .tl-slidenav-content-container.tl-slidenav-inverted .tl-slidenav-title,
| |
| .tl-slidenav-next .tl-slidenav-content-container.tl-slidenav-inverted .tl-slidenav-title,
| |
| .tl-slidenav-previous .tl-slidenav-content-container.tl-slidenav-inverted .tl-slidenav-description,
| |
| .tl-slidenav-next .tl-slidenav-content-container.tl-slidenav-inverted .tl-slidenav-description {
| |
| Â color: #bfbfbf;
| |
| Â text-shadow: 1px 1px 1px #CCC;
| |
| }
| |
| /* ICONS
| |
| ================================================== */
| |
| .tl-slidenav-next .tl-slidenav-icon,
| |
| .tl-slidenav-previous .tl-slidenav-icon {
| |
| Â font-family: 'tl-icons';
| |
| Â speak: none;
| |
| Â font-style: normal;
| |
| Â font-weight: normal;
| |
| Â font-variant: normal;
| |
| Â text-transform: none;
| |
| Â line-height: 1;
| |
| Â -webkit-font-smoothing: antialiased;
| |
| Â -moz-osx-font-smoothing: grayscale;
| |
| Â font-size: 32px;
| |
| Â margin-bottom: 5px;
| |
| }
| |
| .tl-slidenav-next {
| |
| Â text-align: right;
| |
| Â margin-right: 10px;
| |
| Â right: 100px;
| |
| }
| |
| .tl-slidenav-next .tl-slidenav-title,
| |
| .tl-slidenav-next .tl-slidenav-description {
| |
| Â margin-left: 20px;
| |
| }
| |
| .tl-slidenav-next .tl-slidenav-icon {
| |
| Â margin-left: 76px;
| |
| }
| |
| .tl-slidenav-next .tl-slidenav-icon:before {
| |
| Â content: "\e64f";
| |
| }
| |
| .tl-slidenav-previous {
| |
| Â text-align: left;
| |
| Â margin-left: 10px;
| |
| }
| |
| .tl-slidenav-previous .tl-slidenav-icon {
| |
| Â margin-left: 0px;
| |
| }
| |
| .tl-slidenav-previous .tl-slidenav-icon:before {
| |
| Â content: "\e650";
| |
| }
| |
| /* NAVIGATION HOVER
| |
| ================================================== */
| |
| .tl-slidenav-previous:hover .tl-slidenav-title,
| |
| .tl-slidenav-next:hover .tl-slidenav-title,
| |
| .tl-slidenav-previous:focus-visible .tl-slidenav-title,
| |
| .tl-slidenav-next:focus-visible .tl-slidenav-title {
| |
| Â filter: alpha(opacity=100);
| |
| Â -khtml-opacity: 1;
| |
| Â -moz-opacity: 1;
| |
| Â opacity: 1;
| |
| }
| |
| .tl-slidenav-previous:hover .tl-slidenav-description,
| |
| .tl-slidenav-next:hover .tl-slidenav-description,
| |
| .tl-slidenav-previous:focus-visible .tl-slidenav-description,
| |
| .tl-slidenav-next:focus-visible .tl-slidenav-description {
| |
| Â filter: alpha(opacity=50);
| |
| Â -khtml-opacity: 0.5;
| |
| Â -moz-opacity: 0.5;
| |
| Â opacity: 0.5;
| |
| }
| |
| .tl-slidenav-next:hover .tl-slidenav-icon,
| |
| .tl-slidenav-next:focus-visible .tl-slidenav-icon {
| |
| Â margin-left: 80px;
| |
| }
| |
| .tl-slidenav-previous:hover .tl-slidenav-icon,
| |
| .tl-slidenav-previous:focus-visible .tl-slidenav-icon {
| |
| Â margin-left: -4px;
| |
| }
| |
| .tl-skinny .tl-slidenav-next {
| |
| Â right: 32px;
| |
| }
| |
| .tl-skinny .tl-slidenav-next .tl-slidenav-icon {
| |
| Â margin-left: 8px;
| |
| }
| |
| .tl-skinny .tl-slidenav-previous .tl-slidenav-content-container,
| |
| .tl-skinny .tl-slidenav-next .tl-slidenav-content-container {
| |
| Â width: 32px;
| |
| Â height: 32px;
| |
| }
| |
| .tl-skinny .tl-slidenav-previous .tl-slidenav-title,
| |
| .tl-skinny .tl-slidenav-next .tl-slidenav-title,
| |
| .tl-skinny .tl-slidenav-previous .tl-slidenav-description,
| |
| .tl-skinny .tl-slidenav-next .tl-slidenav-description {
| |
| Â display: none;
| |
| }
| |
| .tl-skinny .tl-slidenav-previous .tl-slidenav-icon,
| |
| .tl-skinny .tl-slidenav-next .tl-slidenav-icon {
| |
| Â filter: alpha(opacity=33);
| |
| Â -khtml-opacity: 0.33;
| |
| Â -moz-opacity: 0.33;
| |
| Â opacity: 0.33;
| |
| }
| |
| .tl-skinny .tl-slidenav-next:hover .tl-slidenav-icon,
| |
| .tl-skinny .tl-slidenav-next:focus-visible .tl-slidenav-icon {
| |
| Â margin-left: 12px;
| |
| Â filter: alpha(opacity=100);
| |
| Â -khtml-opacity: 1;
| |
| Â -moz-opacity: 1;
| |
| Â opacity: 1;
| |
| }
| |
| .tl-skinny .tl-slidenav-previous:hover .tl-slidenav-icon,
| |
| .tl-skinny .tl-slidenav-previous:focus-visible .tl-slidenav-icon {
| |
| Â margin-left: -4px;
| |
| Â filter: alpha(opacity=100);
| |
| Â -khtml-opacity: 1;
| |
| Â -moz-opacity: 1;
| |
| Â opacity: 1;
| |
| }
| |
| .tl-layout-landscape.tl-mobile .tl-slidenav-next:hover {
| |
| Â /**
| |
| Â Â Â Â Â Â Â * On mobile the hover state stays on the button after the click | |
| Â Â Â Â Â Â * Show the default margin as before the click
| |
| Â Â Â Â Â Â */
| |
| }
| |
| .tl-layout-landscape.tl-mobile .tl-slidenav-next:hover .tl-slidenav-icon {
| |
| Â margin-left: 76px;
| |
| Â filter: alpha(opacity=100);
| |
| Â -khtml-opacity: 1;
| |
| Â -moz-opacity: 1;
| |
| Â opacity: 1;
| |
| }
| |
| .tl-layout-landscape.tl-mobile .tl-slidenav-next:active .tl-slidenav-icon {
| |
| Â margin-left: 80px;
| |
| }
| |
| .tl-layout-landscape.tl-mobile .tl-slidenav-previous:hover {
| |
| Â /**
| |
| Â Â Â Â Â Â * On mobile the hover state stays on the button after the click
| |
| Â Â Â Â Â Â * Show the default margin as before the click
| |
| Â Â Â Â Â Â */
| |
| }
| |
| .tl-layout-landscape.tl-mobile .tl-slidenav-previous:hover .tl-slidenav-icon {
| |
| Â margin-left: 0px;
| |
| Â filter: alpha(opacity=100);
| |
| Â -khtml-opacity: 1;
| |
| Â -moz-opacity: 1;
| |
| Â opacity: 1;
| |
| }
| |
| .tl-layout-landscape.tl-mobile .tl-slidenav-previous:active .tl-slidenav-icon {
| |
| Â margin-left: -4px;
| |
| }
| |
| .tl-layout-portrait.tl-mobile .tl-slidenav-next:hover .tl-slidenav-icon {
| |
| Â filter: alpha(opacity=33);
| |
| Â -khtml-opacity: 0.33;
| |
| Â -moz-opacity: 0.33;
| |
| Â opacity: 0.33;
| |
| }
| |
| .tl-layout-portrait.tl-mobile .tl-slidenav-next:active .tl-slidenav-icon {
| |
| Â filter: alpha(opacity=100);
| |
| Â -khtml-opacity: 1;
| |
| Â -moz-opacity: 1;
| |
| Â opacity: 1;
| |
| }
| |
| .tl-layout-portrait.tl-mobile .tl-slidenav-previous:hover .tl-slidenav-icon {
| |
| Â filter: alpha(opacity=33);
| |
| Â -khtml-opacity: 0.33;
| |
| Â -moz-opacity: 0.33;
| |
| Â opacity: 0.33;
| |
| }
| |
| .tl-layout-portrait.tl-mobile .tl-slidenav-previous:active .tl-slidenav-icon {
| |
| Â filter: alpha(opacity=100);
| |
| Â -khtml-opacity: 1;
| |
| Â -moz-opacity: 1;
| |
| Â opacity: 1;
| |
| }
| |
| .tl-mobile .tl-slidenav-previous,
| |
| .tl-skinny.tl-mobile .tl-slidenav-previous,
| |
| .tl-skinny.tl-layout-landscape.tl-mobile .tl-slidenav-previous,
| |
| .tl-skinny.tl-layout-portrait.tl-mobile .tl-slidenav-previous,
| |
| .tl-mobile .tl-slidenav-next,
| |
| .tl-skinny.tl-mobile .tl-slidenav-next,
| |
| .tl-skinny.tl-layout-landscape.tl-mobile .tl-slidenav-next,
| |
| .tl-skinny.tl-layout-portrait.tl-mobile .tl-slidenav-next {
| |
| Â display: none;
| |
| }
| |
| /* StorySlider
| |
| ================================================== */
| |
| /* SLIDER CONTAINERS
| |
| ================================================== */
| |
| .tl-storyslider {
| |
| Â width: 100%;
| |
| Â height: 100%;
| |
| Â overflow: hidden;
| |
| Â -webkit-user-select: none;
| |
| Â -moz-user-select: none;
| |
| Â -ms-user-select: none;
| |
| Â -o-user-select: none;
| |
| Â user-select: none;
| |
| Â position: relative;
| |
| Â box-sizing: content-box;
| |
| Â z-index: 8;
| |
| }
| |
| .tl-storyslider img,
| |
| .tl-storyslider embed,
| |
| .tl-storyslider object,
| |
| .tl-storyslider video,
| |
| .tl-storyslider iframe {
| |
| Â max-width: 100%;
| |
| Â position: relative;
| |
| }
| |
| .tl-storyslider .tl-slider-background {
| |
| Â position: absolute;
| |
| Â top: 0;
| |
| Â left: 0;
| |
| Â width: 100%;
| |
| Â height: 100%;
| |
| Â z-index: 1;
| |
| }
| |
| .tl-storyslider .tl-slider-touch-mask {
| |
| Â width: 100%;
| |
| Â height: 100%;
| |
| Â z-index: 25;
| |
| Â top: 0px;
| |
| Â left: 0px;
| |
| Â position: absolute;
| |
| }
| |
| .tl-storyslider .tl-slider-container-mask {
| |
| Â text-align: center;
| |
| Â width: 100%;
| |
| Â height: 100%;
| |
| Â position: relative;
| |
| Â z-index: 5;
| |
| }
| |
| .tl-storyslider .tl-slider-container-mask .tl-slider-container {
| |
| Â position: absolute;
| |
| Â top: 0px;
| |
| Â left: 0px;
| |
| Â width: 100%;
| |
| Â height: 100%;
| |
| Â text-align: center;
| |
| }
| |
| .tl-storyslider .tl-slider-container-mask .tl-slider-container .tl-slider-item-container {
| |
| Â width: 100%;
| |
| Â height: 100%;
| |
| Â display: table-cell;
| |
| Â vertical-align: middle;
| |
| }
| |
| /* Skinny
| |
| ================================================== */
| |
| /* Mobile, iPhone
| |
| ================================================== */
| |
| /* Mobile, iPhone and skinny
| |
| ================================================== */
| |
| /* Requires Variables.less
| |
| ================================================== */
| |
| .tl-media {
| |
| Â width: 100%;
| |
| Â min-width: 50%;
| |
| Â height: 100%;
| |
| Â float: left;
| |
| Â margin-top: auto;
| |
| Â margin-bottom: auto;
| |
| Â position: relative;
| |
| }
| |
| .tl-media .tl-media-content-container.tl-media-content-container-text {
| |
| Â border-right: 1px solid #000000;
| |
| Â padding-right: 20px;
| |
| }
| |
| .tl-media .tl-media-content-container .tl-media-content {
| |
| Â position: relative;
| |
| }
| |
| .tl-media .tl-media-content-container .tl-media-content:before,
| |
| .tl-media .tl-media-content-container .tl-media-content:after {
| |
| Â display: table;
| |
| Â content: "";
| |
| }
| |
| .tl-media .tl-media-content-container .tl-media-content:after {
| |
| Â clear: both;
| |
| }
| |
| .tl-media .tl-media-content-container .tl-media-content .tl-media-loaderror p {
| |
| Â color: #4d4d4d;
| |
| Â text-align: center;
| |
| }
| |
| .tl-media .tl-media-content-container .tl-media-content .tl-media-loaderror p span {
| |
| Â color: #4d4d4d;
| |
| }
| |
| .tl-media .tl-media-content-container .tl-media-content .tl-media-loaderror [class^="tl-icon-"],
| |
| .tl-media .tl-media-content-container .tl-media-content .tl-media-loaderror [class*=" tl-icon-"] {
| |
| Â font-size: 36px;
| |
| Â color: #4d4d4d;
| |
| Â text-align: center;
| |
| }
| |
| .tl-media .tl-media-content-container .tl-media-content img,
| |
| .tl-media .tl-media-content-container .tl-media-content embed,
| |
| .tl-media .tl-media-content-container .tl-media-content object,
| |
| .tl-media .tl-media-content-container .tl-media-content video {
| |
| Â max-width: 100%;
| |
| Â max-height: 100%;
| |
| }
| |
| /* Media Only Slides
| |
| ================================================== */
| |
| .tl-slide-media-only .tl-media .tl-media-content-container.tl-media-content-container-text {
| |
| Â border-right: none;
| |
| Â padding-right: 0;
| |
| }
| |
| /* Media Shodow
| |
| ================================================== */
| |
| .tl-media-shadow {
| |
| Â position: relative;
| |
| Â z-index: 1;
| |
| Â -webkit-box-shadow: 0 12px 10px -10px rgba(0, 0, 0, 0.6);
| |
| Â -moz-box-shadow: 0 12px 10px -10px rgba(0, 0, 0, 0.6);
| |
| Â box-shadow: 0 12px 10px -10px rgba(0, 0, 0, 0.6);
| |
| }
| |
| .tl-slide.tl-full-image-background a,
| |
| .tl-slide.tl-full-color-background a,
| |
| .tl-slide.tl-full-image-background .vcard a,
| |
| .tl-slide.tl-full-color-background .vcard a {
| |
| Â text-shadow: 1px 1px 1px #000;
| |
| Â color: #ffffff;
| |
| }
| |
| .tl-slide.tl-full-image-background a:hover,
| |
| .tl-slide.tl-full-color-background a:hover {
| |
| Â text-decoration: underline;
| |
| Â color: #c34528;
| |
| }
| |
| /* Credit
| |
| ================================================== */
| |
| .tl-credit {
| |
| Â color: #999999;
| |
| Â text-align: right;
| |
| Â display: block;
| |
| Â margin: 0 auto;
| |
| Â margin-top: 6px;
| |
| Â font-size: 10px;
| |
| Â line-height: 13px;
| |
| }
| |
| /* Caption
| |
| ================================================== */
| |
| .tl-caption {
| |
| Â text-align: left;
| |
| Â margin-right: auto;
| |
| Â margin-left: auto;
| |
| Â margin-top: 10px;
| |
| Â color: #666666;
| |
| Â font-size: 11px;
| |
| Â line-height: 14px;
| |
| Â text-rendering: optimizeLegibility;
| |
| Â word-wrap: break-word;
| |
| }
| |
| /* Full Image Background
| |
| ================================================== */
| |
| .tl-full-image-background .tl-media-shadow:before,
| |
| .tl-full-color-background .tl-media-shadow:before,
| |
| .tl-full-image-background .tl-media-shadow:after,
| |
| .tl-full-color-background .tl-media-shadow:after {
| |
| Â background: none;
| |
| Â -webkit-box-shadow: 0 0px 0px #000;
| |
| Â -moz-box-shadow: 0 0px 0px #000;
| |
| Â box-shadow: 0 0px 0px #000;
| |
| }
| |
| /* Skinny
| |
| ================================================== */
| |
| .tl-skinny .tl-media {
| |
| Â width: 100%;
| |
| Â height: auto;
| |
| Â float: none;
| |
| Â display: block;
| |
| }
| |
| .tl-skinny .tl-media .tl-media-content-container.tl-media-content-container-text {
| |
| Â border-right: 0;
| |
| Â padding-right: 0;
| |
| }
| |
| .tl-skinny .tl-media .tl-media-content-container .tl-credit,
| |
| .tl-skinny .tl-media .tl-media-content-container .tl-caption {
| |
| Â margin-top: 2px;
| |
| Â padding-left: 10px;
| |
| Â padding-right: 10px;
| |
| Â font-size: 8px;
| |
| }
| |
| .tl-skinny .tl-media .tl-media-content-container .tl-credit {
| |
| Â margin-top: 0px;
| |
| }
| |
| /* Mobile, iPhone
| |
| ================================================== */
| |
| /* Mobile, iPhone and skinny
| |
| ================================================== */
| |
| .tl-mobile.tl-skinny .tl-media {
| |
| Â width: 100%;
| |
| Â height: auto;
| |
| Â float: none;
| |
| Â display: block;
| |
| }
| |
| .tl-mobile.tl-skinny .tl-media .tl-media-content-container.tl-media-content-container-text {
| |
| Â border-right: 0;
| |
| Â padding-right: 0;
| |
| }
| |
| /* Requires Variables.less
| |
| ================================================== */
| |
| .tl-text {
| |
| Â width: 50%;
| |
| Â max-width: 50%;
| |
| Â min-width: 120px;
| |
| Â padding: 0 20px 0 20px;
| |
| Â display: table-cell;
| |
| Â vertical-align: middle;
| |
| Â text-align: left;
| |
| Â text-shadow: none;
| |
| Â color: #808080;
| |
| }
| |
| .tl-text p {
| |
| Â color: #808080;
| |
| }
| |
| .tl-text .tl-text-content-container .tl-text-headline-container {
| |
| Â display: flex;
| |
| Â flex-direction: column-reverse;
| |
| Â -webkit-flex-direction: column-reverse;
| |
| Â /* Safari */
| |
| }
| |
| .tl-text h2.tl-headline-title,
| |
| .tl-text h2.tl-headline {
| |
| Â margin-top: 0;
| |
| }
| |
| .tl-text .tl-headline-date,
| |
| .tl-text h3.tl-headline-date {
| |
| Â font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
| |
| Â font-size: 15px;
| |
| Â line-height: 15px;
| |
| Â font-weight: normal;
| |
| Â margin: 0 0 3px 0;
| |
| Â color: #bfbfbf;
| |
| }
| |
| .tl-text .tl-headline-date small,
| |
| .tl-text h3.tl-headline-date small {
| |
| Â font-size: 15px;
| |
| Â line-height: 15px;
| |
| Â font-weight: normal;
| |
| Â color: #bfbfbf;
| |
| }
| |
| .tl-text .tl-text-date {
| |
| Â display: inline-block;
| |
| Â font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
| |
| Â font-weight: normal;
| |
| Â margin-top: 10px;
| |
| Â font-size: 12px;
| |
| Â color: #bfbfbf;
| |
| }
| |
| .tl-full-image-background .tl-text,
| |
| .tl-full-color-background .tl-text,
| |
| .tl-full-image-background .tl-text p,
| |
| .tl-full-color-background .tl-text p {
| |
| Â color: #bfbfbf !important;
| |
| Â text-shadow: 1px 1px 2px #000;
| |
| }
| |
| .tl-full-image-background .tl-text .tl-headline-date,
| |
| .tl-full-color-background .tl-text .tl-headline-date,
| |
| .tl-full-image-background .tl-text p .tl-headline-date,
| |
| .tl-full-color-background .tl-text p .tl-headline-date,
| |
| .tl-full-image-background .tl-text h3.tl-headline-date,
| |
| .tl-full-color-background .tl-text h3.tl-headline-date,
| |
| .tl-full-image-background .tl-text p h3.tl-headline-date,
| |
| .tl-full-color-background .tl-text p h3.tl-headline-date {
| |
| Â color: #bfbfbf !important;
| |
| }
| |
| .tl-full-image-background .tl-text .tl-headline-date small,
| |
| .tl-full-color-background .tl-text .tl-headline-date small,
| |
| .tl-full-image-background .tl-text p .tl-headline-date small,
| |
| .tl-full-color-background .tl-text p .tl-headline-date small,
| |
| .tl-full-image-background .tl-text h3.tl-headline-date small,
| |
| .tl-full-color-background .tl-text h3.tl-headline-date small,
| |
| .tl-full-image-background .tl-text p h3.tl-headline-date small,
| |
| .tl-full-color-background .tl-text p h3.tl-headline-date small {
| |
| Â color: #bfbfbf !important;
| |
| }
| |
| .tl-full-image-background .tl-text a:hover,
| |
| .tl-full-color-background .tl-text a:hover,
| |
| .tl-full-image-background .tl-text p a:hover,
| |
| .tl-full-color-background .tl-text p a:hover {
| |
| Â text-decoration: underline;
| |
| Â color: #c34528;
| |
| }
| |
| /* Skinny
| |
| ================================================== */
| |
| .tl-skinny .tl-text {
| |
| Â width: 100%;
| |
| Â max-width: 100%;
| |
| Â min-width: auto;
| |
| Â float: none;
| |
| Â margin-top: 20px;
| |
| }
| |
| .tl-skinny .tl-text h2.tl-headline-title,
| |
| .tl-skinny .tl-text h2.tl-headline {
| |
| Â font-size: 32px;
| |
| Â line-height: 36px;
| |
| }
| |
| /* Medium
| |
| ================================================== */
| |
| .tl-medium .tl-text h2.tl-headline-title,
| |
| .tl-medium .tl-text h2.tl-headline {
| |
| Â font-size: 32px;
| |
| Â line-height: 36px;
| |
| }
| |
| /* Mobile, iPhone
| |
| ================================================== */
| |
| /* Mobile, iPhone and skinny
| |
| ================================================== */
| |
| .tl-mobile.tl-skinny .tl-media .tl-media-image {
| |
| Â max-height: 250px !important;
| |
| }
| |
| .tl-media .tl-media-twitter {
| |
| Â text-align: left;
| |
| Â clear: both;
| |
| }
| |
| .tl-media .tl-media-twitter blockquote {
| |
| Â margin: 0;
| |
| Â margin-right: 15px;
| |
| Â font-size: 15px;
| |
| Â line-height: 21px;
| |
| Â color: #CCC;
| |
| }
| |
| .tl-media .tl-media-twitter blockquote p {
| |
| Â font-size: 36px;
| |
| Â line-height: 39px;
| |
| Â color: #FFF;
| |
| }
| |
| .tl-media .tl-media-twitter blockquote p:before {
| |
| Â display: none;
| |
| }
| |
| .tl-media .tl-media-twitter blockquote p:after {
| |
| Â display: none;
| |
| }
| |
| .tl-media .tl-media-twitter .tl-icon-twitter {
| |
| Â color: #55ACEE;
| |
| }
| |
| .tl-media .tl-media-twitter .vcard a:hover,
| |
| .tl-media .tl-media-twitter .vcard a.tl-date:hover {
| |
| Â text-decoration: none;
| |
| Â color: #55ACEE;
| |
| }
| |
| .tl-media .tl-media-twitter .vcard a:hover .fn,
| |
| .tl-media .tl-media-twitter .vcard a.tl-date:hover .fn,
| |
| .tl-media .tl-media-twitter .vcard a:hover .nickname,
| |
| .tl-media .tl-media-twitter .vcard a.tl-date:hover .nickname {
| |
| Â color: #55ACEE;
| |
| }
| |
| .tl-slide-media-only .tl-media .tl-media-twitter {
| |
| Â width: 80%;
| |
| Â margin-left: auto;
| |
| Â margin-right: auto;
| |
| }
| |
| .tl-mobile.tl-skinny .tl-media .tl-media-twitter blockquote p {
| |
| Â font-size: 15px;
| |
| Â line-height: 21px;
| |
| }
| |
| .tl-skinny .tl-media .tl-media-twitter {
| |
| Â margin-left: 10px;
| |
| Â margin-right: 10px;
| |
| }
| |
| .tl-skinny .tl-media .tl-media-twitter blockquote p {
| |
| Â font-size: 24px;
| |
| Â line-height: 26px;
| |
| }
| |
| .tl-media .tl-media-blockquote {
| |
| Â text-align: left;
| |
| Â clear: both;
| |
| }
| |
| .tl-media .tl-media-blockquote blockquote {
| |
| Â margin: 0;
| |
| Â margin-right: 15px;
| |
| Â text-align: left;
| |
| Â font-size: 36px;
| |
| Â line-height: 39px;
| |
| Â color: #CCC;
| |
| }
| |
| .tl-media .tl-media-blockquote blockquote p {
| |
| Â font-size: 36px;
| |
| Â line-height: 39px;
| |
| Â color: #CCC;
| |
| }
| |
| .tl-media .tl-media-blockquote blockquote p:before,
| |
| .tl-media .tl-media-blockquote blockquote p:after {
| |
| Â display: inline-block;
| |
| Â font-size: 46px;
| |
| }
| |
| .tl-media .tl-media-blockquote blockquote p:before {
| |
| Â content: open-quote;
| |
| Â margin-right: 5px;
| |
| }
| |
| .tl-media .tl-media-blockquote blockquote p:after {
| |
| Â content: close-quote;
| |
| Â margin-left: 3px;
| |
| }
| |
| .tl-media .tl-media-blockquote blockquote cite {
| |
| Â font-size: 15px;
| |
| Â line-height: 21px;
| |
| Â color: #ffffff;
| |
| Â text-align: right;
| |
| Â margin-top: 15px;
| |
| }
| |
| .tl-slide-media-only .tl-media .tl-media-blockquote {
| |
| Â border-right: 0;
| |
| Â width: 80%;
| |
| Â margin-left: auto;
| |
| Â margin-right: auto;
| |
| }
| |
| @media only screen and (max-width: 800px), only screen and (max-device-width: 800px) {
| |
| Â .tl-media .tl-media-blockquote blockquote p {
| |
| Â Â font-size: 24px;
| |
| Â Â line-height: 26px;
| |
| Â }
| |
| }
| |
| @media only screen and (max-width: 500px), only screen and (max-device-width: 500px) {
| |
| Â .tl-media .tl-media-blockquote blockquote p {
| |
| Â Â font-size: 15px;
| |
| Â Â line-height: 21px;
| |
| Â }
| |
| }
| |
| .tl-mobile.tl-skinny .tl-media .tl-media-instagram {
| |
| Â max-height: 250px !important;
| |
| }
| |
| .tl-media .tl-media-profile {
| |
| Â border-radius: 50%;
| |
| }
| |
| .tl-media .tl-media-iframe {
| |
| Â width: 100%;
| |
| Â height: 100%;
| |
| }
| |
| .tl-media .tl-media-iframe iframe {
| |
| Â width: 100%;
| |
| Â height: 100%;
| |
| }
| |
| .tl-media .tl-media-wikipedia {
| |
| Â text-align: left;
| |
| Â margin-left: auto;
| |
| Â margin-right: auto;
| |
| Â clear: both;
| |
| }
| |
| .tl-media .tl-media-wikipedia .tl-icon-wikipedia {
| |
| Â font-size: 32px;
| |
| Â margin-right: 10px;
| |
| Â float: left;
| |
| Â padding-top: 3px;
| |
| }
| |
| .tl-media .tl-media-wikipedia .tl-wikipedia-pageimage {
| |
| Â float: left;
| |
| Â margin-right: 10px;
| |
| Â margin-bottom: 5px;
| |
| Â margin-top: 5px;
| |
| }
| |
| .tl-media .tl-media-wikipedia .tl-wikipedia-title {
| |
| Â margin-left: 60px;
| |
| Â padding-left: 10px;
| |
| Â border-left: 1px solid #000000;
| |
| Â margin-bottom: 10px;
| |
| }
| |
| .tl-media .tl-media-wikipedia .tl-wikipedia-source {
| |
| Â font-size: 13px;
| |
| Â line-height: 15px;
| |
| Â font-style: italic;
| |
| Â margin-top: 3px;
| |
| Â display: block;
| |
| Â color: rgba(255, 255, 255, 0.5);
| |
| }
| |
| .tl-media .tl-media-wikipedia h4 {
| |
| Â margin-top: 0px;
| |
| Â margin-bottom: 0px;
| |
| }
| |
| .tl-media .tl-media-wikipedia h4 a {
| |
| Â color: #FFF;
| |
| Â text-decoration: none;
| |
| }
| |
| .tl-media .tl-media-wikipedia p {
| |
| Â font-size: 13px;
| |
| Â line-height: 19px;
| |
| }
| |
| .tl-slide-media-only .tl-media .tl-media-wikipedia {
| |
| Â border-right: 0;
| |
| Â border-top: 1px solid #000000;
| |
| Â width: 80%;
| |
| Â margin-left: auto;
| |
| Â margin-right: auto;
| |
| Â margin-top: 25px;
| |
| Â padding-top: 25px;
| |
| }
| |
| .tl-slide.tl-full-image-background .tl-media .tl-media-wikipedia,
| |
| .tl-slide.tl-full-color-background .tl-media .tl-media-wikipedia {
| |
| Â padding: 20px;
| |
| Â /* Fallback for web browsers that doesn't support RGBa */
| |
| Â background: #000000 transparent;
| |
| Â /* RGBa with 0.6 opacity */
| |
| Â background: rgba(0, 0, 0, 0.6);
| |
| Â -webkit-border-radius: 7px;
| |
| Â -moz-border-radius: 7px;
| |
| Â border-radius: 7px;
| |
| }
| |
| .tl-slide.tl-full-image-background .tl-media .tl-media-wikipedia h4 a,
| |
| .tl-slide.tl-full-color-background .tl-media .tl-media-wikipedia h4 a {
| |
| Â color: #FFF !important;
| |
| Â text-shadow: 1px 1px 1px #000 !important;
| |
| }
| |
| .tl-slide.tl-full-image-background .tl-media .tl-media-wikipedia a:hover,
| |
| .tl-slide.tl-full-color-background .tl-media .tl-media-wikipedia a:hover {
| |
| Â text-decoration: underline;
| |
| Â color: #c34528;
| |
| }
| |
| .tl-slide.tl-full-image-background .tl-media .tl-media-wikipedia .tl-wikipedia-title,
| |
| .tl-slide.tl-full-color-background .tl-media .tl-media-wikipedia .tl-wikipedia-title {
| |
| Â border-color: rgba(0, 0, 0, 0.25);
| |
| }
| |
| .tl-slide.tl-full-image-background .tl-media .tl-media-wikipedia .tl-wikipedia-source,
| |
| .tl-slide.tl-full-color-background .tl-media .tl-media-wikipedia .tl-wikipedia-source {
| |
| Â color: rgba(0, 0, 0, 0.85);
| |
| }
| |
| .tl-mobile.tl-skinny .tl-media .tl-media-wikipedia,
| |
| .tl-skinny .tl-media .tl-media-wikipedia {
| |
| Â margin-left: 10px;
| |
| Â margin-right: 10px;
| |
| }
| |
| .tl-media .tl-media-website {
| |
| Â text-align: left;
| |
| Â margin-left: auto;
| |
| Â margin-right: auto;
| |
| Â clear: both;
| |
| }
| |
| .tl-media .tl-media-website .tl-media-website-description {
| |
| Â font-size: 16px;
| |
| Â line-height: 19px;
| |
| Â font-style: italic;
| |
| Â margin-bottom: 10px;
| |
| Â text-transform: uppercase;
| |
| }
| |
| .tl-media .tl-media-website h4 {
| |
| Â margin-top: 0px;
| |
| Â margin-bottom: 0px;
| |
| Â line-height: 1;
| |
| }
| |
| .tl-media .tl-media-website h4 a {
| |
| Â color: #FFF;
| |
| Â text-decoration: none;
| |
| }
| |
| .tl-media .tl-media-website p {
| |
| Â font-size: 13px;
| |
| Â line-height: 19px;
| |
| }
| |
| .tl-media .tl-media-content-container .tl-media-content .tl-media-website img {
| |
| Â float: right;
| |
| Â max-width: 120px;
| |
| Â max-height: 120px;
| |
| Â margin: 4px 0 0 15px;
| |
| }
| |
| .tl-media .tl-media-content-container .tl-media-content .tl-media-website img.tl-media-website-icon {
| |
| Â max-width: 16px;
| |
| Â max-height: 16px;
| |
| Â float: none;
| |
| Â margin: 0;
| |
| Â margin-right: 3px;
| |
| }
| |
| .tl-slide.tl-full-image-background .tl-media .tl-media-website,
| |
| .tl-slide.tl-full-color-background .tl-media .tl-media-website {
| |
| Â padding: 20px;
| |
| Â /* Fallback for web browsers that doesn't support RGBa */
| |
| Â background: #000000 transparent;
| |
| Â /* RGBa with 0.6 opacity */
| |
| Â background: rgba(0, 0, 0, 0.6);
| |
| Â -webkit-border-radius: 7px;
| |
| Â -moz-border-radius: 7px;
| |
| Â border-radius: 7px;
| |
| }
| |
| .tl-slide.tl-full-image-background .tl-media .tl-media-website h4 a,
| |
| .tl-slide.tl-full-color-background .tl-media .tl-media-website h4 a {
| |
| Â color: #FFF !important;
| |
| Â text-shadow: 1px 1px 1px #000 !important;
| |
| }
| |
| .tl-slide.tl-full-image-background .tl-media .tl-media-website a:hover,
| |
| .tl-slide.tl-full-color-background .tl-media .tl-media-website a:hover {
| |
| Â text-decoration: underline;
| |
| Â color: #c34528;
| |
| }
| |
| .tl-mobile.tl-skinny .tl-media .tl-media-website {
| |
| Â margin-left: 10px;
| |
| Â margin-right: 10px;
| |
| }
| |
| /* Timeline
| |
| ================================================== */
| |
| .tl-timeline {
| |
| Â width: 100%;
| |
| Â height: 100%;
| |
| Â font-size: 16px;
| |
| Â line-height: normal;
| |
| Â overflow: hidden;
| |
| Â position: relative;
| |
| Â -webkit-user-select: none;
| |
| Â -moz-user-select: none;
| |
| Â -ms-user-select: none;
| |
| Â -o-user-select: none;
| |
| Â user-select: none;
| |
| Â background-color: #333;
| |
| Â color: #808080;
| |
| Â -webkit-box-sizing: content-box;
| |
| Â -moz-box-sizing: content-box;
| |
| Â box-sizing: content-box;
| |
| }
| |
| .tl-timeline.tl-timeline-embed {
| |
| Â box-sizing: border-box;
| |
| Â border-top: 1px solid #000000;
| |
| Â border-bottom: 1px solid #000000;
| |
| Â border-radius: 0;
| |
| }
| |
| .tl-timeline.tl-timeline-full-embed {
| |
| Â box-sizing: border-box;
| |
| Â border: 1px solid #000000;
| |
| Â border-radius: 8px;
| |
| }
| |
| .tl-timeline .tl-attribution {
| |
| Â cursor: pointer;
| |
| Â z-index: 9;
| |
| Â position: absolute;
| |
| Â bottom: 2px;
| |
| Â left: 0px;
| |
| Â font-size: 10px;
| |
| Â line-height: 10px;
| |
| Â font-family: "Helvetica Neue", Helvetica, Arial, sans-serif !important;
| |
| Â background-color: rgba(51, 51, 51, 0.85);
| |
| Â padding: 3px;
| |
| }
| |
| .tl-timeline .tl-attribution a {
| |
| Â color: #737373;
| |
| }
| |
| .tl-timeline .tl-attribution a:hover,
| |
| .tl-timeline .tl-attribution a:focus-visible {
| |
| Â color: #FFF;
| |
| Â text-decoration: none;
| |
| }
| |
| .tl-timeline .tl-attribution a:hover .tl-knightlab-logo,
| |
| .tl-timeline .tl-attribution a:focus-visible .tl-knightlab-logo {
| |
| Â background-color: #c34528;
| |
| }
| |
| .tl-timeline .tl-attribution .tl-knightlab-logo {
| |
| Â display: inline-block;
| |
| Â vertical-align: middle;
| |
| Â height: 8px;
| |
| Â width: 8px;
| |
| Â margin-right: 3px;
| |
| Â background-color: #c34528;
| |
| Â background-color: #737373;
| |
| Â transform: rotate(45deg);
| |
| Â -ms-transform: rotate(45deg);
| |
| Â -webkit-transform: rotate(45deg);
| |
| }
| |
| /* Portrait
| |
| ================================================== */
| |
| .tl-layout-portrait .tl-storyslider {
| |
| Â -webkit-box-shadow: 0px -3px 6px rgba(0, 0, 0, 0.2);
| |
| Â -moz-box-shadow: 0px -3px 6px rgba(0, 0, 0, 0.2);
| |
| Â box-shadow: 0px -3px 6px rgba(0, 0, 0, 0.2);
| |
| }
| |
| .tl-rtl .tl-text-content,
| |
| .tl-rtl .tl-headline,
| |
| .tl-rtl .tl-media-blockquote,
| |
| .tl-rtl .tl-headline-date,
| |
| .tl-rtl .tl-timeline blockquote p,
| |
| .tl-rtl .tl-media-website,
| |
| .tl-rtl .tl-media-wikipedia,
| |
| .tl-rtl .tl-media .tl-media-blockquote blockquote,
| |
| .tl-rtl .blockquote,
| |
| .tl-rtl blockquote p,
| |
| .tl-rtl .tl-text-content p {
| |
| Â text-align: right;
| |
| Â direction: rtl;
| |
| }
| |
| .tl-rtl .tl-slide-media-only .tl-headline,
| |
| .tl-rtl .tl-slide-media-only .tl-headline-date {
| |
| Â text-align: center;
| |
| }
| |
| .tl-rtl .tl-timemarker-text {
| |
| Â margin-right: 35px;
| |
| }
| |
| .tl-rtl .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-media-container {
| |
| Â float: right;
| |
| }
| |
| .tl-rtl .tl-caption {
| |
| Â text-align: right;
| |
| }
| |
| .tl-rtl .tl-credit {
| |
| Â text-align: left;
| |
| }Â }
| |
| Â Â </style>
| |
| Â | |
| <link rel="stylesheet" type="https://cdn.knightlab.com/libs/timeline3/latest/css/themes/timeline.theme.dark.css">
| |
| == Copy to your site ==
| |
| To use this widget on your site, install the [http://www.mediawiki.org/wiki/Extension:Widgets MediaWiki Widgets extension] and copy [{{fullurl:{{FULLPAGENAME}}|action=edit}} full source code] of this page to your wiki, as an article called '''{{FULLPAGENAME}}'''.
| |
| </noinclude><includeonly><iframe style="https://cdn.knightlab.com/libs/timeline3/latest/css/themes/timeline.theme.dark.css" width="<!--{$width|escape:'html'|default:'100%'}-->"height="<!--{$height|escape:'html'|default:650}-->" src="https://cdn.knightlab.com/libs/timeline3/latest/embed/index.html?source=<!--{$id|escape:'urlpathinfo'}-->&initial_zoom=<!--{$zoom|escape:'html'|default:2}-->&height=<!--{$height|escape:'html'|default:500}-->"></iframe></includeonly>
| |